How regenerate menu graphics?

  • Thread starter Thread starter Al Franz
  • Start date Start date
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?
 
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;
 
Back
Top