Posted by: keshawkumar on: June 15, 2011
Adobe has released Adobe AIR2.7 with several new feature and enhancements.
New Feature:
Posted by: keshawkumar on: April 12, 2011
Adobe Flex 4.5 SDK release with three major initiatives:
Posted by: keshawkumar on: April 8, 2011
Adobe is developing a tool called codename (“Wallaby”). Wallaby is a tool to convert the Flash .fla files in HTML. After the conversion of the file you can change the content in any HTML Editor.
It is available now on Adobe Labs. You can download the preview version.
Posted by: keshawkumar on: June 2, 2009
Adobe has released some great resources also. Here are the links of the resources which i found on some sites and adobe flex doc team blog.
For Flash Builder 4(Flex 4)
For Flash Catalyst
What’s new in Flash Builder 4 beta
Enjoy flexing…
Posted by: keshawkumar on: June 2, 2009
Adobe has launched Adobe Flash Builder 4 beta, formerly known as Adobe Flex Builder, Flex 4 SDK beta, and Adobe Flash Catalyst(Interaction design tool).
Flex SDK has been focused on following:
Flash Builder 4 has been focused on following:
Adobe Flash Catalyst:
Here are the link for download the followings tools:
Posted by: keshawkumar on: May 28, 2009
I was just looking of the Flex4(Gumbo) language reference. There are several major improvement in gumbo. One of them is Spark Effect. Spark effects can be applied to any component(halo, spark) and graphical components(Rectangle, Ellipse, and path). Spark effect gives visual effect over the target component. This is really looking interesting for add some good animation on flex application. Earlier it was difficult…
<?xml version=”1.0″?>
<!– behaviors\SparkXFormRotateMove.mxml –>
<FxApplication xmlns=”http://ns.adobe.com/mxml/2009″>
<Declarations>
<Parallel id=”parallelRMForward”
target=”{myImage}”>
<AnimateTransformRotate
angleBy=”180″/>
<AnimateTransformMove
xBy=”100″
yBy=”100″/>
</Parallel>
<Parallel id=”parallelRMBack”
target=”{myImage}”>
<AnimateTransformRotate
angleBy=”180″/>
<AnimateTransformMove
xBy=”-100″
yBy=”-100″/>
</Parallel>
</Declarations>
<FxButton label=”Play Effect Forwar”
x=”10″ y=”10″
click=”parallelRMForward.end();parallelRMForward.play();”/>
<FxButton label=”Play Effect Backwar”
x=”150″ y=”10″
click=”parallelRMBack.end();parallelRMBack.play();” />
<Image id=”myImage”
x=”10″ y=”50″
source=”@Embed(source=’asset/fx.jpg’)”/>
</FxApplication>