Hi Friends

I Have Canvas  Which Contain The V slider, contain Snap interval Value
0.01;Snap Inter value

increment Like In The 0.01,0.02,0.03,0.04........;

But It Increment The Values Likes in the order  0.03,0.06 Every
time  ;

How To Solve This Problem;

Please Check The  Sample Code Here;


Am Getting The Problem The
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml";
layout="horizontal">

<mx:Script>
        <![CDATA[

                public function chan(event)
                {

                }
        ]]>
</mx:Script>
        <mx:Canvas width="200" height="400" backgroundColor="#A15353" x="0"
y="0">
                <mx:VSlider x="0" y="0"  id="vsd" liveDragging="true"
change="chan(event)" width="200"  height="400" minimum="0.2"
maximum="13"  snapInterval="0.01"/>
                <mx:TextInput  text="{vsd.values}" >
                </mx:TextInput>
        </mx:Canvas>

        <mx:VSlider x="0" y="0"  id="vsd11" liveDragging="true"
change="chan(event)" width="200"  height="400" minimum="0.25"
maximum="13"  snapInterval="0.01"/>
</mx:Application>

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.

Reply via email to