Hello :)

in flash8 with FP8 compilation you can use the property _lockroot of the
MovieClips.

You wait the loading of your movie and you apply in the holder movie the
value true on the _lockroot property.

Example :

var loader:MovieClipLoader = new MovieClipLoader() ;
loader.addListener(this) ; // register the _root with the event model of the
instance

/**
* Invoqued when the swf or picture is loading
*/
var onLoadInit:Function = function( target:MovieClip ):Void
{
     target._lockroot = true ; // modify the _lockroot property of the
container.
}

var mc:MovieClip = createEmptyMovieClip("holder_mc", 1) ;

loader.loadClip("movie.swf", mc) ;

PS : MovieClipLoader is better with this event model...

EKA+ :)

2006/12/23, natalia Vikhtinskaya <[EMAIL PROTECTED]>:

Hi to all
Can anybody help me with this problem?
I have combobox in swf file.
This loading works well
_root.loadMovie("movie.swf");

but with this
_root.holder.loadMovie("movie.swf");
combobox does not work

I need to load this swf in holder clip and don't know how to solve the
problem.
Thank you for help.
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to