flash problem (movie clip)
flash problem (movie clip)
Out of context: Reply #5
- Started
- Last post
- 13 Responses
- PonyBoy0
exactly what wendog said...
... here's how you set up your stage listener:
http://www.adobe.com/support/fla…
Then - set up the function w/a statement like wendog gave you:
clip_mc._x = Stage.width/2;
clip_mc._y = Stage.height/2;note: make sure you center the contents of the movieclip... (so the lil 'x' is right in the middle)
... or if you leave your mc's justified to the the top-left... you'll need to subtract your mc divided in half also:
clip_mc._x = (Stage.width/2)-(clip_mc/2);