PDA

View Full Version : HELP, Please


beheriter
08-09-2006, 06:16 PM
how can i make the stage move like this:
http://www.bio-bak.nl/

:( Please can someone help me here...

Thanks in advance

jharmon
08-10-2006, 03:54 PM
instead of attaching everything to the _root, create an emptyMovieClip and attach everything to that if you are not already doing so...

_root.createEmptyMovieClip("my_mc", _root.getNextHighestDepth());

//attach everything to your empty movieClip
_root.my_mc.attachMovie(...);

_root.my_mc.onMouseDown = function(){
this.startDrag();
}

_root.my_mc.onMouseUp = function(){
this.stopDrag();
}

jjbilly
08-10-2006, 04:00 PM
I've moved this from JSFL to general questions.