<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Anaara Media LLC &#187; Flash</title>
	<atom:link href="http://blog.anaara.com/archives/category/flash/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.anaara.com</link>
	<description>Flex, Flash, Rich Internet Applications (RIA's), and Post Production for Film and Video</description>
	<lastBuildDate>Thu, 24 Jun 2010 21:28:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How not to frag your Flex Team (or &#8216;How to prevent . actionScriptProperties and other files from getting checked into SVN)</title>
		<link>http://blog.anaara.com/archives/233</link>
		<comments>http://blog.anaara.com/archives/233#comments</comments>
		<pubDate>Mon, 26 Apr 2010 17:24:32 +0000</pubDate>
		<dc:creator>Fuad Kamal</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://blog.anaara.com/?p=233</guid>
		<description><![CDATA[The situation: you wake up one morning and update your flash builder project, only to get an error message saying there is a conflict in .actionScriptProperties. Images of the rap video Who Broke the Build suddenly rise up out of you memory&#8230;before you throw that keyboard through that nice 30&#8243; Cinema display, take a deep [...]]]></description>
			<content:encoded><![CDATA[<p>The situation: you wake up one morning and update your flash builder project, only to get an error message saying there is a conflict in .actionScriptProperties.  Images of the rap video <i><a href="http://www.youtube.com/watch?v=DJ001Kgz5wc">Who Broke the Build</a></I> suddenly rise up out of you memory&#8230;before you throw that keyboard through that nice 30&#8243; Cinema display, take a deep breath and read on.  It&#8217;s not as bad as you think.  In fact, you could have prevented this from happening in the first place, but now that it&#8217;s happened, you can fix it so it doesn&#8217;t happen again.</p>
<p>Assumptions / Background:<br />
-you&#8217;re using Subversion (SVN) for version control<br />
-you&#8217;re using Flash Builder (same applies for Flex Builder, but this tutorial is specific to Flash Builder) with the Subclipse plugin</p>
<p>Sometimes you want to tell svn not to update or commit certain files in your local project, such as .project, so you don&#8217;t have to remember not to check them in when you do a check-in at root level.  You could try telling your team to just not check those files in, but not only is that a pain to remember to do, but most likely in the end they will wind up getting checked in, anyway.  The common solution to this is to use svn:ignore, which tells svn to ignore those files and not check them in.  To get to that option <i>normally</i> would be easy &#8211; just right-click on the file or directory in Flash Builder and choose Team->Add to svn:ignore.  However, most likely if you are trying to ignore files or directories that start with a dot &#8216;.&#8217; then you aren&#8217;t seeing them in Flash Builder at all, are you?  The dot is the naming syntax for hidden files in unix/linux, and Flash Builder / Eclipse respects this.  OK, so to see the files within Flash Builder, first of all, switch from the Package Explorer (new to Flash Builder) to the Navigator (more like what we were used to in Flex 3 and prior):<br />
<a href="http://blog.anaara.com/wp-content/uploads/2010/04/otherViews.png"><img src="http://blog.anaara.com/wp-content/uploads/2010/04/otherViews-234x299.png" alt="getting to the navigator window in Flash Builder" title="otherViews" width="234" height="299" class="alignleft size-medium wp-image-237" /></a><a href="http://blog.anaara.com/wp-content/uploads/2010/04/navigator1.png"><img src="http://blog.anaara.com/wp-content/uploads/2010/04/navigator1-220x300.png" alt="selecting the navigator window in Flash Builder" title="navigator1" width="220" height="300" class="alignleft size-medium wp-image-238" /></a>Navigate to Window->Other Views and then select the Navigator.  Now you should see your project by the file structure rather than package structure.  Next, select the drop down menu from within the Navigator and choose Filters, and uncheck whatever types of files you want to see.<a href="http://blog.anaara.com/wp-content/uploads/2010/04/navigator.png"><img src="http://blog.anaara.com/wp-content/uploads/2010/04/navigator-300x82.png" alt="Filters option in the Navigator" title="navigator" width="300" height="82" class="alignright size-medium wp-image-240" /></a><a href="http://blog.anaara.com/wp-content/uploads/2010/04/hiddenFiles.png"><img src="http://blog.anaara.com/wp-content/uploads/2010/04/hiddenFiles-235x300.png" alt="viewing hidden files in the navigator" title="hiddenFiles" width="235" height="300" class="alignright size-medium wp-image-241" /></a></p>
<p>OK, so now you see the file you want to ignore&#8230;but if the file was already added to svn, that option to svn:ignore it is grayed out.<br />
<div id="attachment_235" class="wp-caption alignleft" style="width: 306px"><a href="http://blog.anaara.com/wp-content/uploads/2010/04/ignore.png"><img src="http://blog.anaara.com/wp-content/uploads/2010/04/ignore-296x300.png" alt="" title="svn:ignore disabled" width="296" height="300" class="size-medium wp-image-235" /></a><p class="wp-caption-text">When a file has been added to svn already, the option to ignore it is disabled</p></div><br />
Now what?  This part is a <i>little</i> more tricky (I found the solution for this next part <a href="http://stackoverflow.com/questions/1066809/subclipse-svnignore">here</a>):</p>
<p>1. Delete the file from the repository (make a backup first!)<br />
2. Recreate it in Eclipse<br />
3. Set svn:ignore on it via Team->Add to svn:ignore</p>
<p>Hopefully now you&#8217;re good to go, and your Flex team is still alive and breathing! <img src='http://blog.anaara.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.anaara.com/archives/233/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Capital Flash Camp 2010 : A brief recap</title>
		<link>http://blog.anaara.com/archives/220</link>
		<comments>http://blog.anaara.com/archives/220#comments</comments>
		<pubDate>Fri, 16 Apr 2010 22:33:49 +0000</pubDate>
		<dc:creator>Fuad Kamal</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Catalyst]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3 -> Flex 4 Migration]]></category>
		<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Software Architecture]]></category>
		<category><![CDATA[UXD]]></category>
		<category><![CDATA[Wireframing]]></category>

		<guid isPermaLink="false">http://blog.anaara.com/?p=220</guid>
		<description><![CDATA[I attended Flash Camp in DC today and though I would share my initial impressions, given that we were at 360 Flex not too long ago and a lot of attention is being given to the upcoming Flash &#038; the City conference coming up in NYC soon. First off, I will admit my motivations for [...]]]></description>
			<content:encoded><![CDATA[<p>I attended Flash Camp in DC today and though I would share my initial impressions, given that we were at 360 Flex not too long ago and a lot of attention is being given to the upcoming Flash &#038; the City conference coming up in NYC soon.  First off, I will admit my motivations for attending were (a) because it was local to us and (b) because our User Experience Designer, @adnaanahmad  was presenting on Catalyst.  If reason (a) were the only reason, I might have gotten lazy and not gone at all, but reason (b) was enough to mandate my attendance.  Anyway, three main areas caught my attention regarding Capital Flash Camp: the speakers/presentations, the conference / organization itself, and the food.  You might think that the first area, the speakers / presentations, should be the sole focus, but I guess, the same way you notice bad design because it hinders you, but you don&#8217;t notice good design because it&#8217;s doing its job, also these satellite issues contribute or detract  from an event such as this. </p>
<p><strong>Conference / Organization</strong><br />
What, no name tag?<br />
I guess this is an area where stuff I had been taking for granted, from my experiences at MAX, and now 360 Flex, kind of stood out.  We might tend to think of name tags as a bother, but part of the reason we attend conferences is to network.  There seemed to have been no thought given to the networking aspect at all at Capital Flash Camp.  Don&#8217;t get me wrong, we don&#8217;t need fancy lanyards and stuff &#8211; a simple sticker you write your own name on would have been sufficient.  Then again, I guess that forces folks to try and open their mouths and actually ask each others names&#8230;not such a bad thing, eh?  So, was this an oversight or actually a clever, well designed ploy to encourage folks to get out of the closet and actually develop social skills?  Either way, it did get my attention.</p>
<p>There was also no swag&#8230;not at the registration desk, anyway&#8230;kind of a disappointment.  I don&#8217;t count Adobe pens and stickers left over from 360 Flex as swag, sorry&#8230;aren&#8217;t conference shirts a defacto standard?</p>
<p>Attendance wise, I was actually pretty disappointed.  The conference was held in a relatively small area, with all the talks being held in a single, small auditorium with a huge curved screen.  However, the number of attendees might have made the place look vast.  There were maybe only fifty attendees in the beginning, and for some reason as the conference progressed that number continuously dwindled.  I left early myself, with two sessions and the giveaways still pending, but at that time there might have only been twenty or so folks left.</p>
<p><strong>Speakers / Presentations</strong></p>
<p><a href="http://www.flickr.com/photos/abunur/sets/72157623747071237/show/"><img alt="" src="http://farm5.static.flickr.com/4025/4526960472_571a7c7017_m.jpg" title="Jeff Tapper" class="alignleft" width="168" height="240" /></a>I walked into the conference in the middle of @jefftapper &#8216;s presentation <em>Flex 4 for Flex 3 Developers</em>.  Jeff&#8217;s presentation was excellent, and I definitely plan to go download his lecture notes since we are at the beginnings of a flex 3 -> flex 4 migration, ourselves.  Of particular interest is the list of mx components that were not ported to the spark space at all, such as DataGrid and ViewStack.  One of the first questions I posed on twitter as we started migrating our code to the spark space was, &#8216;are we supposed to mix mx and spark components by design?&#8217;  I got a bunch of tweets in response referring either to custom components folks had built in the spark space or on how to mix mx and spark components.  Jeff&#8217;s response was that he felt that Adobe hadn&#8217;t done this themselves yet due to time constraints.  Ah&#8230;</p>
<p>Next up was @queencodemonkey on <em>Greenthreading in Flex</em>.  I already saw her presentation at 360 Flex, but as I told her, it was one of the best presentations I had attended, with regards to stuff I was able to take back to my team and say, &#8216;hey, this is something we should look into with regards to what we&#8217;re currently doing&#8217;.  So it was enjoyable to see it again, and a good review of the concepts and applications.  I also made a note to go and read an article she referred to by @ jesterxl on loading massive amounts of data in the Flash player, and they both were kind enough to tweet the <a href="http://jessewarden.com/2009/02/parsing-rendering-lots-of-data-in-flash-player.html">link to the article</a>.</p>
<p>Next was <em>The Art of Storytelling</em> by @christiansaylor.  It was a nice change of pace from the technical presentations, and indeed, he is a great story teller himself.  I kept thinking that his presentation style was highly reminiscent of Steve Jobs, and when one of his slides was a huge photo of <em>The Evil One</em> (as one audience member called out, lol) it pretty much cinched it in my mind that was a source of influence for him.  In a good way&#8230;</p>
<p>Christian also convinced me to take a closer look at Audi&#8230;</p>
<p>Towards the middle to end of the presentation, I kind of felt like it was tending towards a sales plug for Universal mind, but then again, they sponsored and organized the event, half the speakers were from their company &#8211; so what could you expect?  In the least, at least this presentation was pertinent and well done, unlike the eBay sponsor presentation at 360 Flex, which had me wondering if anyone, really, ANYONE in the entire audience cared an iota about what the speaker had to say or if what he spoke on had anything at all to do with real business problems faced by anyone in the audience.</p>
<p>next was lunch&#8230;</p>
<p><strong>The Food</strong><br />
What can I say, without getting too insulting? Meh.  Not a highlight of the conference.  At 360 Flex, they had good food, but it would run out before you could actually get any.  For some reason, I found that more appealing than food you got but didn&#8217;t find appetizing. </p>
<p><strong>More Great Speakers</strong><br />
@carlsmith spoke on the importance of listening to your audience in <em>It’s a Matter of Trust</em>.  Frankly this was by far the most entertaining session, hands down.  The volume and amount of laughter in the audience  was a clear indication of that.  He brought up twitter a lot in examples of customers complaining about the service of companies, and the successes and failures of companies leveraging twitter to satisfy customers.  The bottom line of his presentation: treat your audience as people, not as statistics.</p>
<p>The last session I attended before ditching was <em>Introduction to Flash Catalyst</em> by @adnaanahmad.  Adnaan&#8217;s presentation was great, especially considering it was his first conference presentation, ever.  I think the audience was hungry for more on his demo side; the background info etc. is all good and well, but that&#8217;s stuff folks can read about later or have already done so, the demo is what really engaged us.  He also made a pretty good case considering there was only one designer left in the audience at that point and the rest were developers.</p>
<p>You can find a small slideshow of the photos I took at the conference <a href="http://www.flickr.com/photos/abunur/sets/72157623747071237/show/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.anaara.com/archives/220/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>would the REAL iPhone killer please stand up?</title>
		<link>http://blog.anaara.com/archives/201</link>
		<comments>http://blog.anaara.com/archives/201#comments</comments>
		<pubDate>Mon, 15 Feb 2010 14:38:13 +0000</pubDate>
		<dc:creator>Fuad Kamal</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://blog.anaara.com/?p=201</guid>
		<description><![CDATA[Certain defenders of Apple&#8217;s stance on excluding the Flash platform from Mobile Safari, such as Daring Fireball have been trying to flip the argument, saying that Flash is an outdated technology, the concept of browser plugins is outdated, and that HTML 5 has all but deprecated any need for Flash. They also argue that the [...]]]></description>
			<content:encoded><![CDATA[<p>Certain defenders of Apple&#8217;s stance on excluding the Flash platform from Mobile Safari, such as<a href="http://daringfireball.net/"> Daring Fireball</a> have been trying to flip the argument, saying that Flash is an outdated technology, the concept of browser plugins is outdated, and that HTML 5 has all but deprecated any need for Flash.  They also argue that the only use for Flash is for playing silly games that would be better rendered as native applications, anyway (obviously they have never heard of Rich Internet Applications).</p>
<p>By now <a href="http://theflashblog.com/?p=1758">Adobe has announced Flash Player 10.1 and Adobe AIR for Android</a> at the <a href="http://www.mobileworldcongress.com">Mobile World Congress</a> (funny, we just completed a web redesign for a client who is a sponsor of MWC, centered around the event, but I had no idea about Adobe&#8217;s role there).  This demo of using Adobe Connect on the Droid by Kevin Hoyt says something totally contrary.</p>
<p><object width="425" height="256"><param name="movie" value="http://tv.adobe.com/assets//swf/player.swf"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="FlashVars" value="fileID=5135&#038;context=76&#038;embeded=true&#038;environment=production"></param><embed src="http://tv.adobe.com/assets//swf/player.swf" flashvars="fileID=5135&#038;context=76&#038;embeded=true&#038;environment=production" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="256"></embed></object></p>
<p>Here we have a real business case scenario that Mobile Safari can&#8217;t compete with.  Sure, maybe they will make something comparable to the iChat capability of screen sharing available on iPhone one day, but here it is, Adobe Connect, running on a Droid, <i>now</i>.</p>
<p>Personally, I have always been of the opinion that Apple will allow Flash on their mobile devices when, and only when, it will make them more money.  Currently they have pretty tight control (jail-breaking aside)  over what can be run on their devices, and all money to be made from application development flows through Apple&#8217;s iTunes store.  Would having AIR on the iPhone totally upset that?  Of course.  Until, and unless, Apple perceives they are losing economic ground due to competing platforms, they aren&#8217;t going to change their stance.</p>
<p>Overall, I think Apple&#8217;s stance is actually very healthy for the market.  It has driven Adobe to work really hard to improve the full version of the Flash player (as opposed to Flash Lite), which is great for developers who don&#8217;t want to have to develop a separate code base just to support their applications in the mobile world (having to revert to ActionScript 2, which is pretty much a different language altogether, when you have been living in the AS3 world, is uninviting to say the least).  By improving Flash, they have made it more viable for running on mobile devices as well as for application development.  It has also given an opening to every other maker of mobile devices to step up to the plate and compete with Apple by offering what Apple doesn&#8217;t, on their devices.</p>
<p>I think Steve Job&#8217;s demo at the January unveiling of iPad said it all&#8230;throughout the demo, he kept hitting those blue lego boxes due to lack of Flash support, and you can hear the audience laughing out loud every time.  I couldn&#8217;t resist putting together <a href="http://www.flickr.com/photos/abunur/sets/72157623309383844/">a few screen shots</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.anaara.com/archives/201/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web to Print: Client Side PDF Generation from Adobe Flex / AS3</title>
		<link>http://blog.anaara.com/archives/198</link>
		<comments>http://blog.anaara.com/archives/198#comments</comments>
		<pubDate>Sat, 13 Feb 2010 14:01:48 +0000</pubDate>
		<dc:creator>Fuad Kamal</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Balsamiq Mockups]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://blog.anaara.com/?p=198</guid>
		<description><![CDATA[Generally when the question of PDF generation from Adobe Flex applications comes up, the defacto answer has been &#8216;use LiveCycle&#8217; or some other server-side technology to handle the PDF generation. But sometimes we don&#8217;t have the option of using a server-side solution for PDF generation. There was a very interesting discussion thread on LinkedIn, recently, [...]]]></description>
			<content:encoded><![CDATA[<p>Generally when the question of PDF generation from Adobe Flex applications comes up, the defacto answer has been &#8216;use LiveCycle&#8217; or some other server-side technology to handle the PDF generation.  But sometimes we don&#8217;t have the option of using a server-side solution for PDF generation.  There was a<a href="http://www.linkedin.com/groupAnswers?viewQuestionAndAnswers=&#038;discussionID=13544678&#038;gid=107408&#038;trk=EML_anet_qa_ttle-cThOon0JumNFomgJt7dBpSBA"> very interesting discussion thread on LinkedIn</a>, recently, concerning web to print PDF generation.  While the original question wasn&#8217;t looking for a client-side PDF generation solution, a lot of links to various APIs for client side PDF generation were posted, including one from <a href="http://www.sephiroth.it">Sephiroth</a>, who happened to also write my favorite ActionScript editor prior to the advent of Flex 2.0 (speaking of which, writing ActionScript in the built-in editor in the latest version of the Flash IDE is still SO BAD, I wish Adobe would just buy <a href="http://www.sephiroth.it/python/sepy.php">SE|PY</a> and integrate it with with Flash IDE).</p>
<p>So here&#8217;s a list of some solutions for client-side PDF generation from AS3:</p>
<li><a href="http://www.sephiroth.it/weblog/archives/2010/02/purepdf_a_complete_actionscript_pdf_l.php">purePDF</a> &#8211; a port of the Java <a href="http://itextpdf.com/">iText</a> library &#8211; this seemed like the most robust solution out there</li>
<li><a href="http://alivepdf.bytearray.org/">ALIVEPDF</a> &#8211; ported from the <a href="http://www.fpdf.org/">FPDF PHP</a> project.  Interestingly, ALIVEPDF was used in Balsamiq Mockups, which we reviewed <a href="http://blog.anaara.com/archives/163">here</a></li>
<li><a href="http://www.fxpdf.com/joomla/">LIBHARU AS3</a> &#8211; ported from LibHaru</li>
]]></content:encoded>
			<wfw:commentRss>http://blog.anaara.com/archives/198/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>takeaway from MAX: iPhone &amp; Mobile development from Flex and Flash</title>
		<link>http://blog.anaara.com/archives/178</link>
		<comments>http://blog.anaara.com/archives/178#comments</comments>
		<pubDate>Thu, 08 Oct 2009 21:29:10 +0000</pubDate>
		<dc:creator>Fuad Kamal</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe MAX]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[UXD]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://blog.anaara.com/?p=178</guid>
		<description><![CDATA[There were lots of news and sneaks at the Adobe MAX conference this week, and fortunately a lot of it is available in a couple places: a) Adobe MAX Online Site b) most of the sessions are now available on Adobe TV Some items of very specific interest to mobile developers: -Flash Player 10.1 was [...]]]></description>
			<content:encoded><![CDATA[<p>There were lots of news and sneaks at the Adobe MAX conference this week, and fortunately a lot of it is available in a couple places:<br />
a) <a href=" http://max.adobe.com/online/">Adobe MAX Online Site</a><br />
b) most of the sessions are now available on <a href="http://tv.adobe.com">Adobe TV</a></p>
<p>Some items of very specific interest to mobile developers:</p>
<p>-<a href="http://labs.adobe.com/technologies/flashplayer10/">Flash Player 10.1</a> was announced, which has been greatly optimized for running on mobile devices &#8211; no more flash lite, we are talking about the full flash player on mobile phones, and quite a few of the leading mobile phone manufacturers have joined the Open Screen initiative as well as announced phones that are being released with Flash Player 10.1<br />
-<a href="http://labs.adobe.com/technologies/flashcs5/">Flash CS5</a> was announced with compiling direct to iPhone native applications. Flash CS5 will be available for public beta later this year on <a href="http://labs.adobe.com">Adobe Labs</a><br />
-several games are already on iTunes store that were developed with Flash CS5, including these free ones:</p>
<li>Little Red Riding Hood, a Post Apocalyptic Adventure (<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=331140070&#038;mt=8">iTunes link</a>), by <a href="http://www.differencegames.com">Difference Games</a>.  This is a &#8216;find what&#8217;s different between the two pictures&#8217; game.</li>
<li>That Roach Game (<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=331141362&#038;mt=8">iTunes link</a>) by <a href="http://www.thatroachgame.com/">Break Design</a></li>
<li>Adobe Live Cycle Workspace Mobile</li>
<p>-<a href="http://labs.adobe.com/technologies/shibuya/">Shibuya try and buy service</a> was announced, which, to me, seems like a big, big potential competitor to Apple&#8217;s iTunes store, and from all the complaining we&#8217;ve heard from the iPhone developer crowd, it seems a LOT more developer friendly than the iTunes model</p>
<li>and here&#8217;s more on the<a href="http://labs.adobe.com/technologies/flashcs5/appsfor_iphone/"> iPhone development thing from Adobe Labs</a></li>
<p>-<a href="http://tv.adobe.com/watch/max-2009-develop/preview-flex-for-mobile-devices/">this talk</a> goes into depth on using the newly announced Flex mobile framework to develop mobile applications with Flex (yes, for iPhone, too):<br />
<object width="425" height="256"><param name="movie" value="http://images.tv.adobe.com//swf/player.swf"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="FlashVars" value="fileID=2333&#038;context=162&#038;embeded=true&#038;environment=production"></param><embed src="http://images.tv.adobe.com//swf/player.swf" flashvars="fileID=2333&#038;context=162&#038;embeded=true&#038;environment=production" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="256"></embed></object></p>
<p>Whew&#8230;iPhone development with Adobe Flex&#8230;something we have been asking for, dreaming about, and eagerly wishing for (all the while thinking the only way to get native apps on the iPhone would be to code in Objective C)&#8230;now it looks like it is a reality.  There is a ton more that could be said on this topic, and definitely on Adobe MAX &#8217;09 in general, but you can dive into the above links for plenty of that first hand.  One last thing&#8230;<a href="http://www.flickr.com/groups/adobemax2009/pool/show/">the Max &#8217;09 Flickr group</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.anaara.com/archives/178/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making the transition to Flex 4: The Package Explorer</title>
		<link>http://blog.anaara.com/archives/122</link>
		<comments>http://blog.anaara.com/archives/122#comments</comments>
		<pubDate>Thu, 19 Mar 2009 12:24:36 +0000</pubDate>
		<dc:creator>Fuad Kamal</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe MAX]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://blog.anaara.com/?p=122</guid>
		<description><![CDATA[It seems lately that there are a lot of UI changes in new Adobe products. The other day I was trying to give someone quick Flash tips, I happened to be using CS4 for the first time and found I had a hard time figuring out how to do something that used to be routine. [...]]]></description>
			<content:encoded><![CDATA[<p>It seems lately that there are a lot of UI changes in new Adobe products.  The other day I was trying to give someone quick Flash tips, I happened to be using CS4 for the first time and found I had a hard time figuring out how to do something that used to be routine.  Same thing happened with Dreamweaver &#8211; I used to use it a lot and even have a DW cert (old), but using CS4 for the first time, again I couldn&#8217;t find some familiar controls to do something that I would consider simple.</p>
<p>Recently I started working on a project using Flex 4 Gumbo, the Adobe MAX preview version.  One of the first things I noticed was that in Flex 4 there is now an option to create either a &#8216;new folder&#8217; or a &#8216;new package&#8217;, whereas in Flex 3 the only option was to create a &#8216;new folder&#8217;.  In both versions there is a little symbol consisting of a square with crosshairs through it.  In Flex 3 that used to appear in the corner of some folders while in Flex 4 that is the symbol used to represent some packages and symbols (I&#8217;m still not clear on the usage of this symbol).<br />

<a href='http://blog.anaara.com/archives/122/flex4_packageexplorer2' title='flex4_packageexplorer2'><img width="150" height="150" src="http://blog.anaara.com/wp-content/uploads/2009/03/flex4_packageexplorer2-150x150.gif" class="attachment-thumbnail" alt="flex4_packageexplorer2" title="flex4_packageexplorer2" /></a>
<a href='http://blog.anaara.com/archives/122/flex4_packageexplorer' title='flex4_packageexplorer'><img width="150" height="150" src="http://blog.anaara.com/wp-content/uploads/2009/03/flex4_packageexplorer-150x150.gif" class="attachment-thumbnail" alt="flex4_packageexplorer" title="flex4_packageexplorer" /></a>
<a href='http://blog.anaara.com/archives/122/flex3_filestructure' title='flex3_filestructure'><img width="150" height="150" src="http://blog.anaara.com/wp-content/uploads/2009/03/flex3_filestructure-150x150.gif" class="attachment-thumbnail" alt="flex3_filestructure" title="flex3_filestructure" /></a>
<br />
So what&#8217;s the difference between a package and a folder in Gumbo? Flex 3 never made such a distinction, although it seems the option was there in Eclipse. They seem like the same thing to me but there are distinct menu options for it now.  No one I&#8217;ve asked so far really seems to know.  I read in the <a href="http://livedocs.adobe.com/flex/gumbo/gumbo_featuresmigrate.pdf">Gumbo migration doc</a> about the Flex File Browser being replaced with the Flex Package Explorer, and the new option for hierarchical display vs. logical flat view, but still don&#8217;t see the significance of a package vs. a folder besides terminology&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.anaara.com/archives/122/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 4.0?!? GE leverages Flash player in a whole new way with the FlarToolKit</title>
		<link>http://blog.anaara.com/archives/125</link>
		<comments>http://blog.anaara.com/archives/125#comments</comments>
		<pubDate>Thu, 05 Mar 2009 14:52:03 +0000</pubDate>
		<dc:creator>Fuad Kamal</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Away3D]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[PaperVision]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[FlarToolKit]]></category>

		<guid isPermaLink="false">http://blog.anaara.com/?p=125</guid>
		<description><![CDATA[I saw this tweet by crashmedia and was totally blown away by this video demo showing an implementation of FlarToolKit: www.youtube.com/watch?v=DkqtklABgGQ The demo is by Robert Cooper, creative director of some company (couldn&#8217;t quite make out the name from the video, guys that would have been a great plug for your company even though you [...]]]></description>
			<content:encoded><![CDATA[<p>I saw <a href="http://twitter.com/crashmedia/status/1283168520">this tweet by crashmedia</a> and was totally blown away by this video demo showing an implementation of <a href="http://www.libspark.org/wiki/saqoosha/FLARToolKit/en">FlarToolKit</a>:</p>
<p><span class="youtube">
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/DkqtklABgGQ&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&#038;eurl=http://twitter.com/crashmedia" />
<param name="allowFullScreen" value="true" />
<embed wmode="transparent" src="http://www.youtube.com/v/DkqtklABgGQ&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&#038;eurl=http://twitter.com/crashmedia" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355"></embed>
<param name="wmode" value="transparent" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=DkqtklABgGQ">www.youtube.com/watch?v=DkqtklABgGQ</a></p></p>
<p>The demo is by Robert Cooper, creative director of some company (couldn&#8217;t quite make out the name from the video, guys that would have been a great plug for your company even though you had nothing to do with creating it)  and the technology is the &#8216;GE Plugin for Smartgrid.com&#8217; according to him.  I wanted to play with this for myself so I went to SmartGrid.com but didn&#8217;t find anything about a 3D plugin or the demo, so after a bit of googling around I finally found it <a href=" http://ge.ecomagination.com/smartgrid/?c_id=Matter#/augmented_reality">here</a>.</p>
<p>(updated to force aggregation on MXNA)</p>
<p>You print out a piece of paper according to the instructions, hold it up to your web cam, and on your screen it becomes an impressive interactive 3D model you can manipulate with the paper in your hand.  Very, very cool.  Kudos to the team behind this, whoever you are.  Apparently they created it with the <a href="http://www.libspark.org/wiki/saqoosha/FLARToolKit/en">FlarToolKit</a>.  FlarToolKit is an AS3 library based on <a href="http://www.hitl.washington.edu/artoolkit/">ARToolKit</a> / <a href="http://nyatla.jp/nyartoolkit/wiki/index.php">NyARToolKit</a>  I wish GE would have credited the agency who designed and implemented this, or even let us know if it was an internal team.  I don&#8217;t think it takes away from their brand identity, rather it would strengthen it by showing they care about the team(s) behind their presence.  </p>
<p>Update: the video above was removed, but here&#8217;s another one on YouTube demonstrating the GE AR demo:<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/00FGtH5nkxM&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/00FGtH5nkxM&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.anaara.com/archives/125/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Flasher Magazine issue #1</title>
		<link>http://blog.anaara.com/archives/112</link>
		<comments>http://blog.anaara.com/archives/112#comments</comments>
		<pubDate>Tue, 30 Dec 2008 17:20:57 +0000</pubDate>
		<dc:creator>Fuad Kamal</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Catalyst]]></category>
		<category><![CDATA[Post Production]]></category>
		<category><![CDATA[Thermo]]></category>

		<guid isPermaLink="false">http://blog.anaara.com/?p=112</guid>
		<description><![CDATA[Lee Brimelow released the first issue of Flasher Magazine, a video magazine focused on the Flash Platform. Interviews include Ryan Stewart on Flash Catalyst and a &#8216;making of&#8217; with tips on making your on video tutorials at the end. Check it out online or download it to your iPhone for your commute&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://theflashblog.com/?p=589">Lee Brimelow released the first issue of Flasher Magazine</a>, a video magazine focused on the Flash Platform.  Interviews include Ryan Stewart on Flash Catalyst and a &#8216;making of&#8217; with tips on making your on video tutorials at the end.  Check it out online or download it to your iPhone for your commute&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.anaara.com/archives/112/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe MAX &#8217;08 Sneak Peaks on Flickr</title>
		<link>http://blog.anaara.com/archives/105</link>
		<comments>http://blog.anaara.com/archives/105#comments</comments>
		<pubDate>Sat, 06 Dec 2008 16:31:48 +0000</pubDate>
		<dc:creator>Fuad Kamal</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe MAX]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[LightRoom]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Post Production]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Software Architecture]]></category>
		<category><![CDATA[layoff]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[max08]]></category>

		<guid isPermaLink="false">http://blog.anaara.com/?p=105</guid>
		<description><![CDATA[I just posted my photos of the Sneak Peeks session from San Francisco to Flickr from Lightroom 2 using Jeffrey Friedl&#8217;s plug-in again (how useful it is!). The sneak peeks (and other general sessions) opened with a video DJ performance by Mike Relm. While the news of the massive layoffs at Adobe after MAX Milan [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.anaara.com/photos/album/72157610806462060/adobe-max-08-sneak-peeks.html" class="tt-flickr tt-flickr-Thumbnail" title="Adobe MAX '08 Sneak Peeks"><img class="" src="http://farm4.static.flickr.com/3107/3086297041_93a2840097_t.jpg" alt="Adobe MAX '08 Sneak Peeks" width="100" height="67" align='left' /></a> I just<a href="http://www.flickr.com/photos/abunur/sets/72157610806462060/show/"> posted my photos of the Sneak Peeks session from San Francisco to Flickr</a> from Lightroom 2 using <a href="http://regex.info/blog/lightroom-goodies/flickr/">Jeffrey Friedl&#8217;s plug-in</a> again (how useful it is!).  The sneak peeks (and other general sessions) opened with a video DJ performance by <a href="http://www.mikerelm.com">Mike Relm</a>.  While the news of the massive layoffs at Adobe after MAX Milan may seem on the surface as bad news, the fact is that the RIA market and the potential for the Flash platform is stronger than ever.  I am sure that most of the folks leaving Adobe will have exciting ventures to move on to, while Adobe itself will be leaner, meaner, and more primed to deliver some of the most exciting technology to the world.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.anaara.com/archives/105/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe MAX Awards on Flickr</title>
		<link>http://blog.anaara.com/archives/102</link>
		<comments>http://blog.anaara.com/archives/102#comments</comments>
		<pubDate>Fri, 28 Nov 2008 21:01:53 +0000</pubDate>
		<dc:creator>Fuad Kamal</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe MAX]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[LightRoom]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Post Production]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://blog.anaara.com/?p=102</guid>
		<description><![CDATA[I used Jeffrey Friedl&#8217;s plugin for Adobe Lightroom 2 to export my photos of the MAX Awards to Flickr rather than outputting yet another Lightroom web gallery. While the metadata is included in the images, I don&#8217;t have time to link and/or comment each image to the appropriate descriptions which I am sure lots of [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://blog.anaara.com/wp-content/uploads/2008/11/2008nov18_6290.jpg' title='MAX Awards'><img src='http://blog.anaara.com/wp-content/uploads/2008/11/2008nov18_6290.thumbnail.jpg' alt='MAX Awards' /></a>I used <a href="http://regex.info/blog/lightroom-goodies/plugin-installation/">Jeffrey Friedl&#8217;s plugin</a> for Adobe Lightroom 2 to export<a href="http://www.flickr.com/photos/32859801@N02/sets/72157610361839000/show/"> my photos of the MAX Awards to Flickr</a> rather than outputting yet another Lightroom web gallery.  While the metadata is included in the images, I don&#8217;t have time to link and/or comment each image to the appropriate descriptions which I am sure lots of folks have already written.  So hopefully by using flickr not only will they be searchable but also perhaps folks can annotate them.  In case anyone is curious these were shot with a Canon 5D with a EF35mm f/1.4 fixed length lens.  I should be posting the photos from the Sneak Peeks presentation shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.anaara.com/archives/102/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
