Flash HELP!
Flash HELP!
Out of context: Reply #1
- Started
- Last post
- 11 Responses
- kingsteven0
Don't have time to look at the code but have you tried loading them in to a container clip and doing something like:
//position the image so that the center of the clip is at 0,0
container.image._x = -image._width/2;
container.image._y = -image._height/2;//then position the container mc:
container._x = Stage.width/2; //image will be centered horizontally
container._y = Stage.height/2; //image will be centered vertically