How regenerate menu graphics?

A

Al Franz

If I change a rollover color in a graphic file on my design is there a
command to regenerate all the graphic rollovers with the proper text?
 
M

MD Websunlimited

No. You have to persist the existing values using JavaScript. It normally done by adding a property to the element that persists the
prior value.

E.g.

element.priorValue = element.style.color;
 
Top