Topic: Coding
New project: ActionScript Regular Expressions Testing Tool
Over the last couple of weeks I’ve been working on a Flex project where I’ve had to make heavy use of regular expressions. As always seems to happen when I work with regular expressions in any language, I found that one of the more complex parts of the process was just figuring out the exact […]
» Keep reading New project: ActionScript Regular Expressions Testing Tool
Some of the most useful links I’ve found on the recent project Tamarin announcement (Adobe’s contribution of code for AVM2—the ActionScript processing virtual machine portion of Flash Player—to the Mozilla Foundation).
- Tamarin project page
- Mozilla foundation press release
- Nice executive summary and analysis by Frank Hecker, executive director of the Mozilla Foundation
- Benchmark comparisons of Tamarin versus JavaScript performance
If you’ve only heard vague things about this deal and want a good summary, I’d read the article by Frank Hecker linked to above.
Most of the obvious and publicly discussed benefits are benefits for the Mozilla Foundation, Firefox, and developers using Mozilla technologies. Personally (as someone involved in ActionScript development) I think this is a really exciting announcement. Over the next day or two I hope to post my thoughts about what this means for the Flash Platform, and why I think it’s a good thing for Adobe (and, via trickle-down effect, for Adobe’s customers). But I’m on dad duty tonight, so that’ll have to wait a bit =).
A nice article/presentation summary about using Flash for game development. It has a nice discussion of limitations and workarounds of the Flash format for demanding applications; the resources at the end include a lot I knew and a few I am glad I found.
(via Zeh Fernando)
Getting type checking with ActionScript arrays
In ActionScript, unlike other languages, arrays can contain a mix of different data types. This leads to potential confusion and errors because ActionScript compilers don’t check that data of a certain type is being added/retrieved from the array. This article discusses this issue, and several solutions as well.
» Keep reading Getting type checking with ActionScript arrays
A nice look at the new features in C# 2.0
Create Elegant Code with Anonymous Methods, Iterators, and Partial Classes (C# 2.0)