<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:georss="http://www.georss.org/georss" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-8663713335122238493</atom:id><lastBuildDate>Mon, 26 Oct 2009 23:16:54 +0000</lastBuildDate><title>Mojo Flex</title><description>All things Flex brought to you by the old Emojo crew.</description><link>http://www.mojoflex.net/</link><managingEditor>noreply@blogger.com (Markus Karlsson)</managingEditor><generator>Blogger</generator><openSearch:totalResults>18</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/MojoFlex" type="application/rss+xml" /><feedburner:emailServiceId>MojoFlex</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-8713014647859306419</guid><pubDate>Thu, 04 Jun 2009 21:51:00 +0000</pubDate><atom:updated>2009-07-13T21:02:06.352Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Parse</category><category domain="http://www.blogger.com/atom/ns#">atom feed</category><category domain="http://www.blogger.com/atom/ns#">ActionScript</category><category domain="http://www.blogger.com/atom/ns#">Picasa</category><title>AS file to parse the Picasa Album atom feed</title><description>I've been asked so many times for the script to parse the atom feed provided by the picasa api for the album. The script I am posting here is simple and can be used to parse the feed for the album. Please feel free to change to your need.&lt;br /&gt;&lt;br /&gt;&lt;div class="codeview"&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;/*&lt;br /&gt;*     PicasaAlbumParser.as&lt;br /&gt;*    File to parse Picasa album xml retrieved from http://picasaweb.google.com/data/feed/api/user/{username}&lt;br /&gt;*  &lt;br /&gt;*    Jatin Desai&lt;br /&gt;*    desaijatin at gmail.com&lt;br /&gt;*&lt;br /&gt;*    File converts xml to array and each element contains album object.&lt;br /&gt;*    This class extracts the information needed for this project but feel free to change. This class was&lt;br /&gt;*    initially derived from Mike Chambers' website (parsing atom feeds)&lt;br /&gt;*    http://www.mikechambers.com/blog/2004/02/05/atom-feed-actionscript-2-class-alpha/&lt;br /&gt;*&lt;br /&gt;*/&lt;br /&gt;&lt;br /&gt;package&lt;br /&gt;{&lt;br /&gt;   import flash.xml.XMLDocument;&lt;br /&gt;   import flash.xml.XMLNode;&lt;br /&gt; &lt;br /&gt;   public class PicasaAlbumParser&lt;br /&gt;   {&lt;br /&gt;       public function PicasaAlbumParser()&lt;br /&gt;       {&lt;br /&gt;       }&lt;br /&gt;     &lt;br /&gt;       public function ParseAlbumList( xml:XML ):Array&lt;br /&gt;       {&lt;br /&gt;           trace("*********************************************");&lt;br /&gt;           trace("PARSING ATOM FEED");&lt;br /&gt;           trace("*********************************************");&lt;br /&gt;           var result:XMLDocument     = new XMLDocument();&lt;br /&gt;           var arAlbum:Array         = new Array();&lt;br /&gt;         &lt;br /&gt;           result.parseXML( xml.toXMLString() );&lt;br /&gt;&lt;br /&gt;           /* get the array of nodes withing response xml */&lt;br /&gt;           var nodes:Array = result.firstChild.childNodes;&lt;br /&gt;&lt;br /&gt;           for each( var node:XMLNode in nodes ) {&lt;br /&gt;               switch( node.nodeName )&lt;br /&gt;                 {&lt;br /&gt;                   /* we are only interested in entry node */&lt;br /&gt;                   case "entry":&lt;br /&gt;                       arAlbum.push( ParseAlbumEntries(node) );&lt;br /&gt;                       break;&lt;br /&gt;               }&lt;br /&gt;           }&lt;br /&gt;         &lt;br /&gt;           /* Return album */&lt;br /&gt;           return arAlbum;&lt;br /&gt;       }&lt;br /&gt;     &lt;br /&gt;       /* Parse album entries node */&lt;br /&gt;       private function ParseAlbumEntries(entry:XMLNode):Object&lt;br /&gt;       {&lt;br /&gt;           var album:Object     = new Object();&lt;br /&gt;           var nodes:Array     = entry.childNodes;&lt;br /&gt;         &lt;br /&gt;           for each( var node:XMLNode in nodes )&lt;br /&gt;           {&lt;br /&gt;               switch( node.nodeName )&lt;br /&gt;               {&lt;br /&gt;                   case "id":&lt;br /&gt;                       album.id         = node.firstChild.nodeValue;&lt;br /&gt;                       break;&lt;br /&gt;                   case "title":&lt;br /&gt;                       album.title     = node.firstChild.nodeValue;&lt;br /&gt;                       break;&lt;br /&gt;                   case "gphoto:id":&lt;br /&gt;                       album.albumid     = node.firstChild.nodeValue;&lt;br /&gt;                       break;&lt;br /&gt;                   case "gphoto:name":&lt;br /&gt;                       album.albumname = node.firstChild.nodeValue;&lt;br /&gt;                       break;&lt;br /&gt;                   case "gphoto:numphotos":&lt;br /&gt;                       album.numphotos = node.firstChild.nodeValue;&lt;br /&gt;                       break;&lt;br /&gt;                   case "media:group":&lt;br /&gt;                       album.media     = ParseAlbumMediaGroup(node);&lt;br /&gt;                       break;&lt;br /&gt;               }&lt;br /&gt;           }&lt;br /&gt;&lt;br /&gt;           /* return the album object */&lt;br /&gt;           return album;&lt;br /&gt;       }&lt;br /&gt;&lt;br /&gt;       private function ParseAlbumMediaGroup(entry:XMLNode):Object&lt;br /&gt;       {&lt;br /&gt;           var media:Object = new Object();&lt;br /&gt;           var nodes:Array = entry.childNodes;&lt;br /&gt;&lt;br /&gt;           for each( var node:XMLNode in nodes )&lt;br /&gt;           {&lt;br /&gt;               switch( node.nodeName )&lt;br /&gt;               {&lt;br /&gt;                   case "media:description":&lt;br /&gt;                       media.description = "";&lt;br /&gt;                       if(node.firstChild != null)&lt;br /&gt;                           media.description = node.firstChild.nodeValue;&lt;br /&gt;                       break;&lt;br /&gt;                   case "media:thumbnail":&lt;br /&gt;                       media.thumbnail = node.attributes.url;&lt;br /&gt;                       break;&lt;br /&gt;                   case "media:content":&lt;br /&gt;                       media.bigimage = node.attributes.url;&lt;br /&gt;                       break;&lt;br /&gt;               }&lt;br /&gt;           }&lt;br /&gt;         &lt;br /&gt;           /* Return media object */&lt;br /&gt;           return media;&lt;br /&gt;       }&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;&lt;br /&gt;Jatin&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-8713014647859306419?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/MojoFlex?a=G8J5kN5Q7QQ:Uqp0ziCPjac:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MojoFlex?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MojoFlex?a=G8J5kN5Q7QQ:Uqp0ziCPjac:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MojoFlex?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MojoFlex?a=G8J5kN5Q7QQ:Uqp0ziCPjac:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MojoFlex?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MojoFlex?a=G8J5kN5Q7QQ:Uqp0ziCPjac:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MojoFlex?i=G8J5kN5Q7QQ:Uqp0ziCPjac:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MojoFlex?a=G8J5kN5Q7QQ:Uqp0ziCPjac:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MojoFlex?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/G8J5kN5Q7QQ/as-file-to-parse-picasa-album-atom-feed.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2009/06/as-file-to-parse-picasa-album-atom-feed.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-7616867879792918391</guid><pubDate>Thu, 06 Nov 2008 14:59:00 +0000</pubDate><atom:updated>2008-11-06T16:11:20.730Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Coldfusion MX7</category><title>IE &amp; cfdump</title><description>&lt;p&gt; Internet Explorer crashes badly if you have to many "cfdump" &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;&amp;#33;-&amp;#45; IE dump crash test &amp;#45;-&amp;gt;&lt;br/&gt;&lt;br /&gt;&amp;lt;cfloop index="i" from="1" to="500"&amp;gt;&lt;br/&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfdump var="#i#"&amp;gt;&lt;br/&gt;&lt;br /&gt;&amp;lt;/cfloop&amp;gt;&lt;br /&gt;&lt;br /&gt;Use this test script and see the result.For the first time all worked well but then after reaching at some point my page was keep on doing the page refresh.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Internet explorer behaves randomly with too many dump scripts added by coldfusion in the source. So try avoiding the "cfdump" tag - rather than adding it once and reusing it.&lt;/p&gt;Enjoy.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-7616867879792918391?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=zEel8idH"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=FuAXQjvy"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=bMCV9Vmu"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=letIqJWA"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=letIqJWA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=79uIlnap"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/dt1V6iS1aFg/ie-cfdump.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2008/11/ie-cfdump.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-8058116534430265601</guid><pubDate>Sun, 13 Jul 2008 12:41:00 +0000</pubDate><atom:updated>2008-07-13T13:20:19.128Z</atom:updated><title>Uploading File over HTTPS with FileReference</title><description>On friday I introduced myself with a very interesting problem. In one of my project at Learning assistant we wanted to use Flex application to uplaod file using secure url. It was going well untill I tested my application in Firefox. For some reason I was getting Error #2038: File I/O Error. After sometime searching for the solution on google I realised that not only me but so many people had the same issue. Some of them have suggested different solutions check this:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://thanksmister.com/?p=59"&gt;http://thanksmister.com/?p=59&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.mail-archive.com/flexcoders@yahoogroups.com/msg58372.html"&gt;http://www.mail-archive.com/flexcoders@yahoogroups.com/msg58372.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.onflex.org/ted/2005/11/using-flash-player-under-https-with.php"&gt;http://www.onflex.org/ted/2005/11/using-flash-player-under-https-with.php&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I tried all of them but still the problem was the same. I tried sending back the jsessionid, cfid, cftoken with url request etc, but was getting the same file io error. I checked the IIS access log to see what's really happening. Whenever I was trying upload file using Fire fox, it was making two request to the file upload url, the response for the first request was fine but the immediate second request was served with http header 403... I still don't know why second request was not served? or why two requests were made?&lt;br /&gt;&lt;br /&gt;Anyways, we discussed not to use https for the file upload still we wanted to serve the flash object through https. So we changed the upload url to send request to http rahter than https and problem was solved. But if anyone had such problem and if you got some better solution please let me know.&lt;br /&gt;&lt;br /&gt;Jatin&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-8058116534430265601?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=4o1PA7fu"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=GPizet2d"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=QNbXYvMo"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=UqdRqWlj"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=UqdRqWlj" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=1zDrPVDE"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/AzckwXbDcUA/uploading-file-over-https-with.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://www.mojoflex.net/2008/07/uploading-file-over-https-with.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-5520599256162876736</guid><pubDate>Sat, 21 Jun 2008 13:56:00 +0000</pubDate><atom:updated>2008-07-09T15:35:01.815Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Picasa Web Widget</category><title>Picasa Web album Widget</title><description>Hi,&lt;br /&gt;&lt;br /&gt;Yesterday one of my friend asked me find a small widget to display photos from his picasa album to his blog. I searched for a while but didn't like any of them and thought of creating one by myself. I quickly logged on to picasa to find the "developer api" and started working on it. After few hours of work I came up with something like this.&lt;br /&gt;&lt;br /&gt;&lt;object codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab" height="300" width="350" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"&gt;&lt;param name="_cx" value="9260"&gt;&lt;param name="_cy" value="7938"&gt;&lt;param name="FlashVars" value="User=desaijatin"&gt;&lt;param name="Movie" value="http://desaijatin.googlepages.com/PicasaWebWidget.swf"&gt;&lt;param name="Src" value="http://desaijatin.googlepages.com/PicasaWebWidget.swf"&gt;&lt;param name="WMode" value="Window"&gt;&lt;param name="Play" value="-1"&gt;&lt;param name="Loop" value="-1"&gt;&lt;param name="Quality" value="High"&gt;&lt;param name="SAlign" value=""&gt;&lt;param name="Menu" value="-1"&gt;&lt;param name="Base" value=""&gt;&lt;param name="AllowScriptAccess" value="sameDomain"&gt;&lt;param name="Scale" value="ShowAll"&gt;&lt;param name="DeviceFont" value="0"&gt;&lt;param name="EmbedMovie" value="0"&gt;&lt;param name="BGColor" value=""&gt;&lt;param name="SWRemote" value=""&gt;&lt;param name="MovieData" value=""&gt;&lt;param name="SeamlessTabbing" value="1"&gt;&lt;param name="Profile" value="0"&gt;&lt;param name="ProfileAddress" value=""&gt;&lt;param name="ProfilePort" value="0"&gt;&lt;param name="AllowNetworking" value="all"&gt;&lt;param name="AllowFullScreen" value="true"&gt;&lt;embed src="http://desaijatin.googlepages.com/PicasaWebWidget.swf" width="350" height="300" allowfullscreen="true" flashvars="User=desaijatin&amp;Album=InternetWorldShow2008Emojo" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Features:&lt;br /&gt;1) Next/Previous photos&lt;br /&gt;2) Full-Screen&lt;br /&gt;3) Play/pause&lt;br /&gt;4) small/medium/large thumbnail view&lt;br /&gt;&lt;br /&gt;Its in a very primary state, please try it in your own blog or website and let me know what do you think about it. If you find any errors please post it here as a comment and I will try to work on it. At the moment code is very messy, I will tidy it up and post it here. Please post a comment if you are using it in your website. Its only for my reference. You can find it here&lt;br /&gt;&lt;br /&gt;&lt;a href="http://desaijatin.googlepages.com/home"&gt;http://desaijatin.googlepages.com/home&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.google.com/ig/adde?moduleurl=http://hosting.gmodules.com/ig/gadgets/file/107533971080222802098/jatin-picasawebwidget-igoogle-15.xml"&gt;&lt;img style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; WIDTH: 104px; BORDER-BOTTOM: 0px; HEIGHT: 17px" alt="Add to Google" src="http://buttons.googlesyndication.com/fusion/add.gif" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Enjoy,&lt;br /&gt;&lt;br /&gt;Jatin&lt;br /&gt;&lt;br /&gt;Update (26 June 2008)&lt;br /&gt;&lt;br /&gt;Thanks for the comments. This little widget uses the qs library (visit: &lt;a href="http://www.quietlyscheming.com/blog/"&gt;http://www.quietlyscheming.com/blog/&lt;/a&gt; for more info.)&lt;br /&gt;&lt;br /&gt;I have used &lt;a href="http://www.quietlyscheming.com/blog/components/tutorial-displayshelf-component/"&gt;DisplayShelf&lt;/a&gt; component for the Album listing and the &lt;a href="http://www.quietlyscheming.com/blog/components/landscape-zoomer/"&gt;Landscape zoomer (light table)&lt;/a&gt; for the photo listing.&lt;br /&gt;&lt;br /&gt;Hope this library will help you to build something like this.&lt;br /&gt;&lt;br /&gt;J.&lt;br /&gt;&lt;br /&gt;&lt;script type='text/javascript' src='http://track.mybloglog.com/js/jsserv.php?mblID=2008070908273605'&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-5520599256162876736?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=xWlsfpzI"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=ohv6VSV3"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=p5bYHGdh"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=yAyo0abd"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=yAyo0abd" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=h48xuuDv"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/3YHuz2pRXMs/picasa-web-album-widget.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">19</thr:total><feedburner:origLink>http://www.mojoflex.net/2008/06/picasa-web-album-widget.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-6003549438322700988</guid><pubDate>Mon, 05 May 2008 23:41:00 +0000</pubDate><atom:updated>2008-05-05T23:50:22.994Z</atom:updated><title>3D Wall</title><description>Hi all,&lt;br /&gt;&lt;br /&gt;Today I came accross a very effective way of displaying images in flash player. You have to check this out, this is some serious stuff.&lt;br /&gt;&lt;a href="http://www.flashloaded.com/flashcomponents/3dwall/"&gt;&lt;br /&gt;&lt;img src="http://www.flashloaded.com/flashcomponents/3dwall/images/1.jpg" border="0" /&gt;&lt;br /&gt;&lt;img src="http://www.flashloaded.com/flashcomponents/3dwall/images/2.jpg" border="0" /&gt;&lt;br /&gt;&lt;img src="http://www.flashloaded.com/flashcomponents/3dwall/images/3.jpg" border="0" /&gt;&lt;br /&gt;&lt;img src="http://www.flashloaded.com/flashcomponents/3dwall/images/4.jpg" border="0" /&gt;&lt;br /&gt;&lt;img src="http://www.flashloaded.com/flashcomponents/3dwall/images/5.jpg" border="0" /&gt;&lt;br /&gt;&lt;img src="http://www.flashloaded.com/flashcomponents/3dwall/images/6.jpg" border="0" /&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;This is very cool. They have posted 6 different examples. It reminds me of &lt;a href="http://www.piclens.com/"&gt;PicLense&lt;/a&gt; very much.&lt;br /&gt;&lt;br /&gt;PicLense is a very good plugin for your browser, saves you clicking through "next", specially when you are browsing images on flickr, google, or facebook.&lt;br /&gt;&lt;br /&gt;Hope you enjoy it and get more inspiration to create something cool like this. ;)&lt;br /&gt;&lt;br /&gt;cheers,&lt;br /&gt;&lt;br /&gt;Jatin&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-6003549438322700988?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=LrZEf3tN"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=VaAlkrvh"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=q6j2J4Nv"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=74Lgdt5f"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=74Lgdt5f" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=drqS0ihU"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/eJT5tT3-yWk/3d-wall.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://www.mojoflex.net/2008/05/3d-wall.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-7432316761110746</guid><pubDate>Thu, 02 Aug 2007 13:12:00 +0000</pubDate><atom:updated>2007-08-02T13:12:48.390Z</atom:updated><title>Flex and Coldfusion Job at Emojo</title><description>Emojo, a dynamic and innovative software development firm, seeks talented, self motivated, creative and disciplined Coldfusion and Flex Web Developer to help us respond to our continued growth.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);font-size:onload;" &gt;Job Description:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Looking for a Flex Component Developer with demonstrated and proven skills in design, development, testing, and implementation of high quality applications using Coldfusion and MS SQL 2000. Continuous learning of new concepts, technologies and functionality is a strong point.&lt;br /&gt;The development environment is Flex 2.0, and back end would be Coldfusion and SQL Server 2000.  Some training will be provided.&lt;br /&gt;&lt;p class="MsoNormal"&gt;&lt;span style="" lang="EN-GB"&gt;This is full-time, permanent position. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;span style="color: rgb(255, 153, 0);font-size:130%;" &gt;Required Skills:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Candidate must have minimum 2+ years of experience in developing Rich Internet Applications using Adobe Flex 1.5/2.0/3.0&lt;br /&gt;Minimum 2+ years experience in Object Oriented Programming&lt;br /&gt;Minimum 2+ years experience in Coldfusion MX7&lt;br /&gt;ActionScript development skills, including retrieving and parsing XML data from an application server&lt;br /&gt;Strong knowledge of MS SQL 2000 and you must be experience in writing optimised queries.&lt;br /&gt;Extensive experience with one or more modern IDE’s (ie. Dreamweaver, Flex Builder)&lt;br /&gt;Degree in Computer Science or Mathematics&lt;br /&gt;Strong Ability to grasp functional requirements&lt;br /&gt;Experience in using Source Control Software&lt;br /&gt;Experience in working with team&lt;br /&gt;Knowledge of working with Content Management System&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);font-size:130%;" &gt;Duties and Responsibilities&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;You will be part of a small close-knit team that is passionate about Affino, our core product. The successful candidate will create rich user interfaces for complex applications and integrating them with Affino, extending and improving the existing functionalities, bug fixing, managing client based projects and internal projects. Other will include project documentation and specification and Cold Fusion database design/development. From time to time you will be called on to perform other duties.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);font-size:130%;" &gt;Remuneration&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;From £25,000 to £35,000 per annum, contingent on experience.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);font-size:130%;" &gt;Contact&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Please send your CV and covering letter to ziggy@emojo.com.&lt;br /&gt;Or&lt;br /&gt;alternatively post it to:&lt;br /&gt;&lt;br /&gt;Ziggy Latif&lt;br /&gt;Emojo Ltd&lt;br /&gt;211 Regent Street, London, UK, W1B 4NF&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);font-size:130%;" &gt;Closing date:&lt;/span&gt;&lt;br /&gt;Please send us your application before 2nd October 2007.&lt;br /&gt;&lt;br /&gt;Applicants are welcome from the European Economic Area (EEA).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-7432316761110746?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=PJ4eLE7Q"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=nedPqXsr"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=lgAHdfvr"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=KvUp3tJC"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=KvUp3tJC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=PGEkdftF"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/IfIYiKxa8no/flex-and-coldfusion-job-at-emojo_02.html</link><author>noreply@blogger.com (Gyuszi)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/08/flex-and-coldfusion-job-at-emojo_02.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-4159679262387340678</guid><pubDate>Thu, 02 Aug 2007 08:21:00 +0000</pubDate><atom:updated>2007-08-02T08:26:20.520Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apollo</category><category domain="http://www.blogger.com/atom/ns#">Adobe AIR</category><category domain="http://www.blogger.com/atom/ns#">Book</category><title>Adobe® Integrated Runtime (AIR)</title><description>Download free copy of Adobe® Integrated Runtime (AIR) for JavaScript Developers (Pocket Reference) - By Mike Chambers, Daniel Dura, and Kevin Hoyt&lt;br /&gt;&lt;br /&gt;&lt;a href="http://ajaxian.com/downloads/books/AdobeAIR_for_javascript_developers.pdf" title="Adobe® Integrated Runtime (AIR) for JavaScript Developers" &gt;Adobe® Integrated Runtime (AIR) for JavaScript Developers&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Content&lt;/u&gt;:&lt;br /&gt;&lt;br /&gt;Chapter 1: Introduction to the Adobe Integrated Runtime (AIR)&lt;br /&gt;Chapter 2: Getting Started with AIR Development&lt;br /&gt;Chapter 3: Working with JavaScript and HTML Within AIR&lt;br /&gt;Chapter 4: AIR Mini-Cookbook&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-4159679262387340678?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=Uo5ekMtP"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=Rzo7AD2Y"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=w3o08vBS"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=gPiNOwwo"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=gPiNOwwo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=oNVhgED3"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/d7c5l-e87dw/adobe-integrated-runtime-air.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/08/adobe-integrated-runtime-air.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-4490933551645910751</guid><pubDate>Mon, 07 May 2007 21:54:00 +0000</pubDate><atom:updated>2007-06-18T06:57:30.342Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Flex</category><title>Flex Image Processing</title><description>Hi All,&lt;br /&gt;&lt;br /&gt;Check this amazing Image Processing Library available for Flex / Action Script. The Imageprocessing Library is licensed under a &lt;a href="http://creativecommons.org/licenses/by-nc-nd/2.5/" target="_blank"&gt;Creative Commons License&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Useful features:&lt;br /&gt;&lt;br /&gt;1) BrightnessCorrection&lt;br /&gt;2) ContrastCorrection&lt;br /&gt;3) Grayscale&lt;br /&gt;4) Emboss&lt;br /&gt;5) Export as JPEG&lt;br /&gt;6) Export as PNG&lt;br /&gt;7) Normalize&lt;br /&gt;8) Ripple&lt;br /&gt;9) RedEyeRemoval&lt;br /&gt;10) Tile&lt;br /&gt;… And many more&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I have assembled one example just to get the idea of how it’s all working. I will post the Source code very soon. Meanwhile play with it and explore the component yourself.&lt;br /&gt;&lt;a href="http://www.geocities.com/j_c_desai/ImageEditing/ImageEditing.html"&gt;http://www.geocities.com/j_c_desai/ImageEditing/ImageEditing.html&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.geocities.com/j_c_desai/ImageEditing/srcview/Twirl.JPG" width="200" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;More details at &lt;a href="http://blog.je2050.de/"&gt;http://blog.je2050.de/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You can download &lt;a href="http://je2050.de/files/source/as3/ImageProcessing.zip"&gt;Latest version&lt;/a&gt; here.&lt;br /&gt;And Documentation is at &lt;a href="http://je2050.de/imageprocessing/"&gt;http://je2050.de/imageprocessing/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;All the best&lt;br /&gt;&lt;br /&gt;Jatin&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-4490933551645910751?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=eXT7ozU3"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=EV4U5wH7"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=9zYzHkx0"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=ftK8Ag1j"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=ftK8Ag1j" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=RxGvu8Dn"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/8J3FyNU8Z5M/flex-image-processing.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">6</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/05/flex-image-processing.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-4422824790524901085</guid><pubDate>Tue, 17 Apr 2007 18:48:00 +0000</pubDate><atom:updated>2007-05-18T16:34:01.385Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apollo</category><title>Adobe Unveils Next Generation Internet Video Solution</title><description>&lt;a href="http://labs.adobe.com/wiki/images/3/31/Philo_screenshot.jpg" target="_blank"&gt;&lt;br /&gt;&lt;img src="http://labs.adobe.com/wiki/images/f/fa/Philo_thumbnail.jpg" border="0" /&gt; [Large picture]&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Adobe® Media Player™ is a desktop media player that offers useful features for viewers to manage and interact with their favorite content, and features for content publishers to define branding and advertising in and around their content. The Adobe Media Player will be one of the first Apollo applications from Adobe.&lt;br /&gt;&lt;br /&gt;Adobe Media Player will be available as free beta download from the Adobe website in mid-2007 with availability expected later this year from Adobe and a wide range of media and technology partners.&lt;br /&gt;&lt;a href="http://labs.adobe.com/wiki/index.php/Media_Player"&gt;&lt;br /&gt;Read more...&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a title="http://www.adobe.com/aboutadobe/pressroom/pressreleases/200704/041607AMP.html" href="http://www.adobe.com/aboutadobe/pressroom/pressreleases/200704/041607AMP.html" target="_blank" rel="nofollow"&gt;Press Release&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-4422824790524901085?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=krSMY2oX"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=Dw6D2ZUE"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=aQC5Ri84"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=gLUbbbtI"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=gLUbbbtI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=4mtyTBSg"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/qBtRdne1ofY/adobe-unveils-next-generation-internet.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/04/adobe-unveils-next-generation-internet.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-5279221863246793772</guid><pubDate>Wed, 28 Mar 2007 10:34:00 +0000</pubDate><atom:updated>2007-03-28T10:43:30.482Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Application</category><category domain="http://www.blogger.com/atom/ns#">Flex</category><title>Great looking Flex Image Editor</title><description>&lt;a href="http://1.bp.blogspot.com/_6ljcc3_JITA/RgpGOPUkISI/AAAAAAAAABM/UidIFq-fv1A/s1600-h/Fauxto.png"&gt;&lt;img id="BLOGGER_PHOTO_ID_5046923542866960674" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_6ljcc3_JITA/RgpGOPUkISI/AAAAAAAAABM/UidIFq-fv1A/s400/Fauxto.png" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;When looking around for a Flex based image editor we came across Fauxto which shows just what's possible with Flex when it comes to image generation and manipulation.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;Just go to &lt;a href="http://www.fauxto.com"&gt;Fauxto.com&lt;/a&gt; to check it out.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-5279221863246793772?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=nOpnPLLk"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=DYuuKemj"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=vlZzL1Z2"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=XVLi44cO"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=XVLi44cO" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=KBSKEF4B"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/BV8nhWxtb8k/great-looking-flex-image-editor.html</link><author>noreply@blogger.com (Markus Karlsson)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_6ljcc3_JITA/RgpGOPUkISI/AAAAAAAAABM/UidIFq-fv1A/s72-c/Fauxto.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/03/great-looking-flex-image-editor.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-8335592929597056033</guid><pubDate>Sun, 25 Mar 2007 19:24:00 +0000</pubDate><atom:updated>2007-05-18T16:32:29.510Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apollo</category><title>MojoFlex YouTube Desktop Player</title><description>Here is the another application created in Apollo.&lt;br /&gt;&lt;br /&gt;YouTube Desktop Player, is the desktop application to play videos from YouTube. This is just the sample application, not for the commercial use. After installing the player you can search and play videos.&lt;br /&gt;&lt;br /&gt;Once again code is not properly commented, please excuse me for that. Download the MojoFlexYouTubeVideoPlayer.zip (&lt;a href="http://www.geocities.com/j_c_desai/MojoFlexYouTubeVideoPlayer.zip" &gt;.zip&lt;/a&gt; 398KB), which contains MojoFlexYouTubeVideoPlayer.air file, install it and run the application.&lt;br /&gt;&lt;br /&gt;(you will need to download and install the Run time: &lt;a href="http://labs.adobe.com/downloads/apolloruntime.html"&gt;http://labs.adobe.com/downloads/apolloruntime.html&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;Enter the search phrase and hit the "Go" button, you will see the search result in the Playlist window.&lt;br /&gt;&lt;img src="http://www.geocities.com/j_c_desai/YouTubePlayerScreen1.jpg" width="450" /&gt;&lt;br /&gt;&lt;br /&gt;Double click on the item you want to watch. You can click donwload button to get the selected file.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.geocities.com/j_c_desai/YouTubePlayerScreen2.jpg" width="450" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here is the &lt;a href="http://www.geocities.com/j_c_desai/YouTubeVideoPlayer.zip" &gt;source&lt;/a&gt; (1,163 KB) file.&lt;br /&gt;&lt;br /&gt;Leave your comments and let me know what you think.&lt;br /&gt;&lt;br /&gt;All the best.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-8335592929597056033?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=ih9k2iIx"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=788iCpqt"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=i74jjnQ4"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=ZK8lkKmh"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=ZK8lkKmh" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=rPZgwc5U"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/SKBorR-axJM/mojoflex-youtube-desktop-player.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/03/mojoflex-youtube-desktop-player.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-8952560701195006610</guid><pubDate>Sat, 24 Mar 2007 19:15:00 +0000</pubDate><atom:updated>2007-05-18T16:33:04.020Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apollo</category><title>My first Apollo Application</title><description>Its been long time, since I stopped programming in Java, I wanted to create some desktop application. I was eagerly waiting for Adobe to release Apollo, so that I can do something. This weekend I decided to create a simple application in Apollo. Long ago I wrote one Flex application to play .flv files, so I though of using the same code and create on Flash video player. I spend about three hours and was able to create something very simple.&lt;br /&gt;&lt;br /&gt;I was so excited to post my first Apollo Application. Please find the “.air” file at the end of this post. There is a zip folder with source files, please excuse me because source files are not tidy.&lt;br /&gt;&lt;br /&gt;I personally believe Adobe has done excellent job, and made it so simple to create desktop application.&lt;br /&gt;&lt;br /&gt;You will need to download and install Apollo Run time.&lt;br /&gt;&lt;br /&gt;Download “FlashVideoPlayer.zip” &lt;a href="http://www.geocities.com/j_c_desai/FlashVideoPlayer.zip"&gt;(.zip 371KB)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Screen 1:&lt;br /&gt;&lt;img src="http://www.geocities.com/j_c_desai/screenOne.jpg" /&gt;&lt;br /&gt;After installing the “FlashVideoPlayer.air” – FlashVideoPlayer.exe and it will open up the Video player. I tried to create player same as Windows Media Player 11.&lt;br /&gt;&lt;br /&gt;Screen 2:&lt;br /&gt;&lt;img src="http://www.geocities.com/j_c_desai/screenTwo.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;Click on Playlist icon and it will open up the Video browser window. Please select the flv file and click play icon. Video Browser window is filtering files and looking for only .flv files.&lt;br /&gt;&lt;br /&gt;Download Source files:&lt;br /&gt;&lt;a href="http://www.geocities.com/j_c_desai/MyFirstApplication.zip"&gt;MyFirstApplication.zip&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;All the best.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-8952560701195006610?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=9vTdgkil"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=2cI88ezG"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=vyTJjG3g"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=dmF8vcde"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=dmF8vcde" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=Z5qXL4ou"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/gx59UCxCjqU/my-first-apollo-application.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/03/my-first-apollo-application.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-2968885197560594797</guid><pubDate>Mon, 19 Mar 2007 15:10:00 +0000</pubDate><atom:updated>2007-03-19T15:21:22.191Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Download Apollo</category><category domain="http://www.blogger.com/atom/ns#">Apollo</category><title>Apollo Alpha released today...!</title><description>Hey guys,&lt;br /&gt;&lt;br /&gt;Good and Big News: Apollo Alpha is released today...&lt;br /&gt;&lt;br /&gt;Get your copy today.&lt;br /&gt;&lt;a href="http://labs.adobe.com/wiki/index.php/Apollo" target="new"&gt; http://labs.adobe.com/wiki/index.php/Apollo&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Download includes:&lt;br /&gt;&lt;br /&gt;Apollo SDK&lt;br /&gt;Apollo Runtime&lt;br /&gt;Documentations and Samples&lt;br /&gt;Apollo Extension for Adobe Flex Builder 2.0.1&lt;br /&gt;&lt;br /&gt;All the best&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-2968885197560594797?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=v7VpxoBi"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=dXMte3aT"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=6qYVBvd9"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=B7vWuzKZ"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=B7vWuzKZ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=Q4JMKYgK"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/Ao3K_6Nb4sU/apollo-alpha-released-today.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/03/apollo-alpha-released-today.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-4467185586757362154</guid><pubDate>Sun, 18 Mar 2007 19:10:00 +0000</pubDate><atom:updated>2007-05-18T16:34:38.009Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apollo</category><title>Adobe Apollo Beta version</title><description>Hey guys keep an eye on Adobe labs’ Apollo section to be notified about the beta version of the Apollo.&lt;br /&gt;&lt;br /&gt;Here is the link to signup for the notification.&lt;br /&gt;&lt;a href="http://www.adobe.com/cfusion/mmform/index.cfm?name=apollo_beta"&gt;http://www.adobe.com/cfusion/mmform/index.cfm?name=apollo_beta&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you haven't heard about Apollo, visit Developer's faq at Adobe Labs.&lt;br /&gt;&lt;a title="Apollo:DeveloperFAQ" href="http://labs.adobe.com/wiki/index.php/Apollo:DeveloperFAQ"&gt;Developer FAQ&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Don't miss out.....&lt;br /&gt;&lt;br /&gt;if you fancy reading and preparing your self about it here is the book:&lt;br /&gt;&lt;a href="http://labs.adobe.com/wiki/index.php/Apollo:Books:Apollo_for_Adobe_Flex_Developers_Pocket_Guide"&gt;http://labs.adobe.com/wiki/index.php/Apollo:Books:Apollo_for_Adobe_Flex_Developers_Pocket_Guide&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Apollo for Adobe Flex Developers Pocket Guide Mike Chambers, Rob Dixon, Jeff Scwartz&lt;br /&gt;&lt;a class="image" title="Image:397818531 abfdfd9cd0 m.jpg" href="http://labs.adobe.com/wiki/index.php/Image:397818531_abfdfd9cd0_m.jpg"&gt;&lt;/a&gt;&lt;a name="Get_the_Book"&gt;&lt;/a&gt;&lt;a class="image" title="Image:397818531 abfdfd9cd0 m.jpg" href="http://labs.adobe.com/wiki/index.php/Image:397818531_abfdfd9cd0_m.jpg"&gt;&lt;/a&gt;&lt;a class="image" title="Image:397818531 abfdfd9cd0 m.jpg" href="http://labs.adobe.com/wiki/index.php/Image:397818531_abfdfd9cd0_m.jpg"&gt;&lt;/a&gt;&lt;br /&gt;Get the Book&lt;br /&gt;&lt;br /&gt;&lt;img src="http://labs.adobe.com/wiki/images/0/01/397818531_abfdfd9cd0_m.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a class="external" title="http://download.macromedia.com/pub/labs/apollo/documentation/apollo for flex pocketguide 031907.pdf" href="http://download.macromedia.com/pub/labs/apollo/documentation/apollo_for_flex_pocketguide_031907.pdf" target="_blank" rel="nofollow"&gt;Download PDF of Book&lt;/a&gt;&lt;br /&gt;&lt;a class="external" title="http://www.amazon.com/Apollo-Adobe-Developers-Pocket-Guide/dp/0596513917/" href="http://www.amazon.com/Apollo-Adobe-Developers-Pocket-Guide/dp/0596513917/" target="_blank" rel="nofollow"&gt;Purchase from Amazon&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;All the best&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-4467185586757362154?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=NCrwA2O7"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=l78nqJe1"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=7WaF4IUF"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=p5wYmyc7"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=p5wYmyc7" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=Uu9L1rFh"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/E9msIdLBw4s/adobe-apollo-beta-version.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/03/adobe-apollo-beta-version.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-1019484273591481195</guid><pubDate>Sat, 17 Mar 2007 10:20:00 +0000</pubDate><atom:updated>2007-05-18T16:43:18.756Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Flex</category><title>Flex Documentation</title><description>&lt;p&gt;Usually I look at other people’s code and general guidelines to learn new programming language. But its very important to know the programming language and its syntax. Adobe has published good range of documentation on its website.&lt;br /&gt;&lt;br /&gt;Link: &lt;a href="http://www.adobe.com/support/documentation/en/flex/"&gt;http://www.adobe.com/support/documentation/en/flex/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Following is the list of available documents / references.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;u&gt;Installing Flex 2.0.1&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;(&lt;a href="http://www.adobe.com/go/flex2_apiref" target="_blank"&gt;HTML&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;u&gt;Flex 2 Developer's Guide&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;a href="http://www.adobe.com/go/flex2_devapps_pdf" target="_blank"&gt;PDF&lt;/a&gt; (PDF, 10.5MB) &lt;a href="http://download.macromedia.com/pub/documentation/en/flex/2/flex2_devguide.zip" target="_blank"&gt;Zip&lt;/a&gt; (.zip, 5.5MB) &lt;a href="http://www.adobe.com/go/flex2_devapps" target="_blank"&gt;HTML&lt;/a&gt; (LiveDocs format)&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;u&gt;Creating and Extending Flex 2 Components&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;a href="http://www.adobe.com/go/flex2_components_pdf" target="_blank"&gt;PDF&lt;/a&gt; (PDF, 1.3MB) &lt;a href="http://download.macromedia.com/pub/documentation/en/flex/2/flex2_createextendcomponents.zip" target="_blank"&gt;Zip&lt;/a&gt; (.zip, 0.9MB) &lt;a href="http://www.adobe.com/go/flex2_components" target="_blank"&gt;HTML&lt;/a&gt; (LiveDocs format)&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;u&gt;Building and Deploying Flex 2 Applications&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;a href="http://www.adobe.com/go/flex2_building_pdf" target="_blank"&gt;PDF&lt;/a&gt; (PDF, 2.7MB) &lt;a href="http://download.macromedia.com/pub/documentation/en/flex/2/flex2_buildanddeploy.zip" target="_blank"&gt;ZIP&lt;/a&gt; (.zip, 1.7MB) &lt;a href="http://www.adobe.com/go/flex2_building" target="_blank"&gt;HTML&lt;/a&gt; (LiveDocs format)&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;u&gt;Programming ActionScript 3.0&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;a href="http://www.adobe.com/go/programmingAS3_pdf" target="_blank"&gt;PDF&lt;/a&gt; (PDF, 3.8MB) &lt;a href="http://download.macromedia.com/pub/documentation/en/flex/2/prog_actionscript30.zip" target="_blank"&gt;ZIP&lt;/a&gt; (.zip, 2.3MB) &lt;a href="http://www.adobe.com/go/programmingAS3" target="_blank"&gt;HTML&lt;/a&gt; (LiveDocs format)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;u&gt;ActionScript 3.0 examples&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;a href="http://download.macromedia.com/pub/documentation/en/flex/2/flex2_actionscript_examples.zip" target="_blank"&gt;ZIP&lt;/a&gt; (.zip, 0.5MB)&lt;br /&gt;Many topics in Programming ActionScript 3.0 include descriptions of example applications; the source code used to build these examples is available for download&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;u&gt;Migrating Applications to Flex 2&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;a href="http://www.adobe.com/go/flex2_migrating_pdf" target="_blank"&gt;PDF&lt;/a&gt; (PDF, 900KB) &lt;a href="http://download.macromedia.com/pub/documentation/en/flex/2/flex2_migrationguide.zip" target="_blank"&gt;ZIP&lt;/a&gt; (.zip, 600KB)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;u&gt;Documentation ZIP file&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;a href="http://www.adobe.com/go/flex_documentation_zip" target="_blank"&gt;ZIP&lt;/a&gt; (.zip, 45.5MB)&lt;br /&gt;The Flex documentation ZIP file contains the Flex 2 usage documentation in PDF format and the Flex 2 Language Reference and Flex Data Services 2 Javadocs files in HTML format.&lt;br /&gt;&lt;br /&gt;If you really want to get into the roots of Flex, download the Documentation zip files, it includes everything you need to know. &lt;/p&gt;&lt;p&gt;All the best&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-1019484273591481195?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=lv2UGwyf"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=tkRJoVI4"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=aJZFJpkU"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=6BmFwVUA"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=6BmFwVUA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=70Hw9iEU"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/NHOKN8i-K7k/flex-documentation.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/03/flex-documentation.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-5583918949681002716</guid><pubDate>Wed, 24 Jan 2007 16:47:00 +0000</pubDate><atom:updated>2007-01-24T16:56:49.302Z</atom:updated><title>domain name for blog</title><description>this blog will stay under the umbrella of www.blogger.com and www.mojoflex.com for the time being, despite my efforts to set it up on it's own domain.&lt;br /&gt;&lt;br /&gt;Today I made the mistake  of choosing a Domain Registration company (that also host the domain and other websites for me) that does not offer a control panel to change the nameserver so that a cname can be entered. That means I cannot automatically point my blog at this domain unless I use the ISP's blogging software, which I do not want to do. My blog needs to use google blogger so that it integrates and uses the same widgets and links as my collegues.&lt;br /&gt;&lt;br /&gt;What will happen, is that I will register a new domain using godaddy.com which will allow me to do what I need to do with the cname. I can then open up a hosting account with godaddy.com and start hosting my sites with them too because they are such good value. Since my experiences over the last few days with a UK hosting and domain registration outfit, I am appreciating the features that godaddy offer:- month by month comittment it does not need to be 12 month minimum contract, domain and hosting in one package with discount if both at same time, integrated software forum for downloading/trying/sharing software, mysql built into even the basic hosting platform and much much more. If I did not know better, I would say that Markus has shares in godaddy, because he is their best salesman!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-5583918949681002716?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=KfsNRGHP"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=XJ60U3Ew"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=xNZXyMpt"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=l7We2gUS"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=l7We2gUS" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=9vX7YVsx"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/fVLOeSfOcqY/domain-name-for-blog.html</link><author>noreply@blogger.com (stephan j james)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/01/domain-name-for-blog.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-3524533360224751046</guid><pubDate>Sat, 20 Jan 2007 01:33:00 +0000</pubDate><atom:updated>2007-01-20T16:39:01.625Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">JRun</category><category domain="http://www.blogger.com/atom/ns#">Windows</category><category domain="http://www.blogger.com/atom/ns#">Coldfusion MX7</category><category domain="http://www.blogger.com/atom/ns#">Flex</category><category domain="http://www.blogger.com/atom/ns#">Installation</category><title>Installing Flex on Coldfusion</title><description>&lt;img title="Coldfusion mx7" alt="Coldfusion mx7" src="http://www.adobe.com/images/shared/product_logos/159x120/159x120_cfmx7.gif" /&gt; &lt;img title="flex" style="MARGIN-TOP: 5px; WIDTH: 160px; HEIGHT: 139px" height="149" alt="flex" src="http://www.adobe.com/devnet/images/160x160/flex_logo.jpg" width="160" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;In this post we will discuss how to install flex on Coldfusion server. I have installed flex on Windows XP and with the built in server for Coldfusion MX7 (Developer edition). For more information and installing flex samples, please read article on Adobe’s website &lt;a href="http://www.adobe.com/support/documentation/en/flex/1_5/flexforcf.html"&gt;http://www.adobe.com/support/documentation/en/flex/1_5/flexforcf.html&lt;/a&gt;).&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;&lt;br /&gt;Download the latest version of Flex installer from &lt;a href="http://www.adobe.com/products/flex/"&gt;http://www.adobe.com/products/flex/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Now run the installer to extract/copy Flex files to flex install directory.&lt;br /&gt;&lt;br /&gt;Copy flex.war from flex install directory, create temp folder (for example c:/tempflexwar), and extract the content using Winzip or other similar extractor.&lt;br /&gt;&lt;br /&gt;Now stop Coldfusion server and carefully follow all the steps.&lt;br /&gt;Copy content from the WEB-INF folder of the c:/tempflexwar/flex to the {Coldfusion root directory}/ WEB-INF&lt;br /&gt;Make sure that you copy content from c:/tempflexwar/flex/WEB-INF/lib to {Coldfusion root directory}/ WEB-INF/ lib, c:/tempflexwar/flex/WEB-INF/classes to {Coldfusion root directory}/ WEB-INF/classes and c:/tempflexwar/flex/WEB-INF/flex to {Coldfusion root directory}/ WEB-INF/flex (if you don’t have folder called flex just create one or copy content.&lt;br /&gt;&lt;br /&gt;Now you need to merge Flex web.xml file to Coldfusion web.xml file.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff9900;"&gt;&lt;strong&gt;[Note: Its always a good idea to make a copy of original file.]&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Open Coldfusion web.xml in text editor or in Dreamweaver. You can find web.xml file in {Coldfusion root directory}/ WEB-INF/ folder.&lt;br /&gt;Replace the “Doctype” definition with the following DOCTYPE definition: &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;&lt;br /&gt;&lt;CODE&gt;&amp;lt;!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.// DTD Web Application 2.3// EN" "http://java.sun.com/dtd/web-app_2_3.dtd"&amp;gt;&lt;/CODE&gt;&lt;br /&gt;&lt;br /&gt;DTD specifies the following order that the tags must have in order for the document to be considered a valid XML document:&lt;br /&gt;&lt;br /&gt;Copy the context parameters, filters, filter mappings, listeners, and servlet definitions from the Flex web.xml file to the appropriate sections in the ColdFusion MX web.xml file. Copy each of these elements to the end of the matching section in the ColdFusion MX configuration file. For example, when copying the Flex filter mappings, add them after the ColdFusion MX filters mappings but before the next set of elements. Be sure to maintain the order of the XML blocks in the way that they appear in the Flex web.xml file.&lt;br /&gt;&lt;br /&gt;Save the web.xml and restart coldfusion server.&lt;br /&gt;&lt;br /&gt;If all the steps are followed properly you should be able to compile mxml file in your coldfusion instance.&lt;br /&gt;&lt;br /&gt;If for any reason it doen't work, stop your coldfusion server and check the web.xml file.&lt;br /&gt;&lt;br /&gt;All the best. &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-3524533360224751046?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=YVs1d8fd"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=tPdCHXAP"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=mSwWSpWk"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=K9xNzUaH"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=K9xNzUaH" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=iFqMNgNg"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/16_fNzaBJzM/installing-flex-on-coldfusion.html</link><author>noreply@blogger.com (Jatin Desai)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/01/installing-flex-on-coldfusion.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8663713335122238493.post-4757590911512295817</guid><pubDate>Tue, 16 Jan 2007 14:14:00 +0000</pubDate><atom:updated>2007-01-16T14:18:00.233Z</atom:updated><category domain="http://www.blogger.com/atom/ns#">Affino</category><category domain="http://www.blogger.com/atom/ns#">Adobe</category><category domain="http://www.blogger.com/atom/ns#">Widgets</category><category domain="http://www.blogger.com/atom/ns#">Emojo</category><category domain="http://www.blogger.com/atom/ns#">Flex</category><title>Welcome to Mojo Flex</title><description>Mojo Flex is brought to you by the eBusiness experts at Emojo. We aim to make this a great resource for the Flex community and for those interested in what Flex is all about. Along the way we'll be highlighting our Flex projects and releasing any Widgets or cool components we develop.&lt;br /&gt;&lt;br /&gt;Adobe Flex is an amazing development that most people haven't yet caught up with. People are hung up on what Ajax can do for forms and content when Flex handles all forms of media in the same way with less code, greater reach and cross platform capability.&lt;br /&gt;&lt;br /&gt;Enjoy the ride.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8663713335122238493-4757590911512295817?l=www.mojoflex.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=yK9fAvuw"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=gHTeL0EH"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=42" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=paWeQfod"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=43" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=jOlFkDLx"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?i=jOlFkDLx" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/MojoFlex?a=ZZoDiATx"&gt;&lt;img src="http://feeds.feedburner.com/~f/MojoFlex?d=50" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/MojoFlex/~3/NBAVrDWnV_s/welcome-to-mojo-flex.html</link><author>noreply@blogger.com (Markus Karlsson)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.mojoflex.net/2007/01/welcome-to-mojo-flex.html</feedburner:origLink></item></channel></rss>
