Feeds:
Posts
Comments

This is something the Flex community has been waiting for some time. Adobe Flex 3 with AIR ACE (Adobe Certified Expert) is out now.

Register for a test at Pearson VUE or Thomson Prometric
Here is the link to the Adobe Flex 3 and AIR ACE Preparation Guide

Text Highlighting in Flex

Check this sample application which highlights all instances of a searched string in an Text area and also find and highlight the searched string with a find and previous button

http://labs.tom-lee.com/Flex/HighlighterDemo/HighlighterDemo.html

This ia a very good example with the viewsource enabled.

Friends……i found a very good component which Customization the default Flex Tree component.This component simply add a checkbox on every tree item.The checkbox allows 3 states: selected, unselected, partially selected.Then you can control the state of checkbox nodes within the code.

To see the preview visit:http://www.sephiroth.it/test/flex/3/treecheckbox/index.html

Code download: http://www.sephiroth.it/file_detail.php?id=151

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

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>

Older Posts »