<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Draggable Slider Component for Flex</title>
	<atom:link href="http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/</link>
	<description>A blog about Adobe Flex</description>
	<lastBuildDate>Thu, 09 Feb 2012 13:51:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: Komal</title>
		<link>http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/comment-page-1/#comment-212072</link>
		<dc:creator>Komal</dc:creator>
		<pubDate>Fri, 06 Jan 2012 03:29:07 +0000</pubDate>
		<guid isPermaLink="false">http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/#comment-212072</guid>
		<description>Flex 3 provides a property humbCount for multiple thumbs.
How can I get an hslider with two thumbs in Flex 4.0?
Kindly help.</description>
		<content:encoded><![CDATA[<p>Flex 3 provides a property humbCount for multiple thumbs.<br />
How can I get an hslider with two thumbs in Flex 4.0?<br />
Kindly help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Making a Draggable Area Chart in Flex 3 &#124; Tek Titan</title>
		<link>http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/comment-page-1/#comment-211097</link>
		<dc:creator>Making a Draggable Area Chart in Flex 3 &#124; Tek Titan</dc:creator>
		<pubDate>Tue, 10 May 2011 19:48:15 +0000</pubDate>
		<guid isPermaLink="false">http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/#comment-211097</guid>
		<description>[...] Now I didn&#8217;t write all this, I mostly modified two existing pieces from two other authors to get this draggable area chart.  I have misplaced their names at the current moment and I will give them both credit when I find them but the result is pretty cool.  It&#8217;s an area chart with different draggable points with a corresponding mini chart that uses Doug Mccunes awesome slider component. [...]</description>
		<content:encoded><![CDATA[<p>[...] Now I didn&#8217;t write all this, I mostly modified two existing pieces from two other authors to get this draggable area chart.  I have misplaced their names at the current moment and I will give them both credit when I find them but the result is pretty cool.  It&#8217;s an area chart with different draggable points with a corresponding mini chart that uses Doug Mccunes awesome slider component. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abhishek</title>
		<link>http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/comment-page-1/#comment-210483</link>
		<dc:creator>abhishek</dc:creator>
		<pubDate>Mon, 13 Dec 2010 13:08:04 +0000</pubDate>
		<guid isPermaLink="false">http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/#comment-210483</guid>
		<description>can it work in flash builder 4 ?</description>
		<content:encoded><![CDATA[<p>can it work in flash builder 4 ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will</title>
		<link>http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/comment-page-1/#comment-208361</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Wed, 02 Sep 2009 14:23:23 +0000</pubDate>
		<guid isPermaLink="false">http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/#comment-208361</guid>
		<description>For the disappearing thumbs, just use the fully qualified skin name. thumbUpSkin=&quot;mx.skins.halo.SliderThumbSkin&quot; works for me in Flex 3.</description>
		<content:encoded><![CDATA[<p>For the disappearing thumbs, just use the fully qualified skin name. thumbUpSkin=&#8221;mx.skins.halo.SliderThumbSkin&#8221; works for me in Flex 3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yuva</title>
		<link>http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/comment-page-1/#comment-208249</link>
		<dc:creator>yuva</dc:creator>
		<pubDate>Tue, 04 Aug 2009 06:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/#comment-208249</guid>
		<description>Hi All,
 
     I&#039;m a beginner in Flex.  I trying with this custom component. I need to fire the event of thumbSkin change movement to function sliderChange. I have got value doesn&#039;t macth for requirement. And also  didn&#039;t get the proper Currrent Slider value for checking for my requirement. Please any body help with this point.

  
     
   


       private function sliderChange(event:SliderEvent):void {
              Alert.show(&quot;Slider Value&quot;+(Slider(event.currentTarget)));           
              var currentSlider:Slider=Slider(event.currentTarget);
              txt.text=&quot;{Math.round(currentSlider.value)}&quot;;
              var val:Number = Math.round(currentSlider.value);
             
               if(val &lt; 50)
                {
                 theme.visible = true; 
                 themes.visible = false;
                }
                else
                {
                  themes.visible = true;
                    theme.visible = false; 
                }
      }


Regards
yuva</description>
		<content:encoded><![CDATA[<p>Hi All,</p>
<p>     I&#8217;m a beginner in Flex.  I trying with this custom component. I need to fire the event of thumbSkin change movement to function sliderChange. I have got value doesn&#8217;t macth for requirement. And also  didn&#8217;t get the proper Currrent Slider value for checking for my requirement. Please any body help with this point.</p>
<p>       private function sliderChange(event:SliderEvent):void {<br />
              Alert.show(&#8220;Slider Value&#8221;+(Slider(event.currentTarget)));<br />
              var currentSlider:Slider=Slider(event.currentTarget);<br />
              txt.text=&#8221;{Math.round(currentSlider.value)}&#8221;;<br />
              var val:Number = Math.round(currentSlider.value);</p>
<p>               if(val &lt; 50)<br />
                {<br />
                 theme.visible = true;<br />
                 themes.visible = false;<br />
                }<br />
                else<br />
                {<br />
                  themes.visible = true;<br />
                    theme.visible = false;<br />
                }<br />
      }</p>
<p>Regards<br />
yuva</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Claude Needham</title>
		<link>http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/comment-page-1/#comment-208148</link>
		<dc:creator>Claude Needham</dc:creator>
		<pubDate>Fri, 10 Jul 2009 07:19:24 +0000</pubDate>
		<guid isPermaLink="false">http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/#comment-208148</guid>
		<description>NVM,

I found that the http://code.google.com/p/flexlib/ source had a workable hack.

Thanks for making the change in the flexlib.

Much appreciated.</description>
		<content:encoded><![CDATA[<p>NVM,</p>
<p>I found that the <a href="http://code.google.com/p/flexlib/" rel="nofollow">http://code.google.com/p/flexlib/</a> source had a workable hack.</p>
<p>Thanks for making the change in the flexlib.</p>
<p>Much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Claude Needham</title>
		<link>http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/comment-page-1/#comment-208146</link>
		<dc:creator>Claude Needham</dc:creator>
		<pubDate>Thu, 09 Jul 2009 23:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/#comment-208146</guid>
		<description>I downloaded the source and ran the example in flex3.
I don&#039;t see the triangle buttons.
Is this a result of Flex3?
Does anyone have a work-around or know where in the code I should look to resolve this?

Thanks in advance,</description>
		<content:encoded><![CDATA[<p>I downloaded the source and ran the example in flex3.<br />
I don&#8217;t see the triangle buttons.<br />
Is this a result of Flex3?<br />
Does anyone have a work-around or know where in the code I should look to resolve this?</p>
<p>Thanks in advance,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imtiyaz Basha</title>
		<link>http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/comment-page-1/#comment-207933</link>
		<dc:creator>Imtiyaz Basha</dc:creator>
		<pubDate>Thu, 11 Jun 2009 13:13:06 +0000</pubDate>
		<guid isPermaLink="false">http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/#comment-207933</guid>
		<description>Hi Brain,

If you are using Flash Builder (Gumbo/Flex Builder 4) use  -compatibility-version=3.0.0 as compiler option. this will resolve the problem.

Regards,
Imtiyaz Basha</description>
		<content:encoded><![CDATA[<p>Hi Brain,</p>
<p>If you are using Flash Builder (Gumbo/Flex Builder 4) use  -compatibility-version=3.0.0 as compiler option. this will resolve the problem.</p>
<p>Regards,<br />
Imtiyaz Basha</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BrianP</title>
		<link>http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/comment-page-1/#comment-207762</link>
		<dc:creator>BrianP</dc:creator>
		<pubDate>Sat, 25 Apr 2009 16:44:26 +0000</pubDate>
		<guid isPermaLink="false">http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/#comment-207762</guid>
		<description>I am a Java developer who has recently started doing Flex development. I am having a hard time understanding why the default CSS Styles get set when I use HSlider but not when I used ExtendedSlider.   If I instantiate ExtendedSlider I will get:

TypeError: Error #1007: Instantiation attempted on a non-constructor.
	at flexlib.baseClasses::SliderBase/createBackgroundTrack()[C:\EclipseWorkspace\QNotate1\QNotate3\src\flexlib\baseClasses\SliderBase.as:1679]
	
So this runtime error is because getStyle(&quot;trackSkin&quot;) returns null.

There seems to be some magic that the HSlider does when it extends ExtendSlider.  I tried copying all the metadata from HSlider into the ExtendSlider class to see if that was the magic. So now ExtendSlider has everything that a HSlider defined. It still crashes.  This makes little sense to me from an OO perspective.

I can obviously use the HSlider without issue, but I am missing something really fundamental concerning component creation and would appreciate any insight anyone could provide.

Doug, thanks for the great slider!</description>
		<content:encoded><![CDATA[<p>I am a Java developer who has recently started doing Flex development. I am having a hard time understanding why the default CSS Styles get set when I use HSlider but not when I used ExtendedSlider.   If I instantiate ExtendedSlider I will get:</p>
<p>TypeError: Error #1007: Instantiation attempted on a non-constructor.<br />
	at flexlib.baseClasses::SliderBase/createBackgroundTrack()[C:\EclipseWorkspace\QNotate1\QNotate3\src\flexlib\baseClasses\SliderBase.as:1679]</p>
<p>So this runtime error is because getStyle(&#8220;trackSkin&#8221;) returns null.</p>
<p>There seems to be some magic that the HSlider does when it extends ExtendSlider.  I tried copying all the metadata from HSlider into the ExtendSlider class to see if that was the magic. So now ExtendSlider has everything that a HSlider defined. It still crashes.  This makes little sense to me from an OO perspective.</p>
<p>I can obviously use the HSlider without issue, but I am missing something really fundamental concerning component creation and would appreciate any insight anyone could provide.</p>
<p>Doug, thanks for the great slider!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob McKeown</title>
		<link>http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/comment-page-1/#comment-207686</link>
		<dc:creator>Rob McKeown</dc:creator>
		<pubDate>Tue, 24 Mar 2009 13:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://dougmccune.com/blog/2007/01/21/draggable-slider-component-for-flex/#comment-207686</guid>
		<description>It appears that the slider control has a thumbUpSkin, thumbDownSkin, etc. set of styles which don&#039;t work. However, if you set the thumbSkin, style you can override the skin without a problem. The only &quot;downside&quot; with this approach is that you can&#039;t specify the thumbSkin style inline on your MXML tag. You have to use set from your stylesheet.</description>
		<content:encoded><![CDATA[<p>It appears that the slider control has a thumbUpSkin, thumbDownSkin, etc. set of styles which don&#8217;t work. However, if you set the thumbSkin, style you can override the skin without a problem. The only &#8220;downside&#8221; with this approach is that you can&#8217;t specify the thumbSkin style inline on your MXML tag. You have to use set from your stylesheet.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

