how can i achieve a mouse rollover effect the zooms in a single jpeg if i have an array of jpegs in one movie clip moving from the right side of the stage to the left exactly like in this website : http://www.panoramiclocations.com can i have been trying for a long time to achieve this, and just now i found this website so it could make my explanation of the problem clearer! i am a newbie so any help i’d appreciate! thanks!
Try these:
onRollOver:
PictureMC.onRollover = function() {
this.gotoAndPlay("Opening Animation");
}
onRollOut:
PictureMC.onRollOut = function() {
this.gotoAndPlay("Closing Animation");
}
do i replace the “pictureMC” with the mc instance name and the open and closing animation…whats that mean? :-\ i dont quite get it could u explain a liitle to me
PictureMC.onRollover = function() {//PictureMC is the target movieclip
this.gotoAndPlay("Opening Animation");// This will play frame label "opening Animation: when the movieclip is rollOvered, u could use frames no. instead offcourse, this.gotoAndPlay(12)'
}