Im having a strange problem with a image gallery i building… im using framelabels and this script on the buttons:
on (release) {
gotoAndStop(“labelname”);
}
strange thing is, this has worked just fine on 13 pictures but the final 3 pictures won’t work… klikking on the buttons doesn’t go to the picture i want… just a blank page… i bouble and tripple checked the instansenames and framelabels… im really confused…
i’we been searching for the problem all day and tried changing one of the other pictures. and now it doesn’t work either…
heres what im trying to do: my pictures are animated in Aftereffects and exported as fla’s then imported to flash as movieclips i am using this script to controll the picture movieclips behavior:
pixi.stop();
var mouseListener:Object = new Object();
mouseListener.onMouseMove = function() {
if (_xmouse > 800 && !pixi.played) {
pixi.play();
} else {
pixi.stop();
}
};
Mouse.addListener(mouseListener);
all the picture movieclips have their own frame with framelabel… this works fine with most of them, only difference between the MC’s that work and those who don’t, is that the ones that doesn’t work are longer MC’s then the others. 45 vs 32 frames