Can movieclips load movies?

how can i load a movie on a level by pressing a movieclip???

You can use button handlers on movie clips in MX.

on (release){
loadMovieNum("yourFile.swf", level);
}

Or through AS on a frame.

_root.yourMovieClip.onRelease = function() {
loadMovieNum("yourFile.swf", level);
}

onRelease event is for buttons only right? so there should be a button in the mc…

No. You can do an onRelease for a movie clip to make the movie clip itself a button.

I don’t even use buttons that much anymore…lol.

thank you lost !!! :stuck_out_tongue:

No Problem :slight_smile: