Showing newest posts with label Flex. Show older posts
Showing newest posts with label Flex. Show older posts

January 24, 2008

Adobe FABridge error

Trying to communicate with Flex application from javascript tried using FABridge, everything fine with Action script side include FAB ro src build folder, added bride in mxml. In Js side imported FABridge.Js and initialised FAB root also. Still throwing javascript object error, wondering why?

Some with FABridge samples came with the SDK 3.0. Its working fine with live adobe FAB samples not working when downloaded. Got struck in this issue

January 22, 2008

Flex Atom Reader in 13 lines of code



<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="feedRequest.send();">
<mx:HTTPService id="feedRequest" url="http://www.rjesh.com/feeds/posts/default" useProxy="false" />
<mx:Panel title="Rajesh Atom Reader" height="75%" width="75%" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10">
<mx:DataGrid id="dgPosts" height="50%" width="75%" dataProvider="{feedRequest.lastResult.feed.entry}">
<mx:columns>
<mx:DataGridColumn headerText="Posts" dataField="title"/>
</mx:columns>
</mx:DataGrid>
<mx:TextArea id="txtarea" height="50%" width="75%" htmlText="{dgPosts.selectedItem.content}"/>
</mx:Panel>
</mx:Application>

January 18, 2008

Flex fire effect


Its really interesting to work with flex 3.0, I have been working with lot of samples and exploring the features of Flex. What really impressed is the fire/smoke effect, so started working on that and done this logo.
I will share the source code very soon.