Hello World…
I have done the walk through on full flash @ g2&L w/ Lee Brimelow and have my tile duplicating and looks marvelous. However, I am having trouble on positioning stuff. When i normally make a site I will have the general layout, buttons, logo, header, footer whatever and then use a container_mc to load different swf’s for the relevant content.
I am having problem orchestrating this method when using the Fullscreen.
So onto Questions, question 1:
Can anyone please give me some insight as to how to place my instances and have them position correctly via X and Y and how?
For my container_mc I know I need the following AS:
container._x = Stage.width / 2;
container._y = Stage.height / 2;
var resizeObj:Object = new Object();
Stage.addListener(resizeObj);
resizeObj.onResize = function() {
container._x = Stage.width/2;
container._y = Stage.height/2;
};
My stage is 780 X 542. I normally set up my movies with logo, header (buttons), footer and then a container_mc to load relevant content however using the full flash method I am having trouble laying it out, whether or not to have all those within main movie (like I would normally) or to have container_mc load another movie which would have my set up like I mentioned and then another container2_mc load relevant content.
Thanks in advance any help is appreciated.
MT