Link to home
Start Free TrialLog in
Avatar of TRACEYMARY
TRACEYMARY

asked on

Created SWF now to load into new SWF

I created my swf it all works .

Now i created brand new movie
added MC_EMPTY which i called instance of Empty

has nothing in it...

in first frame added

Empty.loadMovie("shelter_g.swf");

But it does not continue it will get stuck on the part
_root.empty_shelter.newname_shelter.gotoAndPlay("resume");
where it trying to return.

I thought if you created a swf...........(then it is all inside here and when i call it ...(this should work)

Any suggestions.
SOLUTION
Avatar of negatyve
negatyve

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of TRACEYMARY
TRACEYMARY

ASKER

It worked with solution one.............
not sure about where i would put solution 2.....

relative paths...........can you help me understand so i get this right for my other swf i created
cheers
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
That was a great lot of information.

The resume was in the shelter_g.swf (this just happens in side the swf).

It was just getting stuck on first......main movie. this worked below.
Empty._lockroot = true;
Empty.loadMovie("shelter_g.swf");

The main movie does not need to go to the resume in shelter_g.swf it just need to play.

Let me lot at the container thats useful information

Thanks all