<?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>Ludicrous Software</title>
	<atom:link href="http://www.ludicroussoftware.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ludicroussoftware.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 12 Jun 2010 18:26:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Knight&#8217;s Puzzle Free in the App Store</title>
		<link>http://www.ludicroussoftware.com/knights-puzzle/knights-puzzle-free-in-the-app-store/</link>
		<comments>http://www.ludicroussoftware.com/knights-puzzle/knights-puzzle-free-in-the-app-store/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 01:34:26 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[Corona]]></category>
		<category><![CDATA[Knight's Puzzle]]></category>

		<guid isPermaLink="false">http://www.ludicroussoftware.com/?p=264</guid>
		<description><![CDATA[Want to play Knight's Puzzle but can't bear to part with 99 cents? Your solution is at hand!]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://itunes.apple.com/us/app/knights-puzzle-free/id376023820">free version of Knight&#8217;s Puzzle</a> is now available in the App Store. This version has only the 5 x 5 game board and contains ads. The advertising was implemented using the method detailed my previous post about <a href="http://www.ludicroussoftware.com/corona/admob-ad-support-in-corona/">Admob ad support in Corona apps</a>.</p>
<p>(Of course, if ads aren&#8217;t you&#8217;re thing, you&#8217;re more than welcome to <a href="http://itunes.apple.com/us/app/knights-puzzle/id371394053?mt=8">purchase the full version of Knight&#8217;s Puzzle</a>, which includes the 7 x 7 game board and none of that pesky advertising. <img src='http://www.ludicroussoftware.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ludicroussoftware.com/knights-puzzle/knights-puzzle-free-in-the-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Admob ad support in Corona</title>
		<link>http://www.ludicroussoftware.com/corona/admob-ad-support-in-corona/</link>
		<comments>http://www.ludicroussoftware.com/corona/admob-ad-support-in-corona/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 15:04:17 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[Corona]]></category>
		<category><![CDATA[Advertising]]></category>

		<guid isPermaLink="false">http://www.ludicroussoftware.com/?p=250</guid>
		<description><![CDATA[Using native.webPopUp() in fun and exciting ways!]]></description>
			<content:encoded><![CDATA[<p><em>(<strong>June 3, 2010 Update:</strong> <a href="http://www.mattpringle.co.uk">Matt Pringle</a> sent me an email to let me know that the sample files I provide in this post don&#8217;t work with beta 5 of the Corona SDK. It turns out that as a result of some bugs that were fixed in recently-released beta 5 of the Corona SDK, it&#8217;s necessary to include the following line of code in the html document:<br />
<code><br />
&lt;meta name=&quot;viewport&quot; content=&quot;width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;&quot;/&gt;<br />
</code></p>
<p>I&#8217;ve updated the html file in the zip package to include this code.)</em></p>
<p>Yesterday I spent some time trying to integrate Admob ads into a Corona application, and I thought I&#8217;d share the code required to make it work.<br />
I&#8217;ve implemented this in a free version of Knight&#8217;s Puzzle that I&#8217;ve submitted for approval to the App Store, so there should be a real-life working version of this out there soon (knock on wood). There&#8217;s a bit of hackery involved since the Corona SDK does not have native support for any kind of ad model at the moment, but the results are quite good and the actual process is quite simple. You can <a href="http://www.ludicroussoftware.com/wp-content/uploads/2010/06/AdMob.zip">download this zip file</a> to see the code required to make this work.</p>
<p>Right now, Admob provides support for two methods of serving ads: one is Objective-C-based, for apps built in Xcode, and the other is html/javascript-based, for web apps. This method actually uses the html/js code, even though your app may be distributed through the App Store. In a nutshell, the method is to display html ads inside your Corona app using the native.webPopUp() method. A new feature in the Corona SDK is the ability to specify a custom size/location for the web pop-up, rather than having it take over the entire screen. We can use this feature to create a pop-up that is the same size as the mobile ads that Admob serves, and position it wherever we want in our app.</p>
<p>To get this working, you&#8217;ll need to sign up with Admob and create a new &#8216;site or app&#8217; &#8211; you want to create is an &#8216;iPhone web&#8217; site/app. Once you&#8217;ve done that, Admob will provide you with a chunk of html code that you&#8217;ll need &#8211; I won&#8217;t walk you through this process, but it&#8217;s very straightforward. You can see an example of the code that&#8217;s generated in the html document that&#8217;s in the zip package; the only thing that will be different for you is the value of &#8216;pubid&#8217; (I&#8217;ve removed mine).</p>
<p>Next, the code to create the actual web pop-up and to handle the &#8216;clicks&#8217; on the ad. This is all contained in the main.lua file provided in the zip package:</p>
<div class="codeBlock">
<code>
<pre>local adSpace

local function showAd(event)
     -- Is the url a remote call?
     if string.find(event.url, "http://", 1, false) == 1 then
          -- Is it a call to the admob server?
          if string.find(event.url, "c.admob.com", 1, false) == nil then
               adSpace.url = event.url
          else
               -- an actual click on an ad, so open in Safari
               system.openURL(event.url)
          end
     else
          adSpace.url = event.url
     end
end

adSpace = native.showWebPopup(0, 432, 320, 48, "ad.html", {baseUrl = system.ResourceDirectory, urlRequest = showAd})
</pre>
<p></code>
</div>
<p>The basic code to create the web pop-up and show an ad is the very last line. It creates a pop-up that&#8217;s 320 pixels wide by 48 pixels high, which is the size of an Admob iPhone web ad, and positions it at the very bottom of the screen. The return value of the native.webPopUp() call is stored in the <code>adSpace</code> variable for later reference. It displays the <code>ad.html</code> file in the pop-up. The <code>baseUrl</code> value is set so that the app knows to look for the html document in the app bundle. The <code>urlRequest</code> value is where the hackery comes in.</p>
<p>If <code>urlRequest</code> were not set, this would all work fine and the ad would load as it should. However, when the user clicked on the ad, the resulting web page would be opened inside the pop-up, which is only 48 pixels high. This, as you can imagine, is not an optimal browsing experience. So, the <code>showAd</code> function is called to see whether the requested url needs to be loaded in Safari, or whether it can be loaded inside the pop-up.</p>
<p>The basic logic is to check whether the url requested is a remote url (begins with <code>http://</code>). If it is, the next check is whether the request is going to <code>c.admob.com</code>; if it is, then it&#8217;s a request for the ad, and so the url gets sent back to the pop-up. If it&#8217;s not going to c.admob.com, then it&#8217;s an actual click on an ad, so the url gets redirected to Safari, using <code>system.openURL(event.url)</code>. Finally, if the requested url does not being with <code>http://</code>, we can redirect the url back to the pop-up.</p>
<p>The code is generally pretty straightforward, so you shouldn&#8217;t have any problems following it. One neat thing I discovered while figuring this out, which I don&#8217;t think is in the Corona documentation, is that after you&#8217;ve created a web pop-up, you can provide a new url to that pop-up, rather than having to dismiss the current one and create a new one.</p>
<p>Also, although I used Admob for this example, the basic concept should work fine with any ad provider that serves mobile ads. You would have to modify the urlRequest listener to account for the different urls, and the size of the web pop-up would have to change, but those are pretty basic changes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ludicroussoftware.com/corona/admob-ad-support-in-corona/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Ludicrous Software in the App Store</title>
		<link>http://www.ludicroussoftware.com/uncategorized/ludicrous-software-in-the-app-store/</link>
		<comments>http://www.ludicroussoftware.com/uncategorized/ludicrous-software-in-the-app-store/#comments</comments>
		<pubDate>Sat, 29 May 2010 14:49:47 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ludicroussoftware.com/?p=244</guid>
		<description><![CDATA[I&#8217;m happy to announce that as of a couple of weeks ago (yes, I know I&#8217;m writing this a little late &#8211; it&#8217;s been a crazy month!), two Ludicrous Software games have been approved for sale in Apple&#8217;s App Store and are available now for the iPhone and iPod Touch (click the images to go [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to announce that as of a couple of weeks ago (yes, I know I&#8217;m writing this a little late &#8211; it&#8217;s been a crazy month!), two Ludicrous Software games have been approved for sale in Apple&#8217;s App Store and are available now for the iPhone and iPod Touch (click the images to go to the App Store page for that game):</p>
<p align="center"><a href="http://itunes.apple.com/us/app/knights-puzzle/id371394053?mt=8"><img src="/wp-content/uploads/2010/05/KPuzzle_iPhone.jpg" width="294" height="539" alt="Knight's Puzzle for iPhone" /></a><a href="http://itunes.apple.com/us/app/super-poker-solitaire/id371599191?mt=8"><img src="/wp-content/uploads/2010/05//PokerSol_iPhone.jpg" width="288" height="539" alt="Poker Solitaire for iPhone" /></a></p>
<p>Both games started life as Flash Lite games, and were ported to the iPhone using the Corona SDK from Ansca Mobile. In case you were following all the hubbub around 3.3.1 (i.e., if you know what I&#8217;m referring to when I write &ldquo;3.3.1&rdquo;), then to answer an immediate question: both games were submitted after I had agreed to the new Terms of Service from Apple.<br />
In terms of the porting process, I&#8217;m happy to say that it was entirely painless &#8211; there are a large number of similarities between Lua and ActionScript, so if you have a handle on AS then making the jump to Lua is not at all difficult. There are a couple of quirks that you don&#8217;t have to deal with in ActionScript &#8211; from relatively trivial ones like having a different use for curly braces to trickier ones like having to forward-declare local variables &#8211; but once you get the hang of those then writing Lua is easy and fun.<br />
The Corona SDK is also a pleasure to work with. The sample code is very handy and well-documented, and the documentation that comes with the SDK, although it still has a few holes here and there, is very clear. If you&#8217;re used to debugging Flash Lite code using <code>trace()</code> commands, then making the switch to using <code>print()</code> is painless &#8211; and you get the added bonus of a very robust debugger on top of that (I&#8217;m still get used to working with the debugger, so at this point I&#8217;ve found <code>print()</code> to be faster; this will undoubtedly change as I work with the debugger more).<br />
Over the next little while I&#8217;m planning to write some tutorial posts on various aspects of the Flash-to-Corona workflow, but if you have any specific questions or if there&#8217;s anything in particular you&#8217;d like more information about, please let me know in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ludicroussoftware.com/uncategorized/ludicrous-software-in-the-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing with Pixels</title>
		<link>http://www.ludicroussoftware.com/pixel-bender/playing-with-pixels/</link>
		<comments>http://www.ludicroussoftware.com/pixel-bender/playing-with-pixels/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 14:35:17 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[Pixel Bender]]></category>

		<guid isPermaLink="false">http://www.ludicroussoftware.com/blog/?p=226</guid>
		<description><![CDATA[My experiences getting started with Pixel Bender...]]></description>
			<content:encoded><![CDATA[<p>I did a user group presentation yesterday on getting started with Pixel Bender. I&#8217;m pretty new to Pixel Bender, having played around with it a little bit over the course of only the last couple months. Nevertheless, I&#8217;m pretty pleased with the results of my experimentation, and I think this is largely due to two things.</p>
<p>First, there&#8217;s the relative ease of entry into filter writing &#8211; the basic concepts driving Pixel Bender are pretty straightforward, but don&#8217;t limit you at all. So while you can use PB to craft some really impressive effects, you can also do some pretty neat things when you&#8217;re first starting out and still in more a learning mode.</p>
<p>Second, Pixel Bender provides a satisfying and immediate sense of feedback. Because you have an image in front of you as you&#8217;re working on a filter, you get an immediate visual sense of how things are going. As a result, even the screw-ups &#8211; bugs in PB code can result in some pretty whacky unintended results &#8211; are motivating. I&#8217;ve written a couple of filters that I&#8217;ll probably end up putting on-line, but I have a lot more filters sitting on my hard drive that I&#8217;ve saved precisely because I made a mistake in the code somewhere. I&#8217;m saving them so I can go back and figure out what I did, because at some point in the future I may want to do intentionally what I did unintentionally.</p>
<p>That said, here are two of the demos from last night. The first is a comparison of execution speed of Conway&#8217;s Game of Life, first as a straight AS3 implementation, and then offloading the heavy lifting to a Pixel Bender filter. It&#8217;s a pretty good example of the speed gains Pixel Bender can provide when used for data processing.</p>
<p>Here&#8217;s the non-Pixel Bender version (roll over it to start it going, roll off to stop). The number in the top-right corner is the average time required to calculate the next generation of automata:</p>
<p>
<object width="550" height="500">
<param name="movie" value="/wp-content/uploads/Life.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#FFFFFF"></param>
<embed type="application/x-shockwave-flash" width="550" height="500" src="/wp-content/uploads/Life.swf" quality="high" bgcolor="#FFFFFF" wmode="window" menu="false" ></embed>
</object>
</p>
<p>And here&#8217;s the same version with the Life logic implemented via Pixel Bender (again, roll over to start, off to stop):</p>
<p>
<object width="550" height="500">
<param name="movie" value="/wp-content/uploads/LifeBender.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#FFFFFF"></param>
<embed type="application/x-shockwave-flash" width="550" height="500" src="/wp-content/uploads/LifeBender.swf" quality="high" bgcolor="#FFFFFF" wmode="window" menu="false" ></embed>
</object>
</p>
<p>The second demo is a more straightforward visual effect. I wanted to create a &#8220;vacuum&#8221; effect, which could be animated in Flash (and/or After Effects, although I haven&#8217;t played around with the After Effects/Pixel Bender integration yet). This produced some spectacular mis-steps, I must say. You can see the working version of this below (the ship gets clip if you try the negative vacuum strength because it reaches the bounds of the image). Use the sliders underneath the image to play around with the shader parameters. As you can imagine, it&#8217;s dead simple to animate this in an ENTER_FRAME event listener.</p>
<p>
<object width="550" height="400">
<param name="movie" value="/wp-content/uploads/vacuum.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#FFFFFF"></param>
<embed type="application/x-shockwave-flash" width="550" height="400" src="/wp-content/uploads/vacuum.swf" quality="high" bgcolor="#FFFFFF" wmode="window" menu="false" ></embed>
</object>
</p>
<p>So all in all, I&#8217;m finding this pretty encouraging. I&#8217;m glad I finally took the time to dig into Pixel Bender a little bit. Now all I need to do is find more time to keep at it &#8211; and read a book or two on vector mathematics.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ludicroussoftware.com/pixel-bender/playing-with-pixels/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2009 in Review</title>
		<link>http://www.ludicroussoftware.com/ludicrous/2009-in-review/</link>
		<comments>http://www.ludicroussoftware.com/ludicrous/2009-in-review/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 20:42:41 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[Ludicrous]]></category>

		<guid isPermaLink="false">http://www.ludicroussoftware.com/blog/?p=222</guid>
		<description><![CDATA[Short version: so long Flash Lite 1.1, you've been good to me!]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d try to revive the blog by posting a little year-in-review summary. It was an odd year for Ludicrous Software, one in which I probably did less mobile development than in previous years. While working in Flash Lite took up the majority of my working time, 2009 was the first year in which I didn&#8217;t actually start any new personal projects. This wasn&#8217;t necessarily for lack of ideas &#8211; a lot of factors contributed to that being the case. 2009 also saw me doing more desktop development than in previous years &#8211; kind of ironic, given Adobe&#8217;s focus on mobile, namely the recent announcement of iPhone support in Flash CS5 and the upcoming release of Flash Player 10.1.</p>
<p>Most of my &#8216;personal&#8217; development time involved porting existing work to new phones/platforms. First, this involved getting content ready for Nokia&#8217;s Ovi Store, which amounted in a large number of headaches. It&#8217;s too bad that Ovi launched with such problems &#8211; it seemed like the first light at the end of the tunnel for a lot of Flash Lite developers, who were looking for opportunities to monetize their content. But those problems seem to have soured a number of people on Ovi &#8211; me included &#8211; such that I find it hard to justify the amount of work that would be involved in developing new content to distribute there. The second opportunity came when Sony Ericsson asked me to &#8216;panelize&#8217; some content for their soon-to-be-released Xperia X2 device. We&#8217;ll see what happens with that!</p>
<p>Interestingly, 2009 was the first year in which I did not work on any Flash Lite 1.1 projects. My client work is entirely for a company that develops for the Japanese market, and this was the first year in which Flash Lite 2+ phones were a viable target for development. A little something to keep in mind as you wait for the release of Flash Player 10.1! Hopefully the distribution of FP 10.1 will be different, and will enable a quicker uptake, but that remains to be seen. (For the record, I don&#8217;t miss developing for 1.1, although it holds a soft spot in my heart &#8211; it enabled me to quit my &#8216;day job&#8217; and make Ludicrous Software a full-time concern. Regardless of what happens to Flash on mobile, I&#8217;ll always be thankful for tellTarget() and its antiquated friends.)</p>
<p>I&#8217;m going to spend the next day or two working up a list of goals for the coming year &#8211; I think it&#8217;ll be an exciting one, whatever it brings. Happy New Year!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ludicroussoftware.com/ludicrous/2009-in-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Device Central Error: &quot;Pool Capacity too low&quot;</title>
		<link>http://www.ludicroussoftware.com/device-central/device-central-error-pool-capacity-too-low/</link>
		<comments>http://www.ludicroussoftware.com/device-central/device-central-error-pool-capacity-too-low/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 14:09:31 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[Device Central]]></category>

		<guid isPermaLink="false">http://www.ludicroussoftware.com/blog/?p=213</guid>
		<description><![CDATA[An easy fix to a frustrating problem in Device Central CS4]]></description>
			<content:encoded><![CDATA[<p>I ran across an error in Device Central a few weeks ago, and in the intervening time, I&#8217;ve also encountered a few other people who have suddenly run into the same error, so I thought I&#8217;d post the fix. The error occurs when you try to use the Snapshot feature in Device Central CS4 to take screenshots of your application running in the emulator. Device Central fails to take the snapshot and reports that it failed because the &#8220;pool capacity&#8221; is too low.</p>
<p>To fix this, all you need to do is open the Preferences in Device Central, and increase the pool capacity. Here you can see that the pool capacity on my machine is set to 500 MB:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-214" title="pool" src="http://localhost/wp-content/uploads/2009/10/pool.png" alt="pool" width="466" height="167" /></p>
<p>It had previously been set to 5 MB; given that there&#8217;s a &#8220;Clear Pool Now&#8221; button in the preferences panel, presumably Device Central does not automatically clear the pool when you close it down. I don&#8217;t think it&#8217;s possible to retrieve old images from the pool, so I&#8217;m not sure why it&#8217;s necessary to keep that old data. And if there is some advantage to keeping it, I don&#8217;t know why the button&#8217;s hidden in the preferences panel rather than being placed inside the Log window, where you view the screenshots that you&#8217;ve taken.</p>
<p>The other odd thing is that Device Central CS4 has been out for a while now, and this error has only started popping up within the last few weeks: it happened to me right before MAX, and at MAX I found out that two other Flash Lite devs had also encountered it recently, and then <a href="http://mariamdholkawala.com/mobile/">Mariam</a> ran into this bug recently as well (indeed if you Google &#8220;<a href="http://www.google.ca/search?q=%22pool+capacity+too+low%22&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a">pool capacity too low</a>&#8220;, the only relevant result is Mariam&#8217;s post to the Adobe Forums). It also makes me wonder if some settings were changed in a recent update that&#8217;s causing this problem to start cropping up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ludicroussoftware.com/device-central/device-central-error-pool-capacity-too-low/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile at MAX</title>
		<link>http://www.ludicroussoftware.com/adobe/mobile-at-max/</link>
		<comments>http://www.ludicroussoftware.com/adobe/mobile-at-max/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 04:04:34 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[Adobe]]></category>

		<guid isPermaLink="false">http://www.ludicroussoftware.com/blog/?p=207</guid>
		<description><![CDATA[Recapping my experience at MAX 2009 in Los Angeles.]]></description>
			<content:encoded><![CDATA[<p>I arrived home from MAX a few days ago, and thought I&#8217;d share my thoughts on the event, especially the mobile side of things. In general, as always, MAX was a fantastic few days. The sessions, the events, but most of all the people you get to reconnect with and the ones you get to meet for the first time make it so incredibly worthwhile. If you&#8217;ve never been, you should make a point of going &#8211; pretty much everybody who goes to MAX says that, but only because it&#8217;s true. In particular, it was great to see <a href="http://www.moket.com">Dale</a>, <a href="http://www.comradesoftware.com">Evan</a>, <a href="http://maxmediacorp.com/mmblog/">Max</a>, and <a href="http://flashmobile.scottjanousek.com/">Scott</a> again.</p>
<p>Anyway, mobile. You likely already know the two big mobile-related announcements from this year&#8217;s MAX: Flash Player 10.1 for mobile and devices, and publishing native iPhone apps from Flash CS5. I think <a href="http://dalerankine.com/index.php/2009/10/my-thoughts-on-the-week-that-was-adobe-max-2009/">Dale&#8217;s post about MAX</a> nailed things, but I&#8217;ll add a few other random thoughts &#8211; it&#8217;s Thanksgiving today, so if this is a little scattershot, bear in mind that I&#8217;m suffering a turkey hangover&#8230;</p>
<h3>iPhone</h3>
<p>Not much to say about this that hasn&#8217;t already been said. The games that are on the App Store now were built with an early version of the software, and there&#8217;s definitely room to improve performance. Some of the demos that were shown in sessions seemed to run much better, but I&#8217;m not sure if that&#8217;s a reflection of better compiling, or better code to compile from (or perhaps both). In one session the presenters stated that a simple &#8220;Hello World&#8221; app would end up at about 8 MB; this seems incredibly large to me, but this may also be because I still do lots of work for a mobile market in which there are 100 KB limits on SWF (or other) files and data. Hopefully there are improvements in that area.</p>
<h3>Flash Player 10.1</h3>
<p>The other big announcement is, in the long term, a much more important one: Flash Player 10.1 in the browser on mobile and devices. The Open Screen Project has signed on pretty much everybody but Apple, so it has the potential to achieve what Flash Lite hasn&#8217;t been able to do outside of Japan: create a consistent runtime with a uniform method of getting content onto phones. In Japan, Flash Lite has been incredibly successful, for two main reasons: 1) a reasonably consistent runtime, with 2) a uniform implementation of the player. For years, practically every Japanese phone came with Flash Lite 1.1 installed as a browser plug-in. In a market used to consuming data on their devices, this created the perfect set of conditions for Flash Lite to be successful.</p>
<p>I think this is what Flash Player 10.1 could do. Of course, this is all long-term thinking, so it&#8217;s speculative at best &#8211; a FP 10.1 beta will be released soon, and we&#8217;ll start seeing devices with it pre-installed at least by this time next year. But, as I&#8217;m overly fond of pointing out, up until a few months ago I was still writing a ton of Flash Lite 1.1 code for the Japanese market, and we&#8217;ve only recently switched to projects targeting Flash Lite 2+. Things don&#8217;t change overnight in the mobile world, and it may be a while before there are enough devices out there with 10.1 installed to make it a viable target for development. Of course, that doesn&#8217;t mean I&#8217;m not looking forward to playing with the beta; I want to find out just how consistent that runtime will be!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ludicroussoftware.com/adobe/mobile-at-max/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Going to MAX?</title>
		<link>http://www.ludicroussoftware.com/flash-lite-general/going-to-max/</link>
		<comments>http://www.ludicroussoftware.com/flash-lite-general/going-to-max/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 16:03:09 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[Flash Lite (general)]]></category>
		<category><![CDATA[MAX]]></category>

		<guid isPermaLink="false">http://www.ludicroussoftware.com/blog/?p=203</guid>
		<description><![CDATA[If you&#8217;re planning to attend Adobe MAX this year: I&#8217;ll be getting in on Saturday afternoon, and was wondering if any other Flash Lite folks would be interested in getting together for drinks on Saturday night. If you&#8217;re interested, email me directly (darren at ludicroussoftware dot com) and let me know when you get in [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re planning to attend <a href="http://max.adobe.com">Adobe MAX</a> this year: I&#8217;ll be getting in on Saturday afternoon, and was wondering if any other Flash Lite folks would be interested in getting together for drinks on Saturday night.</p>
<p>If you&#8217;re interested, email me directly (darren at ludicroussoftware dot com) and let me know when you get in and what hotel you&#8217;re staying in. I&#8217;ll figure out a decently central meeting point, let you all know the when and the where, and we can head out from there. And if you know of a good place in the area of the conference centre for drinks, let me know that too! Or we can make that part up as we go along.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ludicroussoftware.com/flash-lite-general/going-to-max/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Teaching at Red River College this fall</title>
		<link>http://www.ludicroussoftware.com/flash-cs4/196/</link>
		<comments>http://www.ludicroussoftware.com/flash-cs4/196/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 20:27:01 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[Flash CS4]]></category>

		<guid isPermaLink="false">http://www.ludicroussoftware.com/blog/?p=196</guid>
		<description><![CDATA[I&#8217;m going to be teaching a course in the Digital Multimedia Technology (DMT) program at Red River College this fall! The course, which has the rather daunting title of &#8220;Visual Explorations 1&#8220;, is actually an introduction to Flash; I&#8217;m not sure where that title came from. It looks like I&#8217;ll be teaching two sections, with [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to be teaching a course in the <a href="http://me.rrc.mb.ca/Catalogue/ProgramInfo.aspx?ProgCode=DIGMF-DP&amp;RegionCode=WPG">Digital Multimedia Technology</a> (DMT) program at <a href="http://www.rrc.mb.ca/">Red River College</a> this fall! The course, which has the rather daunting title of &#8220;<a href="http://me.rrc.mb.ca/Catalogue/Course.aspx?RegionCode=WPG&amp;ProgCode=DIGMF-DP&amp;CourseCode=DMMT-1154">Visual Explorations 1</a>&#8220;, is actually an introduction to Flash; I&#8217;m not sure where that title came from. It looks like I&#8217;ll be teaching two sections, with about 20 students each. I just found out today, and classes begin the first week of September, which means I need to put together some teaching materials in a hurry!</p>
<p>Of course, this also means that if you hire a DMT grad in a few years time and they don&#8217;t have the Flash skills they need, then you know who to blame!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ludicroussoftware.com/flash-cs4/196/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Travel plans for MAX</title>
		<link>http://www.ludicroussoftware.com/max/travel-plans-for-max/</link>
		<comments>http://www.ludicroussoftware.com/max/travel-plans-for-max/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 17:14:32 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[MAX]]></category>

		<guid isPermaLink="false">http://www.ludicroussoftware.com/blog/?p=149</guid>
		<description><![CDATA[My travel plans for Adobe MAX are all set. I&#8217;ll be arriving in L.A. on the Saturday (October 3) before MAX and heading back to Winnipeg on the morning of Thursday the 8th. I&#8217;m booked at the Millennium Biltmore Hotel, which is about a mile away from the conference site. It would&#8217;ve been nice to [...]]]></description>
			<content:encoded><![CDATA[<p>My travel plans for <a href="http://max.adobe.com/">Adobe MAX</a> are all set. I&#8217;ll be arriving in L.A. on the Saturday (October 3) before MAX and heading back to Winnipeg on the morning of Thursday the 8th. I&#8217;m booked at the <a href="http://www.millenniumhotels.com/millenniumlosangeles/">Millennium Biltmore Hotel</a>, which is about a mile away from the conference site. It would&#8217;ve been nice to stay a little closer, but the rates at the conference hotels were so much higher than the rate I&#8217;m paying at the Biltmore, I could travel back and forth by cab about 5 times a day if I wanted to and still save money.</p>
<p>Looking forward to seeing the Flash Lite diehards once again! It&#8217;s been an interesting year so far, and there will no doubt be a good deal of discussion about how things are going in the various corners of the mobile Flash world.</p>
<p>Now I just need to register for the conference itself!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ludicroussoftware.com/max/travel-plans-for-max/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
