PDA

View Full Version : moving loaded swf with the navigation button.


saikat
09-04-2001, 12:54 PM
Hi,once again I am in soup,helping hand pls.
Suppose I have loaded 3 swf in a movie name stage.
I have loaded swfs in a diff. layers by using
stage.LoadMovie(20,man.swf);
stage.LoadMovie(30,woman.swf);
stage.LoadMovie(40,child.swf);
Now I have created seperate navigation movie
and linked it with the main movie(stage) with the help of
Object ID using javascript, so that i can move the stage in the right or left. But when I am trying to move the loaded swfs along with the main movie there i am facing the problem.The main movie is moving but the loaded swfs remains still.
Pls Help me.

Jesse
09-04-2001, 01:57 PM
if you are using loadMovieNum and loading into a leevl (note there is a difference between a 'layer' and a 'level' in flash) then you must give the level path. for example:
loadMovieNum("file1.swf",5);
lods into level 5 so you must then call your movie using:
_level5._x = 200; et it?