[flexcoders] Flex 4 Spark HSlider ThumbSkin with ellipses?

2010-06-01 Thread turdontherun
Hi.  I am having trouble locating the HSlider Skin classes (for Flex 4 Spark 
component) that use an ellipse for the thumb.  All the classes I find in the 
SDK source seem to be using rects? Am I delusional? Anyone have any ideas where 
the source for this is?  (I am trying to create a derivative skin and the 
HSlider skins are where I want to start from...however, the source for the 
skins that I can find don't look like what I am seeing in a compiled app.)

Thanks,

-Kyle



Re: [flexcoders] Flex 4 Spark HSlider ThumbSkin with ellipses?

2010-06-01 Thread Tim Statler
The thumb graphic is a Rect/ whose radiusX/radiusY settings make it appear
circular, e.g.:

s:Rect height=20 width=20 radiusX=10 radiusY=10
s:stroke
s:SolidColorStroke caps=none color=#5380D0 /
/s:stroke
s:fill
s:SolidColor color=#ff/
/s:fill
/s:Rect

The HSliderThumbSkin.mxml file contains this kind of markup in the !-- fill
-- section.

-Tim

On Tue, Jun 1, 2010 at 8:34 AM, turdontherun flexmonkeypatc...@gmail.comwrote:



 Hi. I am having trouble locating the HSlider Skin classes (for Flex 4 Spark
 component) that use an ellipse for the thumb. All the classes I find in the
 SDK source seem to be using rects? Am I delusional? Anyone have any ideas
 where the source for this is? (I am trying to create a derivative skin and
 the HSlider skins are where I want to start from...however, the source for
 the skins that I can find don't look like what I am seeing in a compiled
 app.)

 Thanks,

 -Kyle