PDA

View Full Version : Movieclip rollover butttons?


Crispy
06-29-2008, 10:51 AM
Hey guys

I'm trying to create something similar to the flash on www.GAF.com..

I know make an invisible hit area over the button, im just not sure on the code to make the movieclip play.. I dont think its gotoframe? :(

This is where im stuck!

Any help greatfully appreciated! :)

x

gnomeontherun
06-30-2008, 05:34 PM
Well it probably is some form of gotoAndPlay();

Something like this on the button


on (rollOver) {
_root.movieClipName.gotoAndPlay(2);
}

And the moveClip probably has a stop() command inside where it should stop.