Guest_imported
New member
- Jan 1, 1970
- 0
i understand everything else,can someone tell me how to make a stop action, thank you
virt2001 (TechnicalUser) Dec 2, 2001
create a movie clip with two frames..first one blank with a stop action..second frame has your pic in it with a stop action..drag your movie clip onto the stage from your library..in the instance panel name you movie clip
pic1
place the movie clip where you want the pic to show up..it will only be a little black dot because the first frame is blank so just put it close to where you want it and adjust it once you see where it shows up..
in your button put this:
on (press) {
_root.pic1.gotoAndStop(2);
}
test your movie and you should be set..just line your mc up where ya need it to be..
virt2001 (TechnicalUser) Dec 2, 2001
create a movie clip with two frames..first one blank with a stop action..second frame has your pic in it with a stop action..drag your movie clip onto the stage from your library..in the instance panel name you movie clip
pic1
place the movie clip where you want the pic to show up..it will only be a little black dot because the first frame is blank so just put it close to where you want it and adjust it once you see where it shows up..
in your button put this:
on (press) {
_root.pic1.gotoAndStop(2);
}
test your movie and you should be set..just line your mc up where ya need it to be..