<?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>www.flashmobileblog.com</title>
	<atom:link href="http://www.flashmobileblog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flashmobileblog.com</link>
	<description>Mark Doherty - Flash Platform Evangelist, Mobile and Devices</description>
	<lastBuildDate>Fri, 12 Mar 2010 20:47:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flash Player 10.1 &#8211; Camera support with PhoneGap</title>
		<link>http://www.flashmobileblog.com/2010/03/12/flash-player-10-1-camera-support-phonegap/</link>
		<comments>http://www.flashmobileblog.com/2010/03/12/flash-player-10-1-camera-support-phonegap/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 20:46:44 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Mobile Content]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=930</guid>
		<description><![CDATA[
Some of you will remember my earlier blog posts in August 2009 on the HTC Hero, the first Android device to ship with Flash.  The goal of the Android experiment was to learn about the Android SDK, the development process and discover how Flash was enabled in the context of the browser.
As we edge closer [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-12-at-6.37.39-PM.png" rel="lightbox[930]" rel="lightbox[930]"><img class="aligncenter size-large wp-image-936"  src="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-12-at-6.37.39-PM-1024x428.png" alt="" width="608" height="254" /></a></p>
<p>Some of you will remember my earlier <a href="http://www.flashmobileblog.com/2009/08/12/flash-development-with-android-sdk-1-5/">blog posts</a> in August 2009 on the HTC Hero, the first Android device to ship with Flash.  The goal of the Android experiment was to learn about the Android SDK, the development process and discover how Flash was enabled in the context of the browser.</p>
<p>As we edge closer to the release of Flash Player 10.1 in the first half of this year, it seems appropriate to revisit these posts.  In this post you&#8217;ll see that there are hidden benefits to using a common runtime across device platforms, some of which are not that obvious.</p>
<p>The result of my week long investigation is that (using the beta version) I can hook up Flash Player 10.1 to the camera; but that&#8217;s just the start.  Let&#8217;s look at how it&#8217;s done&#8230;</p>
<p><strong>WebView</strong></p>
<p>Those of you familiar with <a onclick="javascript:pageTracker._trackPageview('a/http://www.forum.nokia.com/Technology_Topics/Web_Technologies/Web_Runtime/QuickStart.xhtml');" href="http://www.forum.nokia.com/Technology_Topics/Web_Technologies/Web_Runtime/QuickStart.xhtml">Nokia’s WebRuntime</a> or the iPhone <a onclick="javascript:pageTracker._trackPageview('a/http://developer.apple.com/iPhone/library/documentation/UIKit/Reference/UIWebView_Class/Reference/Reference.html');" href="http://developer.apple.com/iPhone/library/documentation/UIKit/Reference/UIWebView_Class/Reference/Reference.html">UIWebView</a> will recognize <a onclick="javascript:pageTracker._trackPageview('a/http://developer.android.com/reference/android/webkit/WebView.html');" href="http://developer.android.com/reference/android/webkit/WebView.html">WebView</a>, because it’s the same thing.  Really it’s an implementation of the browser made available as a UI component for native applications.  So this means that you can create an application in HTML/JScript and manage the user experience through a native shell.</p>
<p>So why is WebView useful?  Let’s look at the relevant classes:</p>
<ul>
<li><a onclick="javascript:pageTracker._trackPageview('a/http://developer.android.com/reference/android/webkit/WebView.html');" href="http://developer.android.com/reference/android/webkit/WebView.html">WebView</a> – Used to load and display web pages using the built-in device browser and chrome, embedded into your application.</li>
<li><a onclick="javascript:pageTracker._trackPageview('a/http://developer.android.com/reference/android/webkit/WebViewClient.html');" href="http://developer.android.com/reference/android/webkit/WebViewClient.html">WebViewClient</a> – Enables the handling of various browser actions like page loading and error handling.  Overrides the Activity in the built in browser.</li>
<li><a onclick="javascript:pageTracker._trackPageview('a/http://developer.android.com/reference/android/webkit/WebChromeClient.html');" href="http://developer.android.com/reference/android/webkit/WebChromeClient.html">WebChromeClient</a> – Enables the replacement of the browser chrome for events like progress, alerts and for window controls.  Can override the default Chrome.</li>
</ul>
<p>So using a standard WebView I can use the core browser, or if I choose, extend this and replace the chrome and user experience.  If you were reading carefully, inside WebView you will have noticed a method called <em>addJavascriptInterface</em>, and that&#8217;s where it gets interesting because this allows you to create a JavaScript front end to a native class.</p>
<p>In effect you can then write anything you want using native APIs, and add that functionality to WebView in the form of JavaScript interfaces.  Wait!  Doesn&#8217;t Flash have the ability to speak to JavaScript?</p>
<p><strong>Flash Player &#8211; ExternalInterface</strong></p>
<p>This is a long standing <a href="http://blog.deconcept.com/code/externalinterface.html">ExternalInterface API</a> in Flash Player that enables communication with JavaScript in the browser.  It&#8217;s primary purpose is actually to help Flash live alongside HTML, enabling Flash to signal JavaScript and pass messages back and forth.  So in principle, if Flash can communicate with JavaScript and JavaScript with Native code, then we can start adding functionality.</p>
<p>Sounds really simple right?</p>
<p><strong>PhoneGap</strong></p>
<p>The folks at <a href="http://blogs.nitobi.com">Nitobi</a> have already made a huge head start creating <a href="http://phonegap.com/">PhoneGap</a>, an open source set of cross-platform Javascript APIs for HTML applications, just some of which are below.  The <a href="http://phonegap.com/">PhoneGap</a> framework also enables anyone to create their own extensions based on the same principle, and although it&#8217;s quirky, the process is relatively simple.</p>
<p>In the <a href="http://github.com/phonegap/phonegap-android">git repository</a> the team are also hard at work on functionality like Text-to-speech, Camera and File access for Android.  Remember that this is an open source project, it&#8217;s changing just about every day and they need helpers.  What&#8217;s really exciting is that PhoneGap workshops, including in person and online events; so I suggest attending!</p>
<div class="wrap support">
<table class="support" cellspacing="0">
<tbody>
<tr>
<th class="upperleft"></th>
<th>iPhone</th>
<th>Android</th>
<th>Blackberry</th>
</tr>
<tr class="odd top">
<td class="device">Geo Location</td>
<td class="accept">yes</td>
<td class="accept">yes</td>
<td class="accept">yes</td>
</tr>
<tr>
<td class="device">Vibration</td>
<td class="accept">yes</td>
<td class="accept">yes</td>
<td class="accept">yes</td>
</tr>
<tr class="odd">
<td class="device">Accelerometer</td>
<td class="accept">yes</td>
<td class="accept">yes</td>
<td>pending</td>
</tr>
<tr>
<td class="device">Sound</td>
<td class="accept">yes</td>
<td class="accept">yes</td>
<td class="accept">yes</td>
</tr>
<tr class="odd">
<td class="device">Contact Support</td>
<td class="accept">yes</td>
<td>pending</td>
<td class="accept">yes</td>
</tr>
</tbody>
</table>
</div>
<p><strong>Porting PhoneGap<br />
</strong></p>
<p>As you have read previously, we are working to bring Flash Player 10.1, which includes the ExternalInterface, to Android in the next few months.  Now, my Nexus One is an Android 2.1 device, and that creates a slight problem because PhoneGap is only compatible with Android 1.6 APIs.</p>
<p>This means that I had to port code and complete some APIs, in fact I&#8217;ve completed the Contacts API, updated the Camera, Location and Accelerometer APIs and did a spot of bug fixing get things working.  In total this took about five days, to get setup and familiar with the code, and then writing some code for a few hours here and there.  Using Open Source kit often results in these sticky issues, hint, that&#8217;s why Adobe put so much effort into documentation <img src='http://www.flashmobileblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>With the Android SDK it really couldn&#8217;t be simpler to perform tests once I got started, really it couldn&#8217;t be easier to do live debugging on Windows, Mac and Linux; a great SDK from Google.  Once you get into the flow of debugging, coding and testing it&#8217;s all good.</p>
<p>My advice, as always, is to think about functionality that you&#8217;d like to add and go for it.  There are lots of docs out there, and alot of helpful code available for hacking something together.</p>
<p><strong>FlashCam<br />
</strong></p>
<p>After playing with PhoneGap and testing out my changes/addition, I decided to put the framework to the test and build an application.  The first API test was for the Android Camera, and I&#8217;m calling it FlashCam.</p>
<p>With FlashCam I have created a simple stub application that contains a WebView, much like the previous blog post.  This WebView pulls down an HTML page that&#8217;s actually on my <a href="http://www.flashmobileblog.com/swfobject/">blog here</a>, and instantiates the native code and applies the javascript interfaces.  So you heard that right, I&#8217;m able to extend functionality to a live webpage and not just a static local page.</p>
<p><strong>HTML Integration</strong></p>
<p>Embedded in the example HTML file from PhoneGap is a JavaScript function called show_pic().  It simply wraps up another function inside the <a href="http://www.flashmobileblog.com/swfobject/phonegap.js">phonegap.js</a> that is also referenced in the HTML file.  If this function succeeds then dump_pic() is called, if not then the function fail() is called.</p>
<p>The code under getPicture() is really quite complex and beyond the scope of this post, but you can see it <a href="http://github.com/phonegap/phonegap-android/raw/c750109bd76e13f70499a380df450394ba573a9a/framework/src/com/phonegap/CameraPreview.java">here</a>.  Essentially it calls a native function called takePicture() written in Java, and this launches a new Activity (like a Window) with the camera&#8217;s viewfinder surface.</p>
<pre>function show_pic(){
   //Note: This could be simplified, but it's abstracted for safety
   navigator.camera.getPicture(dump_pic, fail, { quality: 50 });
 }
</pre>
<p>When the photo is taken we call dump_pic() and it will contain the Base64 encoded JPEG image data from the camera.  Then, all we need to do is return this to Flash in a callback and in this case &#8220;mySWF&#8221;, which is the name of the <a href="http://www.adobe.com/devnet/flashplayer/articles/swfobject.html">SWFObject</a> embedded in the <a href="http://www.flashmobileblog.com/swfobject/index.html">HTML file</a>.</p>
<pre>function dump_pic(data){
   document.getElementById("mySWF").photoBytes(data);
 }
</pre>
<p>In the running SWF file we have a SimpleButton that can call the show_pic() function, but first we need to add a callback which is analogous to an event listener.  In Javascript we call photoBytes(image_data), and once the ExternalInterface receives this event it will call onReceivedPhoto(image_data):</p>
<pre>public function fl_MouseClickHandler(event:MouseEvent):void{</pre>
<pre>  ExternalInterface.addCallback("photoBytes", onReceivedPhoto);</pre>
<pre>  ExternalInterface.call("show_pic");
}
</pre>
<p>Here in the onReceivedPhoto function we decode the Base64 encoded image_data, which is just a very large string containing the image.  I&#8217;m using the <a href="http://jpauclair.net/2010/01/09/base64-optimized-as3-lib/">Base64 classes</a> provided here by Jean-Philippe Auclair, and merely getting the ByteArray.  I can then use Loader to take these bytes and produce BitmapData and do a little scaling in the imageLoaded handler before adding it to the stage within the holder_mc.</p>
<pre style="text-align: left;">public function onReceivedPhoto(image_data):void {</pre>
<pre style="text-align: left;">  var bytes:ByteArray =  Base64.decode(image_data);</pre>
<pre style="text-align: left;">  imageLoader = new Loader();</pre>
<pre style="text-align: left;">  imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,  imageLoaded);</pre>
<pre style="text-align: left;">  imageLoader.loadBytes(bytes);
}

private function imageLoaded(e:Event):void {

 var image:Bitmap = Bitmap(imageLoader.content);
 var tmpdata = new BitmapData(320, 260);

 var matrix = new Matrix();
 matrix.scale( 320 / image.width, 260 / image.height );

 tmpdata.draw( image.bitmapData, matrix, null, null, null, true ); // smoothing
 image.bitmapData = tmpdata;
 holder_mc.visible=true;
 holder_mc.addChild(image);
}
</pre>
<p>Here is FlashCam in action&#8230;</p>
<p><center><object width="504" height="378"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=10120618&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=10120618&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="504" height="378"></embed></object></center></p>
<p>So that&#8217;s it, it&#8217;s really that simple to hook up native code to Flash Player 10.1.  I suspect that this will also be possible on Palm&#8217;s WebOS, Symbian and Windows Mobile in time.  I&#8217;m also loosely aware of a better bridge to JavaScript in Flash Player 10.1, so this might be a source of further investigation to improve performance for large data sets.</p>
<p>Now it&#8217;s your turn, below are the sources that I&#8217;ve used from PhoneGap with my own additions.  You can also find the Flash FLA and AS files below, note that you will need at least Flash Professional CS4 to open the FLA.</p>
<p><strong>Downloads<br />
</strong></p>
<ul>
<li><a href="http://www.eclipse.org/downloads/">Download Eclipse</a>, or use Flash Builder</li>
<li><a href="http://developer.android.com/sdk/index.html">Download Android SDK</a></li>
<li><a href="https://acrobat.com/#d=AmHH*F3vSEcRqssilIBn2A">Download PhoneGap for Android 2.1</a></li>
<li><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/03/flashcam-src.zip">Download Flash Sources</a></li>
<li><a href="http://labs.adobe.com/downloads/flashplayer10.html">Flash Player 10.1 Beta 3</a></li>
</ul>
<p><strong>Notes:</strong></p>
<ul>
<li>You cannot keep the SWF file within the stub package, they must be in the remote sandbox.</li>
<li>Flash Player security does not allow for localWithTrusted access to local Javascript.</li>
<li>Proportional scaling of images is a pain in the ass in Flash, I&#8217;d like to hear about any libraries for that.</li>
<li>I found <a href="http://mroth.github.com/cameraform/htdocs/test.html">CameraForm</a> useful for producing encoded image data for testing; impossible with HTML5</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/03/12/flash-player-10-1-camera-support-phonegap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Context-aware applications</title>
		<link>http://www.flashmobileblog.com/2010/03/03/context-aware-applications/</link>
		<comments>http://www.flashmobileblog.com/2010/03/03/context-aware-applications/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 14:34:14 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=901</guid>
		<description><![CDATA[
As part of a recent video recording session I created a Geolocation API example, this was to demonstrate just how simple it is to add Context-awareness to your applications.  Now context-awareness is something that I know quite a bit about, it was actually the subject of my dissertation.  Back then I created something called &#8220;BlueSpot&#8221;, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Findme.png" rel="lightbox[901]" rel="lightbox[901]"><img class="aligncenter size-full wp-image-902"  src="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Findme.png" alt="" width="383" height="242" /></a></p>
<p>As part of a recent video recording session I created a <a href="http://www.flashmobileblog.com/2010/02/03/iphone-testing-geolocation-as3-api/">Geolocation API example</a>, this was to demonstrate just how simple it is to add Context-awareness to your applications.  Now context-awareness is something that I know quite a bit about, it was actually the subject of my dissertation.  Back then I created something called &#8220;BlueSpot&#8221;, which was a language and Server-&gt;Mobile Client system that would provide contextual information and learn about you over time.</p>
<p>In practice the idea was quite simple, shops, Bus Stops and even your own home could begin to <del>channel information about you and act accordingly</del> ok ok, it was about mobile advertising.</p>
<p>The idea came from a paper called <a href="http://sandbox.parc.com/want/papers/parctab-wmc-dec94.pdf">Context-aware computing applications (Schilt 94)</a>, and after reading that I decided to build a context-aware application for mobile phones.</p>
<p>The example that I created was centred on a record store that could send messages to you about your favourite artist, and yet generic enough that a bus stop could learn your route and ensure that you get to work on time.  Context-awareness, I wrote:  <em>&#8220;is the sum of inferences derived from physical, temporal, emotional needs mixed with intention&#8221;</em>.  Admittedly I didn&#8217;t really know what I meant at the time, there were simply no real-world examples around.</p>
<p>Though let&#8217;s break it down..</p>
<p><strong>Example: Matt&#8217;s heavy night out</strong></p>
<ul>
<li>Matt arrives home at 3am having had too much to drink on a Thursday night</li>
<li>Like most people in the UK, Matt is in the office normally by 9am</li>
<li>On Friday he doesn&#8217;t have that much to do in the morning</li>
</ul>
<p>So how would a context-aware application help out?  Well given a bit of fine tuning over time, you can imagine that a context-aware application might be able to wake Matt up a little later on Friday.  It may even have ordered a cab, or sent a lovely excuse email to the boss while Matt slept in.</p>
<p>&#8220;Hi, I&#8217;m stuck at the dentist for an hour this morning.  Matt&#8221; &#8211; Obviously the app would change &#8220;dentist&#8221; for a suitable, <em>fresh</em>, excuse each time <img src='http://www.flashmobileblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Context can be fun and engaging, and it can also be extremely useful.  Contexutal awareness (location specifically) has been used in numerous court cases here in the UK, namely the <a href="http://p10.hostingprod.com/@spyblog.org.uk/blog/2008/09/bbc-panorama---gchq-mobile-phone-interception-and-tracking-and-the-omagh-bomb.html">Omagh bombings</a> and in solving the murder of <a href="http://www.guardian.co.uk/uk/2004/aug/15/ukcrime.mobilephones">Damilola Taylor</a>.</p>
<p><strong>New devices, new Contexts</strong></p>
<p>With our continued drive to bring the full Flash Player 10.1 and AIR to devices, including desktops, netbooks, tablets and mobile phones you can imagine new sets of contexts appearing.  Arguably this could just mean that we&#8217;re moving away from consolidated devices with all features, yet consolidation is still happening.  In real terms therefore, your mobile phone will have a camera, but it&#8217;s unlikely to be your camera of choice for certain contexts.</p>
<p>Applications are moving in much the same way, we&#8217;ve seen a trend towards the availability of information across screens and on different devices.  That said, these applications are going to be created with their context in mind.  So we do need to extend the vision for context-aware applications to include the device, it&#8217;s characteristics, and the human interface guidelines set out for the experience.</p>
<p>Google&#8217;s Eric Schmidt unveiled the new Google mantra at the Mobile World Congress of &#8220;Mobile First&#8221;, clearly a sign that creating applications for use in the mobile context will ultimately create better applications that scale across connected devices.  It is in fact the same goal as the Open Screen Project!</p>
<p>Ultimately, context-awareness is not about moving a few buttons around, cutting down on a few components and resizing videos.  It&#8217;s about understanding your users, addressing their needs in the context of the moment and enabling them to gain access to your content from any (relevant) screen.</p>
<p>This is the reason that we added <a href="http://www.flashmobileblog.com/2010/02/03/iphone-testing-geolocation-as3-api/">Geolocation APIs</a> to AIR, iPhone and FL4, because location is a key part of adapting to the users context.</p>
<p><strong>FindMe</strong></p>
<p>So hopefully that little introduction has sparked some imaginative ideas around Context-aware applications.  To that end I have provided below a little example application called FindMe.  It doesn&#8217;t do anything that special, but shows you a Google Map of your location and then allows you to search for places.  To use it you&#8217;ll need to get a <a href="http://code.google.com/apis/maps/signup.html">Google API Key</a>.</p>
<p><center><object width="504" height="672"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=9892510&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=9892510&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="504" height="672"></embed></object></center></p>
<p>You could extend it to track your position over time, or maybe guess where you are based on your past history?</p>
<p>The idea is to get started and learn how to produce applications for users in different contexts, and it would be great to see your ideas and results!</p>
<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/03/findme-GPS.fla_1.zip">Download</a></p>
<p><a href="http://www.adobe.com/devnet/flashplatform/context_apps/">More Info</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/03/03/context-aware-applications/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Helisso &#8211; A Packager for Symbian devices</title>
		<link>http://www.flashmobileblog.com/2010/03/03/helisso-a-packager-for-symbian-devices/</link>
		<comments>http://www.flashmobileblog.com/2010/03/03/helisso-a-packager-for-symbian-devices/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 00:32:45 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Devices]]></category>
		<category><![CDATA[Distributable Player Solution]]></category>
		<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[Industry News]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=889</guid>
		<description><![CDATA[

As some of you know, learning about AIR, AS3, Flex, Flash Catalyst, Flash Builder has been my side-project for a few months now.  As I mentioned in a previous post, it is essential to prepare for the future and invest now in learning new skills.
For me, the best way to learn new things is to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">
<p style="text-align: center;"><img class="aligncenter" src="http://www.justskins.com/wp-content/uploads/2008/11/adobe-air.jpg" alt="" width="336" height="177" /></p>
<p>As some of you know, learning about AIR, AS3, Flex, Flash Catalyst, Flash Builder has been my side-project for a few months now.  As I mentioned in a previous post, it is essential to prepare for the future and invest now in learning new skills.</p>
<p>For me, the best way to learn new things is to create a project that&#8217;s difficult, yet cool enough to keep you interested.  So my first few steps revolved around learning how to use Fireworks, then Flash Catalyst, Flash Builder and ultimately distribute an application using Adobe AIR.</p>
<p><strong>AIR 2.0</strong></p>
<p>One of the amazing new features of <a href="http://labs.adobe.com/technologies/air2/">AIR 2.0</a> is the ability to embed and execute native code from right inside Actionscript, an API called NativeProcess.  This means that you can safely run existing services over the command line, as well as install your own native service components.  AIR 2.0 is in beta right now on Adobe Labs, and is mobile ready as designed so it&#8217;s a great time to get started.</p>
<p>So what would a Platform Evangelist for mobile and devices create?</p>
<h2>Introducing Helisso</h2>
<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-02-at-11.06.33-PM.png" rel="lightbox[889]" rel="lightbox[889]"><img class="aligncenter size-full wp-image-896"  src="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-02-at-11.06.33-PM.png" alt="" width="252" height="271" /></a></p>
<p><strong>What is it?</strong></p>
<ul>
<li>A packaging utility that can produce SIS packages for Symbian devices</li>
<li>It targets the Flash Lite 3.x runtime for Nokia&#8217;s S60 devices</li>
<li>It runs on PC and Mac OS, all versions</li>
</ul>
<p><strong>Details</strong></p>
<ul>
<li>The tool has embedded Python binaries inside, compiled versions of &#8220;<a href="http://code.google.com/p/ensymble/">Ensymble</a>&#8220;</li>
<li>For signing purposes the tool also includes <a href="http://www.openssl.org/">OpenSSL</a> for certificate signing</li>
<li>It is unsupported and without warranty</li>
</ul>
<p><strong>How do I use it?</strong></p>
<p><center><object width="504" height="315"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=9891319&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=9891319&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="504" height="315"></embed></object></center></p>
<p><strong>How do I install it?</strong></p>
<ul>
<li><a href="http://labs.adobe.com/downloads/air2.html">Install AIR2 Beta first</a></li>
<li><a href="https://acrobat.com/#d=yhokR20ihcxTErt2VUhCCw">Windows</a></li>
<li><a href="https://acrobat.com/#d=cswWEOOLItxxlM7E3nFn7g">Mac</a></li>
</ul>
<p>I have been hugely impressed with the capabilities provided by AIR, in this only my first AS3 project.  Looking back on all of the technologies that I have used has really got me excited about AIR applications on Android, and even sprouted a few iPhone applications in advance of that.  Seriously, imagine having all of the power of AIR and this toolchain on mobile phones?</p>
<p>Lastly, a big shout out to Steve Hartley of <a href="http://oppian.com/">Oppian</a>, Jussi Ylänen creator of <a href="http://code.google.com/p/ensymble/">Ensymble</a>, without whom this wouldn&#8217;t have been possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/03/03/helisso-a-packager-for-symbian-devices/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Flash Player 10.1 &#8211; Installations and updates</title>
		<link>http://www.flashmobileblog.com/2010/03/02/flash-player-10-1-installations-and-updates/</link>
		<comments>http://www.flashmobileblog.com/2010/03/02/flash-player-10-1-installations-and-updates/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 00:45:30 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Industry News]]></category>
		<category><![CDATA[Mobile World Congress]]></category>
		<category><![CDATA[Palm]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=864</guid>
		<description><![CDATA[
Flash Player 10.1 will become available in the first half of 2010 for all supported platforms.  In fact, the desktop beta 3 is already looking incredible and proving to be a huge hit with developers testing their content.
One of the most important parts of our work with our Open Screen Project OEM partners is to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-01-at-10.46.14-PM.png" rel="lightbox[864]" rel="lightbox[864]"><img class="aligncenter size-full wp-image-865"  src="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-01-at-10.46.14-PM.png" alt="" width="565" height="272" /></a></p>
<p>Flash Player 10.1 will become available in the first half of 2010 for all supported platforms.  In fact, the <a href="http://labs.adobe.com/downloads/flashplayer10.html">desktop beta 3</a> is already looking incredible and proving to be a huge hit with developers testing their content.</p>
<p>One of the most important parts of our work with our Open Screen Project OEM partners is to enable the seamless discovery, installation and update of Flash Player 10.1 on device platforms.  I know that some have asked questions on this, and so I&#8217;m glad to bring you some responses, if a little late.</p>
<p><!--EndFragment--></p>
<p><strong>Extending the reach</strong></p>
<p>In the &#8220;marketecture&#8221; diagram below you can see that Flash Player 10.1 is extending it&#8217;s platform reach, doubling it in fact.  It&#8217;s worth noting that <a href="http://www.engadget.com/2010/02/26/flash-10-1-snubbing-non-armv7-android-devices-too">recent reports</a> around minimum spec&#8217;s for Flash Player 10.1 are alluded to here also, because working with our partners, we are targeting the latest chipsets available.</p>
<p>To explain, smartphones have a typical lifespan that is less than half that of a desktop computer, and so hardware choices are made by planning for the future.  Over the past few years we have shipped over 1.5Billion devices with Flash Lite using this simple rule.</p>
<p>Therefore the choice to target the ARM Cortex-A8 chipsets will result in greater efficiency, and most importantly a wider range of consistent experiences as uptake grows.  To be clear, that uptake is already happening, and it will expand rapidly just like it does every other year.</p>
<p>It&#8217;s like a Moore&#8217;s Law of mobile phones <img src='http://www.flashmobileblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Yet some devices will not be able to support the full Flash Player 10.1 due to low hardware capabilities, and for many of those devices we have a new version of our optimized runtime, Flash Lite, to fill the gap.  In fact the alpha version has already been spotted running Farmville on Android Eclair <a href="http://www.flashmobileblog.com/2010/02/23/redmond-pie-and-the-farmville-test/">here</a>.</p>
<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-01-at-10.48.51-PM.png" rel="lightbox[864]" rel="lightbox[864]"><img class="aligncenter size-full wp-image-867"  src="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-01-at-10.48.51-PM.png" alt="" width="571" height="337" /></a></p>
<p><strong>Driving the Distribution</strong></p>
<p><span style="font-family: Arial;"><img src="http://www.adobe.com/macromedia/style_guide/images/160x41_Get_Flash_Player.jpg" alt="" width="160" height="41" /></span></p>
<p>Working with our OEM partners we have enabled the Flash Player to be installed in a manner consistent with the desktop experience.  When visiting websites that have Flash content, users can click on the “Flash Player required” images/links provided by content developers to begin the installation process.</p>
<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-01-at-10.49.17-PM.png" rel="lightbox[864]" rel="lightbox[864]"><img class="aligncenter size-full wp-image-868"  src="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-01-at-10.49.17-PM.png" alt="" width="573" height="242" /></a></p>
<p>As with the desktop, the browser then redirects to the <a href="http://get.adobe.com/flashplayer/">Flash Player Download Center</a>, and in the case of mobile phones we pass these requests to the requisite device application stores such as the Android Market.  Today’s application stores have extended abilities to correctly identify devices, and to manage the update of applications and plugins like Flash Player.  Users can of course visit their application store directly if they wish.</p>
<p>In addition, those users purchasing new devices from a retailer may already have Flash Player pre-installed, made available in over-the-air software updates or through the browser directly.</p>
<p><strong>Delivering Enhancements</strong></p>
<p>As with the desktop install process, with each version of the Flash Player various updates are applied throughout it’s lifetime to ensure a high level of quality.  Users can expect these updates to be provided automatically on some platforms via their application store update process, as well as through over-the-air software updates.</p>
<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-01-at-10.49.29-PM.png" rel="lightbox[864]" rel="lightbox[864]"><img class="aligncenter size-full wp-image-870"  src="http://www.flashmobileblog.com/wp-content/uploads/2010/03/Screen-shot-2010-03-01-at-10.49.29-PM.png" alt="" width="585" height="220" /></a></p>
<p>In the example above you can see the update notifications that users are familiar with on Android devices, and it is expected that this will be used for Flash Player 10.1 during it&#8217;s lifetime.  Though I should point out that Nokia have been providing their own update mechanism, directly in the browser for <a href="http://www.flashmobileblog.com/2009/06/18/flash-lite-3-1-update-for-nokia-5800/">some time now</a> with a huge user uptake.</p>
<p>During the past few days Palm have also begun to lay the ground for <a href="http://blog.palm.com/palm/2010/02/whats-new-in-palm-webos-14.html">Flash Player 10.1 support</a> by delivering their software update.</p>
<p><strong>Player Detection</strong></p>
<p>On the desktop today developers use a combination of methods to detect the Flash Player and version.  Recognizing the need for a consistent approach, these same methods can be used on mobile phones in the future.  Adobe recommends <a href="http://www.adobe.com/devnet/flashplayer/articles/swfobject.html">SWFObject2</a>, an open source project that provides cross-browser support.  It is also supported fully within our Creative Suite tools.  SWFObject works across browsers and device platforms to detect the Flash Player and it’s version.  Should an update been required, the tool can enable the ExpressInstall experience or provide fallbacks as required.</p>
<p>Historically I know <a href="http://www.biskero.org">some</a> have invested considerable time and energy in device databases such as WURFL, which helped us to accurately distribute application installers to devices.  With Flash Player 10.1 we need only be concerned about the browser use case, and so I would argue that we do not need to continue this effort long term.</p>
<p>I hope this information will help you build a picture of the huge efforts that our engineering and product teams have made.  The mechanisms for discovery, install and update of the Flash Player 10.1 are a fantastic achievement, even though for some of you these may seem rather obvious.</p>
<p>With the Open Screen Project partners we are literally changing the ecosystem, enabling a more complete and consistent web experience on devices, and driving the industry forward with the Flash Platform in 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/03/02/flash-player-10-1-installations-and-updates/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Acrobat Connect Pro is now on the AppStore</title>
		<link>http://www.flashmobileblog.com/2010/02/25/acrobat-connect-pro-is-now-on-the-appstore/</link>
		<comments>http://www.flashmobileblog.com/2010/02/25/acrobat-connect-pro-is-now-on-the-appstore/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 12:36:39 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Industry News]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=839</guid>
		<description><![CDATA[
One of the tools that I use almost every day at Adobe for screensharing, video conferencing and presentations is called Acrobat Connect Pro.  It has been around for quite some time and today it&#8217;s used globally by organizations to help reduce the travel burden, as well as enabling teams to work together.
Today it is available [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/02/connect7_appicon.png" rel="lightbox[839]" rel="lightbox[839]"><img class="aligncenter size-full wp-image-847"  src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/connect7_appicon.png" alt="" width="393" height="241" /></a></p>
<p style="text-align: left;">One of the tools that I use almost every day at Adobe for screensharing, video conferencing and presentations is called Acrobat Connect Pro.  It has been around for quite some time and today it&#8217;s used globally by organizations to help reduce the travel burden, as well as enabling teams to work together.</p>
<p style="text-align: left;">Today it is available for the Mac and PC and is created using the Flash Platform, with the addition of some extra features for screen sharing built into the Connect Addin for the desktop.</p>
<p style="text-align: left;">The great news is that yesterday the team <a href="http://itunes.apple.com/us/app/id338279127?mt=8">launched</a> their first version of Connect on mobile devices, starting with the iPhone.  It is available for free now on the AppStore, although of course you will need an account and you can sign up for a 30 day trial for free over here.</p>
<p style="text-align: left;"><strong>Features:</strong></p>
<ul>
<li>Attend Connect Pro Meetings with integrated conference call or Voice over IP audio.</li>
<li>See who has joined the meeting, and their role (host, presenter, or attendee)</li>
<li>View presentations, PDF documents, videos, and screen sharing provided by the meeting organizer.</li>
<li>Rotate, pan, and zoom to choose your personal &#8216;best view&#8217; of shared content</li>
<li>View webcamera broadcasts from unlimited live camera feeds provided in the meeting</li>
<li>Participate in Chat conversations throughout the meeting.</li>
<li>Join meetings attended by users on virtually any computer system: Mac, Windows, Linux, Solaris and now iPhone.</li>
</ul>
<p style="text-align: left;"><strong>Built using Flash Professional CS5</strong></p>
<p style="text-align: left;">Acrobat Connect for the iPhone was created using the Adobe Flash Platform, and specifically with AIR 2.0 APIs.  The team were able to create their contextual application using Flash Professional CS5 and simply package the application using the upcoming tool!</p>
<p style="text-align: left;">I know that many of you have wondered about building out complex applications such as this, and so I think this is a great demonstration of what you can achieve using both AIR and the new Flash Pro tool.</p>
<p style="text-align: left;">In addition, we have already shown Acrobat Connect running on Android devices and that was achieved by simply repackaging the code.  The team made some great choices with regards to their design that have made it possible for the UI to lay itself out dynamically for different screen sizes and orientations.  Some of the mobile developers among you will probably have played with these concepts before, and the rule has always been to ensure that you bake these into your design and development from the start.</p>
<p style="text-align: left;">As you can see the experience is really fluid and great for the end user.  I&#8217;ve been able to connect seamlessly to the Connect session and broadcast my iTunes library in coverflow view <img src='http://www.flashmobileblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<a href='http://www.flashmobileblog.com/2010/02/25/acrobat-connect-pro-is-now-on-the-appstore/connect7_appicon/' ><img width="150" height="92" src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/connect7_appicon-150x92.png" class="attachment-thumbnail" alt="" title="connect7_appicon" /></a>
<a href='http://www.flashmobileblog.com/2010/02/25/acrobat-connect-pro-is-now-on-the-appstore/screen-shot-2010-02-25-at-11-00-22-am/' ><img width="150" height="96" src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/Screen-shot-2010-02-25-at-11.00.22-AM-150x96.png" class="attachment-thumbnail" alt="" title="Screen shot 2010-02-25 at 11.00.22 AM" /></a>
<a href='http://www.flashmobileblog.com/2010/02/25/acrobat-connect-pro-is-now-on-the-appstore/img_0144/' ><img width="100" height="150" src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/IMG_0144-100x150.png" class="attachment-thumbnail" alt="" title="IMG_0144" /></a>
<a href='http://www.flashmobileblog.com/2010/02/25/acrobat-connect-pro-is-now-on-the-appstore/img_0145/' ><img width="100" height="150" src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/IMG_0145-100x150.png" class="attachment-thumbnail" alt="" title="IMG_0145" /></a>
<a href='http://www.flashmobileblog.com/2010/02/25/acrobat-connect-pro-is-now-on-the-appstore/img_0146/' ><img width="100" height="150" src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/IMG_0146-100x150.png" class="attachment-thumbnail" alt="" title="IMG_0146" /></a>
<a href='http://www.flashmobileblog.com/2010/02/25/acrobat-connect-pro-is-now-on-the-appstore/img_0149/' ><img width="100" height="150" src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/IMG_0149-100x150.png" class="attachment-thumbnail" alt="" title="IMG_0149" /></a>
<a href='http://www.flashmobileblog.com/2010/02/25/acrobat-connect-pro-is-now-on-the-appstore/img_0150/' ><img width="100" height="150" src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/IMG_0150-100x150.png" class="attachment-thumbnail" alt="" title="IMG_0150" /></a>
<a href='http://www.flashmobileblog.com/2010/02/25/acrobat-connect-pro-is-now-on-the-appstore/img_0152/' ><img width="100" height="150" src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/IMG_0152-100x150.png" class="attachment-thumbnail" alt="" title="IMG_0152" /></a>

<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/02/25/acrobat-connect-pro-is-now-on-the-appstore/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Battery Performance with Flash Player 10.1 on Nexus One</title>
		<link>http://www.flashmobileblog.com/2010/02/24/battery-performance-with-flash-player-10-1-on-nexus-one/</link>
		<comments>http://www.flashmobileblog.com/2010/02/24/battery-performance-with-flash-player-10-1-on-nexus-one/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 18:02:05 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=797</guid>
		<description><![CDATA[It appears that there has been some confusion from the community at large surrounding battery performance.  This was caused by my colleague Michael Chaize publishing an amazing video of Flash Player 10.1 demos on Vimeo.
Bloggers from Daring Fireball and Macgasm have spent a little more time than expected studying the battery indicators, as opposed [...]]]></description>
			<content:encoded><![CDATA[<p>It appears that there has been some confusion from the community at large surrounding battery performance.  This was caused by my colleague Michael Chaize publishing an amazing video of Flash Player 10.1 demos on <a href="http://vimeo.com/9596010">Vimeo</a>.</p>
<p>Bloggers from <a href="http://daringfireball.net/linked/2010/02/23/flash-android">Daring Fireball</a> and <a href="http://www.macgasm.net/2010/02/23/video-proof-that-flash-kills-battery-life-evidence-from-a-nexus-one/">Macgasm</a> have spent a little more time than expected studying the battery indicators, as opposed to the incredible advancements in web browsing for mobile phones, netbooks and tablets.  To be clear, the battery indicator changes being discussed are a function of video editing and Android design.</p>
<p>Typically these indicators are 4 step graphics, so the indicator will drop by one step for every 25% battery used.  If Michael shows his phone with 50% full then this could be 51% in reality, using ~2% would then appear like a 25% loss.  It&#8217;s just a graphic, and below Michael has provided more concrete results from the phone management UI.</p>
<p><strong>That said, let&#8217;s look at some mobile facts for fun.</strong></p>
<p>Mobile phones are complicated mini-computers with extremely complex chip designs all working to produce a rich experience with maximum efficiency.  It should be no surprise that using 3G, WIFI, Bluetooth, GPS or leaving a browser window open and showing even basic HTML can drain your battery.  Additionally, distance from a cell tower is also a potential pitfall and some the travellers among you will note differing battery life in various cities, countries and networks.</p>
<p>For many years we have been working within these constraints, probably without many of you realizing it.  Remember that our mobile optimized runtime Flash Lite (shipped on over a Billion phones) and has been used extensively for User Interfaces on mobile phones from Samsung, Sony Ericsson and LG, so this is something that we know quite a bit about.</p>
<p>During our testing of Flash Player 10.1 we have baseline tests against the following use cases (among others), and using a multi-meter to ensure that your content runs with acceptable battery consumption.  We&#8217;re also testing against the web on sites like youtube, blip.tv and others with great performance reaching to hours of playback on the Nexus One.</p>
<p>Here are the actual combinations of test scenarios carried out at our offices, of course the real world result for you will be different:</p>
<ul>
<li>Idle &#8211; No 3G, Wifi, Bluetooth, IR</li>
<li>Idle &#8211; No 3G, Wifi, Bluetooth, IR + backlight ON</li>
<li>3G enabled &#8211; Wifi, Bluetooth, IR off</li>
<li>WIFI + vanilla HTML.   &#8217;simple.html&#8217;</li>
<li>3G + vanilla HTML.   &#8217;simple.html&#8217;</li>
<li>3G + vanilla HTML file + swf:  &#8217;simple-swf.html&#8217;</li>
</ul>
<p>To demonstrate battery performance on the Nexus One here is a recording of a large movie playing on Youtube.  It lasts for some 17 minutes with little effect on the battery indicator, and just to ensure fairness I have included the battery usage chart data from the Android OS.  Our own tests show that video can be played for well over 3Hours over WIFI from youtube in H.264 (Baseline 1.2).</p>
<p><strong>Note &#8211; This data is for a single website, below you can see that tv.adobe.com achieves better performance in the real world.<br />
</strong></p>
<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="504" height="378" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=9705969&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="504" height="378" src="http://vimeo.com/moogaloop.swf?clip_id=9705969&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></center></p>
<p>The resulting battery usage is a mere 6% for the Browser which totalled 199Mb of data received:</p>
<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/02/Screen-shot-2010-02-24-at-5.44.35-PM.png" rel="lightbox[797]" rel="lightbox[797]"><img class="aligncenter size-medium wp-image-818"  src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/Screen-shot-2010-02-24-at-5.44.35-PM-300x238.png" alt="" width="363" height="287" /></a></p>
<p>Update:<br />
My colleague Michael Chaize has also completed his own tests shown below.  In addition to my own basic test he demonstrates the ability to play videos and gaming for over 4 hours and five hours respectively.</p>
<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="504" height="284" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=9724682&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="504" height="284" src="http://vimeo.com/moogaloop.swf?clip_id=9724682&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></center></p>
<p style="text-align: left;"><strong>Content Optimization</strong></p>
<p style="text-align: left;">Without optimizing your applications, Flash or otherwise, they can perform badly on any platform this is 101 for any software developer.  Our investments with Flash Player 10.1 and AIR are designed to provide the best possible results for the majority of existing content for web enablement on devices.</p>
<p style="text-align: left;">However, all of us will have to consider the user experience for our new mobile users and test effectively.  Those of you that have created native or Flash Lite applications will know some of the tricks of the trade already, but nothing beats practice and real-world testing.</p>
<p style="text-align: left;">Thibaut (from the video above) has in fact written a fantastic document to lead you through the first steps in <a href="http://help.adobe.com/en_US/as3/mobile/index.html">optimizing your content</a>.  Most of this is applicable to any of the Flash Platform runtimes, and certainly the desktop/AIR/netbooks/tablets etc.</p>
<p style="text-align: left;">Mike Chambers has also completed a great study on the <a href="http://www.mikechambers.com/blog/2010/02/22/flash-player-content-mouse-events-and-touch-input/">Touch and Mouse events</a>, and in particular how you can begin to optimize your content for this huge array of new platforms; and ultimately customers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/02/24/battery-performance-with-flash-player-10-1-on-nexus-one/feed/</wfw:commentRss>
		<slash:comments>133</slash:comments>
		</item>
		<item>
		<title>Redmond Pie and the &#8220;Farmville Test&#8221;</title>
		<link>http://www.flashmobileblog.com/2010/02/23/redmond-pie-and-the-farmville-test/</link>
		<comments>http://www.flashmobileblog.com/2010/02/23/redmond-pie-and-the-farmville-test/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 23:06:38 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Industry News]]></category>
		<category><![CDATA[Mobile World Congress]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=785</guid>
		<description><![CDATA[
Many of you may have read that the HTC Desire ROM has become &#8220;available&#8221; via Modaco Forums and their chef Paul.  As reported Taimur from Remond Pie has uploaded a video demo of the HTC Nexus running Farmville within Facebook, and as he discovered, it wasn&#8217;t quite baked for mobile devices.
The story is a little [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://tctechcrunch.files.wordpress.com/2010/02/farmvillephone.png" alt="" width="406" height="232" /></p>
<p style="text-align: left;">Many of you may have read that the HTC Desire ROM has become &#8220;available&#8221; via <a href="http://android.modaco.com/content/google-nexus-one-nexusone-modaco-com/303009/23-feb-alpha-9-modaco-custom-rom-with-htc-sense-desire-rom-now-with-online-kitchen/">Modaco Forums</a> and their chef Paul.  As <a href="http://techcrunch.com/2010/02/22/farmville-nexus-one/">reported</a> Taimur from Remond Pie has uploaded a <a href="http://www.redmondpie.com/farmville-on-nexus-one-flash-10.1-demo-on-android-2.1-9140472/">video demo</a> of the HTC Nexus running Farmville within Facebook, and as he discovered, it wasn&#8217;t quite baked for mobile devices.</p>
<p>The story is a little more complex than simply being an <span style="text-decoration: underline;">alpha build</span> running content that hasn&#8217;t been optimized for small screens; although that&#8217;s true as well.</p>
<p>At Mobile World Congress Adobe demonstrated the full Flash Player (Flash Player 10.1) running on Android, Palm webOS and other smartphone platforms.  As a high end smartphone, the HTC Desire will ultimately support Flash Player 10.1 when it becomes available in the first half of 2010.  As a user you will be able to upgrade the free player over the air with a simple software update.</p>
<p>Currently however, the HTC Desire ROM (shown below) is running a new alpha version of Flash Lite that supports AS3, <strong><span style="text-decoration: underline;">it is not Flash Player 10.1</span></strong>.</p>
<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/r9whFavOb2U&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/r9whFavOb2U&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></center><br />
Though as you can see from this early preview, crops can be sewn and sheep can be bought none-the-less.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/02/23/redmond-pie-and-the-farmville-test/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s Eric Schmidt and Eric Tseng show Flash Player running on Nexus One</title>
		<link>http://www.flashmobileblog.com/2010/02/23/googles-eric-schmidt-and-eric-tseng-show-flash-player-running-on-nexus-one/</link>
		<comments>http://www.flashmobileblog.com/2010/02/23/googles-eric-schmidt-and-eric-tseng-show-flash-player-running-on-nexus-one/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 22:20:17 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Mobile World Congress]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=779</guid>
		<description><![CDATA[
At the Mobile World Congress 2010 Google&#8217;s CEO Eric Schmidt discusses the incredible browsing experiences coming to the Android platform.  As EricT states, a critical component currently missing on mobile devices is Flash Player.  As members of the Open Screen Project we are working with Google to bring Flash Player and AIR to Android [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://weblogs.cltv.com/business/realestate/homesplus/google.jpg" alt="" width="442" height="176" /></p>
<p>At the Mobile World Congress 2010 Google&#8217;s CEO Eric Schmidt discusses the incredible browsing experiences coming to the Android platform.  As EricT states, a critical component currently missing on mobile devices is Flash Player.  As members of the Open Screen Project we are working with Google to bring Flash Player and AIR to Android devices, enabling an open ecosystem connecting developers with consumers.</p>
<p>Of course the demo demons were in attendance, but ultimately Eric was able to show video and gaming experiences running beautifully on Android.  Of course gaming experiences on the web are largely created in Flash, in fact some 75% of online games run on the Flash Platform.</p>
<p>Later in the year it will be possible to mix and match your distribution and monetization models using Adobe AIR on Android, and repackage those applications for Apple devices targeting the AppStore.</p>
<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/8nV--8JTceQ&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/8nV--8JTceQ&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/02/23/googles-eric-schmidt-and-eric-tseng-show-flash-player-running-on-nexus-one/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mobile World Congress 2010: Roundup</title>
		<link>http://www.flashmobileblog.com/2010/02/23/mobile-world-congress-2010-roundup/</link>
		<comments>http://www.flashmobileblog.com/2010/02/23/mobile-world-congress-2010-roundup/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 14:17:03 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Industry News]]></category>
		<category><![CDATA[Mobile World Congress]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=766</guid>
		<description><![CDATA[
I arrived back from this years Mobile World Congress far more exhausting than normal, hence the complete lack of blogging during the event; apologies for that.  So here I will aim to roundup the various announcements and hopefully add to the huge amount of blogging and articles written during the event.
In general this years event [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/02/Screen-shot-2010-02-22-at-6.43.52-PM.png" rel="lightbox[766]" rel="lightbox[766]"><img class="aligncenter size-full wp-image-767"  src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/Screen-shot-2010-02-22-at-6.43.52-PM.png" alt="" width="440" height="98" /></a></p>
<p>I arrived back from this years Mobile World Congress far more exhausting than normal, hence the complete lack of blogging during the event; apologies for that.  So here I will aim to roundup the various announcements and hopefully add to the huge amount of blogging and articles written during the event.</p>
<p>In general this years event had a more positive mood with attendees and exhibitors all looking to the future of mobile and devices.  New this year was the inclusion of Tablet and Netbook devices in the show many of which use the same hardware as high end smartphones.  Our goal is to enable the Flash Platform to extend to these devices too, and so it should be no surprise that we had many partners previewing Flash experiences on their hardware, more on that later.</p>
<p><img class="alignnone" src="https://www.adobe.com/special/microsite/openscreenproject/images/body/osp_logo.gif" alt="" width="207" height="56" /></p>
<h2><strong>Open Screen Project Update &#8211; <em>&#8220;Connecting Developers with Consumers&#8221;</em></strong></p>
<p><strong> </strong></h2>
<p>At the conference we announced that we now have some 70 partners, with new additions like Burda Group, RTL, Stern, Addicting Games and EPIX on the content partner side.  New technology partners include Freescale, MIPS, Vizio, Symbian, Imagination Technologies and Sonic.  In terms of scale we have created one of the largest initiatives in the mobile ecosystem to build a foundation for the distribution of the Flash Platform across devices.  Of course for the community much of this will appear like marketing, but rest assured that there are many hundreds of engineers working globally to bring Flash to a huge array of platforms.</p>
<p>As we begin to wrap up the Flash Player integration efforts our focus has widened to include enablement for web content.  In total we&#8217;re working with over 140 content provider partners, owners of the largest and most popular sites that use Flash today.  At MWC 2010 we showed applications and websites optimized for mobile viewing from the following:</p>
<p><strong>Animation &#8211; </strong>Angry Alien Productions</p>
<p><strong>Branded</strong> &#8211; AOL Mobile, BBC iPlayer, ESPN, Sony Pictures, TBS, TNT, Warner Brothers</p>
<p><strong>Gaming</strong> &#8211; Addicting Games, Armor Games, Kongregate, Miniclip.com, Nick.com, South Park Studios</p>
<p><strong>News</strong> &#8211; BBC News, The New York Times Reader App, The Wall Street Journal Online</p>
<p><strong>Video</strong> &#8211; AlloCiné, Amazon.com, AOL Moviefone, Canoe, Dailymotion, Disney, Epix, GMX, IGN, Kid Rock (Atlantic Records), Lavanguardia, National Geographic, Mobile YouTube, Studio1290 Mobile, STV Player Mobile, Ustream, Vimeo, Yahoo! Movies</p>
<p>As you can see the list is HUGE and this represents a small part of the overall efforts to bring the full web to devices using Flash Player.  For the Open Screen Project to be truly successful we need our content providers and developers to play their part, as you can see, this effort is very much underway.</p>
<p>Of particular note we also joined the LiMo Foundation to deliver the Flash Platform on their Linux based devices.  It&#8217;s an exciting announcement because it demonstrates that the Open Screen Project and other industry initiatives are aligned with a goal to the delivery of consistent and open platforms for developers and consumers.</p>
<h2><strong>Flash Player 10.1</strong></h2>
<p>On our stand at the Mobile World Congress we showed a beta version of Flash Player running on the Motorola Droid, Palm Pre and the Google Nexus One.  The applications above were running incredibly well and attendees were very impressed with the performance and fluidity of the experience, Flash was built for the web and on devices it just makes sense.  The most important addition to the mobile experience was the ability to playback Flash content in full screen mode, enabled by these powerful webkit browsers.</p>
<p>Of course the fun part for attendees was in visiting their own sites to understand the sheer power of the new player.  In all, the thousands of attendees that visited our stand were extremely excited about being able to browse more of the web on their devices.  For many the call to action was &#8220;How can I get started?&#8221;, well Thibaut has been crafting a great set of resources with our engineering teams <a href="http://help.adobe.com/en_US/as3/mobile/index.html">here</a>.  The first step however is to create a plan of action, begin to plan a suitable user experience for mobile devices; and in particular those based on touch.</p>
<p>With Flash Player 10.1 we have worked to enable the same web content to run using less memory, yet with higher performance.  The results are really incredible and should see a significant improvement, not only for the mobile devices but also for desktop computers and application running on Adobe AIR 2.0.  Remember, we can only do so much and as a Flash Developer you have a role to play in ensuring that your content works well on these new devices.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.flash3v.com/blog/wp-content/uploads/2009/11/flash_player_mem_footprint.png" alt="" width="345" height="226" /></p>
<p>For fun, my colleague Michael Chaize has created his own tour of the web on the Nexus One, he even pushes out all the stops by visiting a site based on Papervision!</p>
<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="504" height="284" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=9596010&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="504" height="284" src="http://vimeo.com/moogaloop.swf?clip_id=9596010&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></center></p>
<p>In terms of availability we have required some significant patches to Android and to the Web OS to support the installation of the Flash Player over-the-air.  We expect these new updates to become available soon to end users, at which time the Flash Player will become available either via their respective Application Stores, within the software updates or both.  In either case the installation of the Flash Player will be seamless and ongoing we expect to see significant traction as we move forward.</p>
<h2><strong>Adobe AIR on devices</strong></h2>
<p><img src="http://blogs.ft.com/techblog/files/2010/02/adobeair.jpg" alt="" width="569" height="206" /></p>
<p>One of the big pieces of news at Mobile World Congress was the announcement of Adobe AIR on Android, and the tie-in with our Adobe Packager for the iPhone.  At MAX 2009 we demonstrated the creation of iPhone applications using the upcoming Flash Professional CS5, and the twist is that these applications are based on AIR 2.0.  To demonstrate the possibilities we showed some of the same applications created in Flash Professional CS5 that are available on the AppStore today, running on Android devices using Adobe AIR.  The workflow couldn&#8217;t be simpler, it&#8217;s simply a repackaging effort with a little UX tweaking for basic layout and hardware capabilities.</p>
<p>Here is a nice video from Kevin Hoyt showing off Adobe AIR for Android:</p>
<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="650" height="388" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="FlashVars" value="fileID=5135&amp;context=76&amp;embeded=true&amp;environment=production" /><param name="src" value="http://tv.adobe.com/assets//swf/player.swf" /><param name="flashvars" value="fileID=5135&amp;context=76&amp;embeded=true&amp;environment=production" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="650" height="388" src="http://tv.adobe.com/assets//swf/player.swf" flashvars="fileID=5135&amp;context=76&amp;embeded=true&amp;environment=production" allowscriptaccess="always" allowfullscreen="true"></embed></object></center></p>
<p>Write One Run Everywhere? &#8211; In many ways the answer is yes, given a few measured choices.  We have made it fantastically simple to reach across devices and platforms with Flash and AIR, and so the same code can now run on a huge array of phones, desktop computers and consumer electronics.  Using the same assets and principle it will be extremely simple to tweak applications for varying screen sizes, input methods and user experiences.</p>
<p>So now our &#8220;marketecture&#8221; diagram for Applications looks like this (2010 is on the right):</p>
<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/02/Screen-shot-2010-02-23-at-1.47.05-PM.png" rel="lightbox[766]" rel="lightbox[766]"><img class="aligncenter size-full wp-image-769"  src="http://www.flashmobileblog.com/wp-content/uploads/2010/02/Screen-shot-2010-02-23-at-1.47.05-PM.png" alt="" width="461" height="261" /></a></p>
<p>Note that I&#8217;ve called out iPhone OS separately, this is because you will be required to use Actionscript 3 to target the iPhone.  Once you package an application it will not be possible to process additional SWF files containing actionscript, such as those stored on the web, due to Apple&#8217;s restrictions around interpreted code.</p>
<p>Android, by comparison, is totally open and AIR runs beautifully on the platform; and dare I say a little faster on the Moto Droid, a device with iPhone 3Gs hardware.  We plan to bring AIR to Android devices later in the year, and in the meantime you can get started by creating you content for Flash Player 10.1 for the desktop.</p>
<p>When Flash Professional CS5 comes to market you will be able to create iPhone applications that can easily be packaged for Android! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/02/23/mobile-world-congress-2010-roundup/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>iPhone stats from the Flash Player download center</title>
		<link>http://www.flashmobileblog.com/2010/02/06/iphone-stats-from-the-flash-player-download-center/</link>
		<comments>http://www.flashmobileblog.com/2010/02/06/iphone-stats-from-the-flash-player-download-center/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 19:07:07 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Devices]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Industry News]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=759</guid>
		<description><![CDATA[
A little while ago I blogged about our new iPhone page at the Flash Player download center, the same site where hundreds of millions of users download and upgrade Flash every year.
We were amazed by the numbers of hits received from iPhone OS devices, from users seeking the Flash Player to play back rich content [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="PDC-iPhone" src="http://www.flashmobileblog.com/wp-content/uploads/2009/10/photo.jpg" alt="" width="216" height="324" /></p>
<p>A little while ago I blogged about our new <a href="http://www.flashmobileblog.com/2009/10/13/our-new-iphone-page-at-adobe-com/">iPhone page</a> at the Flash Player download center, the same site where hundreds of millions of users download and upgrade Flash every year.</p>
<p>We were amazed by the numbers of hits received from iPhone OS devices, from users seeking the Flash Player to play back rich content from their favourite sites.  Users that, before we created the special page, had no idea that Apple do not want them viewing the Internet as they see it today.</p>
<p>It has now been <a href="http://www.sfgate.com/cgi-bin/blogs/techchron/detail?&amp;entry_id=56724">reported</a> that over 7 million attempts were made by users to download the player by December 2009, that&#8217;s up from 3 million attempts in June 2009.</p>
<p>Incredible numbers I think you&#8217;ll agree!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/02/06/iphone-stats-from-the-flash-player-download-center/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>
