My slider mxml looks like this:package com.mydomain.view.skins
{
import mx.skins.halo.SliderThumbSkin;
/**
* The skin for all the states of a thumb in a Slider.
*/
public class SliderThumbSkinLarge extends SliderThumbSkin
{
/**
* @private
* Constructor.
*/
public function SliderThumbSkinLarge()
{
super();
this.width=30;
this.height=30;
}
}
}
<mx:VSlider thumbDownSkin="com.mydomain.view.skins.SliderThumbSkinLarge" thumbDisabledSkin="com.mydomain.view.skins.SliderThumbSkinLarge"
thumbUpSkin="com.mydomain.view.skins.SliderThumbSkinLarge" thumbOverSkin="com.mydomain.view.skins.SliderThumbSkinLarge"
tickInterval="1" snapInterval="1" ...etc/>
but I can't seem to get it to work. Any help with my skinning implementation or a solution that avoids skinning is much appreciated.
-Dustin
__._,_.___
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
| Web site design development | Computer software development | Software design and development |
| Macromedia flex | Software development best practice |
YAHOO! GROUPS LINKS
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

