Hi,
     Thank you jagdish but I am looking for scrollable zoom.any idea on that

Regards
kalavati

On Tue, Jul 7, 2009 at 3:46 PM, Jagadish M <jagan.f...@gmail.com> wrote:

> Hi Kalavati,
>
> Here do i copy the code that may help you regarding zoomin & zoomout
>
> <?xml version="1.0"?>
>
> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml";
> backgroundAlpha="0">
>
> <mx:Script>
> <![CDATA[
> private function myMouseOver(event:Event):void
> {
> myZoom.target=event.currentTarget;
> myZoom.captureStartValues();
> event.currentTarget.width=100;
> event.currentTarget.height=200;
> myZoom.play();
> }
>
> private function myMouseOut(event:Event):void
> {
> myZoom.target=event.currentTarget;
> myZoom.captureStartValues();
> event.currentTarget.width=50;
> event.currentTarget.height=100;
> myZoom.play();
> }
>
> ]]>
> </mx:Script>
>
> <mx:Text width="500" text="This example uses captureStartValues() to play a
> Zoom
> effect on the Image so it grows to a specified width of 110 pixels." />
>
> <mx:SWFLoader source="assets/1213.jpg" width="50" height="100"
> rollOver="myMouseOver(event)" rollOut="myMouseOut(event)" />
>
> <mx:Zoom id="myZoom" />
>
> </mx:Application>
>
>
>
> On Tue, Jul 7, 2009 at 12:59 PM, kalavati singh 
> <kalavati.si...@gmail.com>wrote:
>
>> Hi,
>>       I am planning to add zooming feature to my Charts ,I am stuck up in
>> between  ,any one who has already worked with similar kind requirement
>> ,please suggest any docs /examples
>>
>> Regards
>> Kalavati
>>
>>
>>
>
>
> --
> Regards
> Jagan Mady's
>
>
> >
>

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

Reply via email to