Click to See Complete Forum and Search --> : non scrollable window
paulb3d
12-01-2003, 02:20 PM
I have a home page with an .swf movie. I want the window to open in a nonscrollable html window the same size of the flash movie. I know how to do this as a popup from a link but not as a homepage that automatically loads when the URL is typed. How do I do this?
thanks,
Paul
soccer362001
12-01-2003, 02:24 PM
To get rid of the scrollbar use
<style type="text/css">
body
{
background-color:#000000;
color:#ffffff;
overflow:hidden;
}
</style>
paulb3d
12-04-2003, 12:46 PM
Thanks!
That does get rid of the scrollbar but how can I make it non-resizable too.
paul
Pittimann
12-04-2003, 03:06 PM
Hi!
Without action taken by the user, you can't.
What you can is: resize it to a size you desire (but the user can still RESIZE it).
Cheers - Pit
paulb3d
12-04-2003, 04:12 PM
Thanks for the reply but that stinks! I was hoping it was doable. Oh well. Thanks again
Paul
Pittimann
12-04-2003, 04:19 PM
Hi!
If something stinks here it can't be me - took a shower around easter. :D
The problem is: you could automatically launch a popup window, when your homepage has loaded and add something to close the original window.
Most browsers will display a message for the user like "close this window? yes/ no". That is, what I meant with "Without action taken by the user, you can't."...
Cheers - Pit
paulb3d
12-04-2003, 04:21 PM
I see...
Wel, thanks again for the insight and quick responce too!
paul