A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: changing scrollbar colour in html.

  1. #1
    Senior Member Jaffasoft's Avatar
    Join Date
    Apr 2001
    Location
    On Travel
    Posts
    1,588

    changing scrollbar colour in html.

    This is the html source out of a swf now what do i do to change the scroller colors??

    <HTML>
    <HEAD>
    <TITLE>coloredscrollbars</TITLE>
    </HEAD>
    <BODY bgcolor="#C6D8E8">
    <!-- URL's used in the movie-->
    <!-- text used in the movie-->
    <OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
    WIDTH="770" HEIGHT="450" id="coloredscrollbars" ALIGN="">
    <PARAM NAME=movie VALUE="coloredscrollbars.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#C6D8E8> <EMBED src="coloredscrollbars.swf" quality=high bgcolor=#C6D8E8 WIDTH="770" HEIGHT="450" NAME="coloredscrollbars" ALIGN=""
    TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
    </OBJECT>
    </BODY>
    </HTML>

  2. #2
    The Metamorphic Mutant Mystique_MHz's Avatar
    Join Date
    Mar 2002
    Location
    Orlando, FL
    Posts
    218
    It's a javascript function you copy and paste this just after your meta tag or before your </head> tag
    Code:
    <STYLE TYPE="text/css">
    <!--
    BODY
    {
    scrollbar-face-color: #000099;
    scrollbar-shadow-color: #FFFFFF;
    scrollbar-highlight-color: #000000;
    scrollbar-3dlight-color: #ffffff;
    scrollbar-darkshadow-color: #000000;
    scrollbar-track-color: #FFFFFF;
    scrollbar-arrow-color: #FFFFFF;
    --></STYLE>

  3. #3
    Senior Member Jaffasoft's Avatar
    Join Date
    Apr 2001
    Location
    On Travel
    Posts
    1,588
    hey thanks mystique i gave it a shot it and worked. metatags now thats another story. will leave that for another day.

  4. #4
    The Metamorphic Mutant Mystique_MHz's Avatar
    Join Date
    Mar 2002
    Location
    Orlando, FL
    Posts
    218
    no problem...

Posting Permissions

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




Click Here to Expand Forum to Full Width

HTML5 Development Center