flash site question
- Started
- Last post
- 5 Responses
- factoryxii
was wondering how to do the flash page like those 2 web listed here!
no matter the window size,the text and image always sticks at the bottom!!
http://www.mono-1.com/monoface/m…set the flash width and height 100%?
- airey0
buy this for a few bucks (about US$10):
- trevedda0
You need to use the stage object and an on-resize listener. You then need to code your movie which sits at the bottom to be located at the stage height minus your movie's height.
There are a fair few tutorials out there on this.
- ItTango0
//create a movieclip and give it the instance name "square"
then pop this code into frame 1//square._x = Stage.width/2;
square._y = Stage.height;
var stageL:Object = new Object();
stageL.onResize = function() {
square._x = Stage.width/2;
square._y = Stage.height;
};
Stage.addListener(stageL);//html publish settings:
dimensions: Percent = 100 X100
Scale: No scale
Flash alignment = Left/Top
//should work.
- ItTango0
uh, no space in "stage".