
Results 1 to 2 of 2
-->
-->
Hybrid View
-->
-
26-04-10, 10:32 AM #1
ActionScript - Text after mouse-over
Hi there.
I have a problem - can anyone help me with ActionScript mouse-over issue ?
The question is: how to display a text after mouse-over targetted area ?
-
24-03-13, 10:16 AM #2
I tried to write since i doing Flash Scripts 3Months (:
Code:dynText.addEventListener( MouseEvent.MOUSE_OVER, myInfoHandler )function myInfoHandler( event ){ if(event.target.name == "stopButton"){ dynText.text = "Stop animation!"; }}