November 19, 2008 by vinod4flex
Posted in Adobe news | 5 Comments »
November 19, 2008 by vinod4flex
Posted in Flex | Leave a Comment »
July 16, 2008 by vinod4flex
Posted in Flex | Leave a Comment »
July 1, 2008 by vinod4flex
Adobe is teaming up with search industry leaders to dramatically improve search results of dynamic web content and rich Internet applications (RIAs). Adobe is providing optimized Adobe Flash Player technology to Google and Yahoo! to enhance search engine indexing of the Flash file format (SWF) and uncover information that is currently undiscoverable by search engines. This will provide more relevant automatic search rankings of the millions of RIAs and other dynamic content that run in Adobe Flash Player. Moving forward, RIA developers and rich web content producers won’t need to amend existing and future content to make it searchable—they can now be confident that it can be found by users around the globe.
To know more visit:
http://www.adobe.com/devnet/flashplayer/articles/swf_searchability.html
Posted in Adobe news | 1 Comment »
June 30, 2008 by vinod4flex
The following example shows how you can detect when the source property has changed on a Flex Image control using the sourceChanged event.It shows a alertbox when the source is changed.
<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml“
layout=”vertical”
verticalAlign=”middle”
backgroundColor=”white”>
<mx:Script>
<![CDATA[
import mx.controls.Alert;
private function init():void {
img.addEventListener("sourceChanged", image_sourceChanged);
}
private function image_sourceChanged(evt:Event):void {
Alert.show(evt.toString(), evt.type);
}
]]>
</mx:Script>
<mx:ApplicationControlBar dock=”true”>
<mx:Button label=”Flash”
click=”img.source = ‘pic1.jpg’;” />
<mx:Button label=”Flash Player”
click=”img.source = ‘pic2.jpg’;” />
</mx:ApplicationControlBar>
<mx:Image id=”img”
source=”pic3.jpg”
initialize=”init();”
width=”100″
height=”100″ />
</mx:Application>
Posted in Flex | Leave a Comment »