(MX) Interactive Movie Clips

I’ve been wracking my brain over this and I’m getting nowhere. Hopefully, someone can understand this and give me a few pointers.

I’ve managed to create an master swf which loads other, smaller swf files at the click of a button. I’m using the loadmovie command and loading them into other layers. I need for those smaller movies to be able to control elements of the original movie. For example:

Mainmovie.swf contains a graphic object called graphic_1
At a button click, Submovie.swf is loaded into layer one.

I need to make graphic_1 invisible when Submovie.swf reaches frame 15.

Is there any way Submovie can influence the _visible or _alpha properties of an object located in Mainmovie? I’ve tried several different ways to do this with no luck.

Hopefully, a more learned master can shed some light on the problem.

Thanks,

first off, if you’re actually using a Graphic symbol, change its behaviour to MovieClip. a Graphic symbol has no properties or methods.

to reference the instance, as long as it is located in the main timeline, you use _root.

_root.graphic_1._visible = false;

Thanks for the response. Apparently, I’m still doing something screwy. Here is the exact script that calls the submovie:
on (press) {
loadMovie(“switch_web.swf”, 2);
gotoAndStop(5);
}

The clip switch_web.swf uses the following code:
onClipEvent (load) {
play();
}
And at frame #15 in the actions layer:
_root.backmask._visible = false;

backmask is set as a movie clip and exists in its own layer. For some reason, it remains visible no matter what I do.

Any more thoughts as to what I’m doing wrong? I really appreciate the help.

nope, i don’t know what could be wrong… can you attach your FLA’s? :slight_smile:

The original files were too large to attach, so I’ve recreated simple files that experience the same problem. The main file test.swf loads bounce.swf, which in turn should make an object invisible in the root timeline.

Hopefully, I’ve attached the files correctly.

Here’s the second fla file

Thanks again!

You forgot to give the movieclip an instance name. Click on the movieclip, then look in the properties panel, on the left, there’s a box that says [COLOR=blue]<**instance name>[/COLOR]. There, you have to fill in the instance name of the movieclip. That would be backmask. Otherwise, the movieclip won’t be recognised.

Thanks.

I went to test.fla, and added the instance name - I called it testinstance.

Then I went to bounce.fla and changed the script at frame 10 to read:
_root.testinstance._visible = false;

It’s not working. The “test” symbol is still there throughout.

sigh

http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary633.html

the problem is that you’re loading the movie into level 2, replace _root with _level0 and it should work. =)

[size=1]and also, as Voetsjoeba mentioned, don’t forget the instance name. ;)[/size]

THANKS THANKS THANKS!

It works perfectly now. I think I even understand why (maybe).

I appreciate the patience and advice.

no problem. :stuck_out_tongue:

by the way, welcome to kirupa forum!! :wink: