Level ? What's wrong

i am presently working on a big presentation and i need to load a externel prensent that i did beafore. ther’s nothing hard in that!!!

my probleme is flash mx 2004 same to not reconizing the _level5. or _level4 anything that i put he did’nt put it in blue and did’nt apply the actions

i joint the picture of my script.

what could be the probleme!

I’m about to take my computer ant trow it by the window.

Welcome to kirupaForum, woyrz. :slight_smile:

You have to wait until the movie has been loaded into the level in order to modify its properties; you can use the [font=courier new]MovieClipLoader[/font] object to execute the code once that the movie is fully loaded. Example:

var listener = new Object();
listener.onLoadInit = function(target) {
	target._x = 100;
};
var loader = new MovieClipLoader();
loader.addListener(listener);
loader.loadClip("overview_fb_v2_fr.swf", 5);