Question
Loadmovie plays only on 2nd pass
Why does my movie clip only play the second time I go through
this action script? (How I know it plays the second and following
times is because I have a button that causes this portion of script
to replay.)
Here is my loadmovie script...
// display Story annimation
this.createEmptyMovieClip("Storycanvas_mc", Storycanvas_mc.getNextHighestDepth());
Storycanvas_mc._visible = false
Storycanvas_mc._y = 15
Storycanvas_mc._x = 10
Storycanvas_mc._xscale = 33
Storycanvas_mc._yscale = 33
//Storycanvas_mc.loadMovie(" http://www.helpexamples.com/flash/images/image1.jpg");
Storycanvas_mc.fscommand2("FullScreen");
//Storycanvas_mc.loadMovie(this["wordSWF_" + count]);
Storycanvas_mc.loadMovie("Gen 1.swf");
Storycanvas_mc._visible = true;
stop();
Here is my loadmovie script...
// display Story annimation
this.createEmptyMovieClip("Storycanvas_mc", Storycanvas_mc.getNextHighestDepth());
Storycanvas_mc._visible = false
Storycanvas_mc._y = 15
Storycanvas_mc._x = 10
Storycanvas_mc._xscale = 33
Storycanvas_mc._yscale = 33
//Storycanvas_mc.loadMovie(" http://www.helpexamples.com/flash/images/image1.jpg");
Storycanvas_mc.fscommand2("FullScreen");
//Storycanvas_mc.loadMovie(this["wordSWF_" + count]);
Storycanvas_mc.loadMovie("Gen 1.swf");
Storycanvas_mc._visible = true;
stop();