Sorry, Custom Scroll Bar Problem ; )

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Sorry, Custom Scroll Bar Problem ; )

    Hey everyone, I know this has been discussed before. However, all the links I
    go to end up being broken or lead me somewhere that does not pertain to what I
    am trying to find out.

    All I've found is a simple code that you copy/past into your code. This
    doesn't work.

    I understand that custom scroll bars may be set up using a Cascading Style
    Sheet? The links and tutorials seem to point me in all different directions. If
    someone would be so kind as to tell me how I can set it up I'd be greatful,
    thanks for the support !

    - Aaren
    [ [url]www.kaputt.cjb.net[/url] ]

    F3XUM Guest

  2. Similar Questions and Discussions

    1. geting a component Custom UI to scroll?
      Hi, I've just started working on a custom UI for a component i'm working on. The problem is that the custom UI is about 200px width and over 600px...
    2. Custom Control has no Scroll bars
      Try OVERFLOW:auto; -Stanley "paul reed" <prreed@jacksonreed.com> wrote in message news:uI%23RMAN8DHA.3112@tk2msftngp13.phx.gbl... appear the
    3. Why along with my custom scroll there's also a default one ?
      Hi everyone ! I created a custom scroll bar and attached it to my graphics. Also there is a text member with scrolling property. When I test it,...
    4. custom scroll bar
      Hi there, I have a few problems with the custom scrollbar option in director and was wondering if i could get some help on this. My up arrow...
    5. custom scroll
      I am trying to create a custom scroll bar. I am trying to use the one that is supplyed in Director MX I am having a lot of trouble can anyone...
  3. #2

    Default Re: Sorry, Custom Scroll Bar Problem ; )

    Show me the simple code you have found, and I'll tell you why it doesn't
    work.

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver MX
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]news://forums.macromedia.com/macromedia.dreamweaver[/url] - THE BEST WAY TO GET
    ANSWERS
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "F3XUM" <webforumsuser@macromedia.com> wrote in message
    news:cah14g$ef3$1@forums.macromedia.com...
    > Hey everyone, I know this has been discussed before. However, all the
    links I
    > go to end up being broken or lead me somewhere that does not pertain to
    what I
    > am trying to find out.
    >
    > All I've found is a simple code that you copy/past into your code. This
    > doesn't work.
    >
    > I understand that custom scroll bars may be set up using a Cascading
    Style
    > Sheet? The links and tutorials seem to point me in all different
    directions. If
    > someone would be so kind as to tell me how I can set it up I'd be
    greatful,
    > thanks for the support !
    >
    > - Aaren
    > [ [url]www.kaputt.cjb.net[/url] ]
    >

    Murray *TMM* Guest

  4. #3

    Default Re: Sorry, Custom Scroll Bar Problem ; )

    F3XUM wrote:
    > I understand that custom scroll bars may be set up using a Cascading Style
    > Sheet? The links and tutorials seem to point me in all different directions. If
    > someone would be so kind as to tell me how I can set it up I'd be greatful,
    > thanks for the support !
    [url]http://dreamlettes.net/extensions/Default.htm#Scrollbars[/url] - Extension to
    create scrollbars

    If you want to code it yourself use the following code

    <!--[if IE]>
    <style type="text/css">
    html {
    scrollbar-arrow-color:#FFFFCC;
    scrollbar-track-color:#FFFFCC;
    scrollbar-face-color:#FFCC00;
    scrollbar-highlight-color:#FF6600;
    scrollbar-3dlight-color:#FFFF66;
    scrollbar-darkshadow-color:#FF6600;
    scrollbar-shadow-color:#FFFF66;
    }
    </style>
    <![endif]-->

    Here is the explaination:

    The First and last line that is

    <!--[if IE]>
    <![endif]-->

    are IE conditional comments. anything between the two comment statments
    are executed only by Internet Explorer.

    The <style type="text/css"></style> is used to define CSS styles in a
    document.

    scrollbar-arrow-color:#FFFFCC;
    scrollbar-track-color:#FFFFCC;
    scrollbar-face-color:#FFCC00;
    scrollbar-highlight-color:#FF6600;
    scrollbar-3dlight-color:#FFFF66;
    scrollbar-darkshadow-color:#FF6600;
    scrollbar-shadow-color:#FFFF66;

    These define the colors of the scrollbar

    We used the conditional statement because the above CSS code is not
    valid, Using the conditional statments hides the CSS from the CSS
    validator. If you don't care about validating your code you can remove
    the conditional statements. One more reason to remove them would be that
    Opera now supports Custom Scrollbars if enabled by the end user.

    Ranjan
    [url]www.dreamlettes.net[/url]
    ranjan Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139