When my main movie starts, the firsts thing it does is load swf for the user to enter their user name and password. I want this movie (and subsequent such movies) to be able to be dragged around the stage. There are some excellent tutorials & examples on the web but none seems to address my situation. The code:
this.createEmptyMovieClip(“lh”, this.getNextHighestDepth());
lh._x = 200;
lh._y = 200;
var launcher_mcl:MovieClipLoader = new MovieClipLoader();
launcher_mcl.loadClip(“LogIn.swf”, lh);
lh.onPress=function()
{
trace(“start drag”);
this.startDrag();
}
lh.onRelease=lh.onReleaseOutside=function()
{
trace(“stop drag”);
this.stopDrag();
}
If I click on my movie and drag, I don’t see any trace. Is this because lh doesn’t have an onPress event? Is my objective unachievable?