Disabling scroll bars in web object

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Tipperton
    Forum Member
    • Oct 2003
    • 26

    Disabling scroll bars in web object

    Some where else on the forum I found that this
    Code:
    <body scroll="no">
    could be used to disable the scroll bars in the web object and it works great.

    But...

    If I do
    Code:
    <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...
  • Tipperton
    Forum Member
    • Oct 2003
    • 26

    #2
    Actually I've found that
    Code:
    <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...

    Comment

    • TJ_Tigger
      Indigo Rose Customer
      • Sep 2002
      • 3159

      #3
      I have had luck with this before.

      <body style="overflow:hidden" bgcolor="#000000" onload="SCOInitialize()"
      onunload="SCOFinish()" onbeforeunload="SCOFinish()">
      TJ-Tigger
      "A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
      "Draco dormiens nunquam titillandus."
      Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine

      Comment

      • Tipperton
        Forum Member
        • Oct 2003
        • 26

        #4
        Hmmm..... I'll have to try that!

        Thanks!

        Comment

        Working...
        X