Likes: 0
Results 1 to 2 of 2
-
26-04-10, 11:32 AM #1
ActionScript - Text after mouse-over
Register to remove this adHi 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 ?
› See More: ActionScript - Text after mouse-over
-
24-03-13, 11:16 AM #2
Register to remove this adI 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!"; }}