Hi there, i am trying to make a liquid website but the code that you have written into the scroller overides my code. Could you possibly help us out as to what code i should write and where i should put it to rectify this problem?
Any help would be much appreciated!
cheers
This is the code that i have written to make the text_box mc liquid…......
Stage.align = “TL”;
// * Stop the stage from scaling with the browser window.
Stage.scaleMode = “noScale”;
stop ();
// initiate postitions and scaling values for objects
text_box._x = (Stage.width – 93)/2
text_box._y = Stage.height/2
//create a listner that checks to see if the browser window is resized
sizeListener = new Object();
sizeListener.onResize = function() {
// change movieclip properties when the window is resized.
topstretch._width = Stage.width;
text_box._y = Stage.height/2;
text_box._x = (Stage.width – 93)/2;
Posted 7 months ago