Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
F3XUM #1
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
-
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... -
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 -
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,... -
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... -
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... -
Murray *TMM* #2
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...links I> Hey everyone, I know this has been discussed before. However, all thewhat I> go to end up being broken or lead me somewhere that does not pertain toStyle> 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 Cascadingdirections. If> Sheet? The links and tutorials seem to point me in all differentgreatful,> someone would be so kind as to tell me how I can set it up I'd be> thanks for the support !
>
> - Aaren
> [ [url]www.kaputt.cjb.net[/url] ]
>
Murray *TMM* Guest
-
ranjan #3
Re: Sorry, Custom Scroll Bar Problem ; )
F3XUM wrote:
[url]http://dreamlettes.net/extensions/Default.htm#Scrollbars[/url] - Extension to> 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 !
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



Reply With Quote

