[flexcoders] Re: Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-11 Thread Tim Hoff
Cheers Gregor. -TH --- In flexcoders@yahoogroups.com, Gregor Kiddie [EMAIL PROTECTED] wrote: In all seriousness... any scrollbar skinning has always been along the same lines as these posts. http://axel.cfwebtools.com/index.cfm/2007/3/27/Custom-Scroll-Bar- Using-C SS

[flexcoders] Re: Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-10 Thread Tim Hoff
Yep, pretty cruel. You'd be surprised how much compassion and hospitality people that don't speak English show to complete strangers in this world; not to mention the slack that they give to people that butcher their language. -TH --- In flexcoders@yahoogroups.com, Gregor Kiddie [EMAIL

[flexcoders] Re: Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-09 Thread Tim Hoff
Hey Anuj, Here's some sample CSS to get you started. You might have to play with the scale9 values; depending on the images that you create for the skins. VScrollBar { downArrowUpSkin: Embed(source=assets/images/VscrollDownArrow_up.png); downArrowOverSkin:

Re: [flexcoders] Re: Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-09 Thread anuj sharma
Alright guys. I have downloaded 2 dummy png files from internet (Left_arrow.PNG Right_arrow.PNG) just to test if technique works . Belw is the css code which i am calling in HScroll Bar for HBOX and attached is the image of how it is looking . The images used are very big but it is not showing

Re: [flexcoders] Re: Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-09 Thread anuj sharma
Forgot to mention the mxml code. Here's the code ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Style source=style.css/ mx:Script ![CDATA[ // Embed the Thumbnails [Embed(Thumbnails/pic_1.swf)]

[flexcoders] Re: Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-09 Thread Tim Hoff
Yeah IIRC, I think that you're going to have to add the track skin, with the desired width, otherwise the button images will get scaled. -TH --- In flexcoders@yahoogroups.com, anuj sharma [EMAIL PROTECTED] wrote: Alright guys. I have downloaded 2 dummy png files from internet (Left_arrow.PNG

Re: [flexcoders] Re: Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-09 Thread anuj sharma
Hi Tim In the trackSkin as shown by your code, you are embedding some png files.Do i have to embed files too and also what's the content of that file. Deos that file have just the rectangle showing my desired width and height because when i am trying to put the simple 'width' tag within the

[flexcoders] Re: Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-09 Thread Tim Hoff
No worries Anuj, Basically what the CSS is doing is replacing the programatically drawn skins that Flex uses by default for drawing the contols; with either your own programmatic (vector graphics) or graphical (images) skins. For the scrollbar skins, I find it easier to just embed images; but