How to create a hover effect in Macromedia or Adobe Go Live?

THuniv

New Member
Messages
4
Reaction score
0
Points
0
I am really amazed with this flash file of a German Rock Band, Tokio Hotel.
Click here to view the file.


I've been wanting to achieve the mouseover effect.
It's really amazing.

How do you do that?
I've got Macromedia DreamWeaver MX, Macromedia Flash MX and Adobe Go Live 6.0.
 

VPmase

New Member
Messages
914
Reaction score
0
Points
0
I end up at a search engine site when I click that link...
Edit, NVM you typed the URL wrong...
http://tokiohotel.pop24.de/banner/banner234x60.swf

As for the flash. All you have to is make a movieclip (mc), animate it. In the actionscript put "stop();" in the frame in the movie clip where you want it to stop then add this code to the movieclip actionscript

onClipEvent(mouseOver){
this.play();
}
onClipEvent(mouseOut){
this.play();
}

That code is for Macromedia Flash written in AS2.
 
Last edited:
Top