Archive for the 'Actionscript' Category

actionscript-mode for EmacsW32

Wednesday, March 21st, 2007
Ben Leiting just sent me his modifications of actionscript-mode.el to get it to work with EmacsW32. I don't have time right now to merge the two versions together, but you can download his version here. You'll want to remove the ".w32" from the end of the filename after

Memoization in Actionscript

Sunday, January 14th, 2007
I love this programming technique, mostly because it is so easy to just drop into your code and instantly trade execution time for memory usage. More information can be found here. [as]package{ public class Memo{ static public function Memoize(obj:*,func:Function):Function{ // ***

Emacs mode for AS3

Sunday, December 31st, 2006
I've rewritten my actionscript-mode to support AS3. I've stripped out everything related to AS2, but you can still get the old version from here. actionscript-mode.el I have been using this new mode for a couple months and I haven't had any problems, but your coding style might differ from mine,