PDA

View Full Version : ActionScript - Text after mouse-over



silentonim
26-04-10, 10:32 AM
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 ?

G4M3R
24-03-13, 10:16 AM
I tried to write since i doing Flash Scripts 3Months (:



dynText.addEventListener( MouseEvent.MOUSE_OVER, myInfoHandler )function myInfoHandler( event ){ if(event.target.name == "stopButton"){ dynText.text = "Stop animation!"; }}