maybe some of you can help me with my actionscript problem. My boss bought some pre-made actionscript that traces the mouse position when it’s held down to display a certain frame at a certain position. He uses this for 360 product display.Then he asks me to find a way to load the jpg images each frame externaly.
I did, one jpg per frame using this:
this.createEmptyMovieClip(“logo_mc”, this.getNextHighestDepth());
logo_mc.createEmptyMovieClip(“container_mc”,0);
logo_mc.container_mc.loadMovie(“0.jpg”);
logo_mc.onPress = function() { trace(“It works”);}
; ).
However, when you switch from one frame to another, there’s a delay in loading the next jpg, even when it’s local. So, when you go from one frame to another, there’s this strobe light effect.
I’m assuming that what one would do to solve this is to load an array and set each jpg visablity to 0 untill the frame calls to that movie to set the visablity on a specfic container. My issue is,… I ain’t that bright with actionscript and I’m scouring google and my head to find a solution.
Can anyone help?
Thanks guys.