PDA

View Full Version : Disabling scroll bars in web object


Tipperton
05-25-2005, 02:44 PM
Some where else on the forum I found that this<body scroll="no">could be used to disable the scroll bars in the web object and it works great.

But...

If I do<body scroll="no" bgcolor="#000000" onload="SCOInitialize()" onunload="SCOFinish()" onbeforeunload="SCOFinish()">it doesn't work, any other ways to disable the scroll bars?

Would be nice if Indigo Rose could provide that as an object property... :D

Tipperton
05-25-2005, 07:13 PM
Actually I've found that<body scroll="no" bgcolor="#000000" onload="SCOInitialize()"
onunload="SCOFinish()" onbeforeunload="SCOFinish()">does work to a degree but the content of the page can over ride it by being too big.

There has got to be a way to completely disable the scroll bars...

TJ_Tigger
05-25-2005, 09:06 PM
I have had luck with this before.

<body style="overflow:hidden" bgcolor="#000000" onload="SCOInitialize()"
onunload="SCOFinish()" onbeforeunload="SCOFinish()">

Tipperton
05-28-2005, 10:16 AM
Hmmm..... I'll have to try that!

Thanks!