loadMovie

I have this problem… I made a sub navigation in a movieclip, this all seems to work very well, but once I load this movieclip into my main page, the sub navigation stops working.

I’m using the Loadmovie script, with the createEmtyMovieClip, that you can find here on the site!

++++++++++++++++++++++++++
this is the script of main main navigation
++++++++++++++++++++++++++

[FONT=Verdana][COLOR=Sienna]on (rollOver) {

// slider - Movie Clip’s Instance Name. button_1 - Button’s Instance Name.
slider.xMove = button_1._x;

}

on (release) {
//setProperty(glow1,_alpha,80);
//this makes movieclips glow1,2,3,4 light up
this.glow1._alpha=300;
this.glow2._alpha=100;
this.glow3._alpha=100;
this.glow4._alpha=100;
//here we load the sub nav
_root.createEmptyMovieClip(“container”,1);
//typo_MC.swf is the sub navigation
container.loadMovie(“typo_MC.swf”);
container._x = 6, container._y = 122 ;

_root.onMouseDown = function () {
startDrag (“container”,false) ;
}
_root.onMouseUp = function () {
stopDrag () ;
}
}

+++++++++++++++++++++++
this is the script for my sub navigation
+++++++++++++++++++++++
on (rollOver) {
_parent.createEmptyMovieClip(“preview_t”,2);
preview_t.loadMovie(“img/img_t/s/001.jpg”);
preview_t._x = 0, preview_t._y = 0 ;

_parent.onMouseDown = function () {
startDrag (“preview_t”,false) ;
}
_parent.onMouseUp = function () {
stopDrag () ;
}

}

on (release) {
}

[/FONT][/COLOR]