Posted on Tuesday, April 8th, 2008
New google service http://code.google.com/appengine/ Google App Engine lets you run your web applications on Google’s infrastructure. App Engine applications are easy to build, easy to maintain, and easy to scale as your traffic and data storage needs grow. With App Engine, there are no servers to maintain: You just upload your application, and it’s ready [...]
continue reading
Posted on Friday, April 18th, 2008
Introduction This document lays out the coding standards for writing open-source Flex framework components in ActionScript 3. Adhering to these standards makes the source code look consistent, well-organized, and professional. Some of these standards are completely arbitrary, since there is not always a “best way” to code. Nevertheless, in the interest of consistency, all commits [...]
continue reading
Posted on Thursday, March 24th, 2011
If you are using Zmags, and what to add internal link (go to some other page) into flash object. You could use this code in flash ( actionscript 3.0) 1234567import flash.external.*; but.addEventListener(MouseEvent.CLICK, function(e:MouseEvent) { var curUrl:String = String( ExternalInterface.call(" function(){ return document.location.href.toString();}")); curUrl = curUrl.replace(/\/([0-9]+)$/,’/'+YOUR_PAGE_NUMBER); var myURL:URLRequest = new [...]
continue reading