I have a botton that links to a specific site...
Is it possible when a user click on the botton (On Mouse Enter event) the font color to change from
(176,0,0) to (153,204,255) for example!
Bottons borders and bockground fill are set to NONE.
Thanks
This is one from, Page 104 that could solve your problem.
Scripting for adding a blue border around a selected field
To add the blue border around the selected field, add the following scripts to each text field:
For example, add an enter event to the Name field:
Name.border.edge.color.value = "0,0,255";
For example, add an exit event to the Name field:
Name.border.edge.color.value = "255,255,255";For example, add a mouseEnter event to the Name field:
Name.border.edge.color.value = "0,0,255";
For example, add a mouseExit event to the Name field:
Name.border.edge.color.value = "255,255,255";
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.