Load Movie issues

Ok I am having a serious forgetful spell…
Im am loading a movie into the main swf

The man question is how do i control button swf loaded into the main swf

how can it goto play the next frame on a load movie

hum… gotta make a tute about this or sumthin’… too many Qs about this…
ok I didn’t fully understand!
Do you have a button inside your main movie with what you want to control the loaded on?
or
Do you have a button inside the loaded movie with what you want to control the loaded one (the same movie).
:pirate:

say u want to go to the place _root.clip1.clip2.gotoAndPlay(1);
on the swf being loaded in. what i would do is load it into a movie clip on the main timeline. then call the mc thats its being loaded into like “container”. then to get to a certain path on that swf u would put like _root.container.clip1.clip2.gotoAndPlay(1);
make sense?

i am not 100% sure what you mean, but:

the bset advice i ever got was that when loading external movies, keep everything inside the loaded movie relative NOT absolute!

therefore never use the _root snytax inside an external file you want to load.

instead keep it realtive i.e. _parent.

so if you’ve got a button inside the child swf, and you want it to play a movieclip called bouncingBall which is within the child swf then:

[on the button]

on(press){
_parent.bouncingBall.gotoAndPlay();
}

Get it?

in more complex scripting, it is necessary to have_parent._parent etc.

if you know html, then try and think of it kinda like …/ (which takes out of the folder you are in.

the _parent takes you out 1 stage

play around with it. put a button inside a movieclip, inside another movieclip, and then try and get the button (which is two sublevels insde the main timeline) to trigger something on the main timeline. If you can get it work, then you’re sorted!

good luck