Hi, I am converting my site into a fluid/floating flash site and I'm having just a couple of problems. First, when I re size the window, i need THE BROWSER to create a regular vertical (or horizontal) scrollbar when the window gets to small to display all of the information. Right now, it just cuts off my the main area of my site when the window is to small. I don't know if I disabled this in my AS3 or in my html, but I think it was the AS3 I am really new to actionscript. I am using AS3 but I found a really good floating layout tutorial for AS2, but I am not good enough at coding to translate it over. And this tutorial for AS3 ( http://www.republicofcode.com/tutorials/flash/as3fluidresize/ ) seems to be the only decent floating tut I can find for AS3 but it is not in depth enough. Second, If anybody knows how to keep objects from overlapping each other that would help as well. Thank you to all of give this a shot. Here is my code. stage.addEventListener(Event.RESIZE, resizeListener); function resizeListener (e:Event):void { trace("stageWidth: " + stage.stageWidth + " stageHeight: " + stage.stageHeight); MainArea.x = stage.stageWidth / 2; MainArea.y = 400; BlueStripe.x = 0; BlueStripe.y = 0; BlueStripe.width = stage.stageWidth; BlackStripe.x = 0; BlackStripe.y = 0; BlackStripe.width = stage.stageWidth; } stage.scaleMode = StageScaleMode.NO_SCALE; stage.align = StageAlign.TOP_LEFT; Code (markup):
You want the scrollbar inside ou outside of the Flash? In the browser, correct? Post your html code too.