Category Archives: ActionScript

Removing comments in CSS, HTML and ECMAScript (JavaScript)

While working on an Adobe AIR based source code editor I was looking for an easy way to remove comments from different kind of source codes. What first seemed like an easy regular expression turned out to be much more … Continue reading

Posted in ActionScript, Flash, JavaScript | Leave a comment

Linked List Performance Test using Getter or Interface

Another test regarding linked lists. Since I heavily use interfaces within the frameworks I’m working on I tried to define interfaces for my linked list items. I would love to use an abstract interface but with the full linked list … Continue reading

Posted in ActionScript | Leave a comment

FFK11 – beyond tellerrand notes

I’m still not sure if “beyond tellerrand” is a subtitle or will become the new brand for the one and only Flashforum conference here in germany. Sascha Wolter and Marc Thiele did a great job as always and even I … Continue reading

Posted in ActionScript, AIR, Conference, Flash, Flash on iOS, Flex, iPhone / iPad | 3 Comments

SWF meta tag

I’m always searching for it so here is a useful blogpost. As the latest FDT version ( Beta 4 ) does not set compiler arguments concerning SWF-size, framerate etc. by default I started using SWF-Metatags to specify these settings. I’m … Continue reading

Posted in ActionScript, Flash | Leave a comment

Date.time vs. Date.setTime() getTime() performance

Using Date.setTime() and Date.getTime() is faster than Date.time. My quick speed test to determine the fastest way to get and set time values on Date objects: var date : Date = new Date(); var max : Number = date.time;   … Continue reading

Posted in ActionScript, Flash | 4 Comments

Linked List Performance Test

I was thinking about not creating linked lists for every data type I use but using one abstract data structure containing my specific data types. So I wrote this short performance check: package de.superclass { import flash.display.Sprite; import flash.events.Event; import … Continue reading

Posted in ActionScript | Leave a comment

iPhone / iPad ActionScript Guide quotes

As I mentioned here I strongly recommend to read Adobe’s Building ADOBE® AIR® Applications with the Packager for iPhone® guide or Flash Platform for iPhone. Just some ActionScript facts: ActionScript APIs unsupported on mobile devices ActionScript APIs specific to mobile … Continue reading

Posted in ActionScript, Flash, iPhone / iPad | Leave a comment

Open Source Media Framework 1.0

Adobe recently released OSMF version 1.0! Again just some links: OSMF Blog – Announcing OSMF 1.0! Source ZIP Release Notes PDF ASDocs ZIP

Posted in ActionScript, Flash, Flash in Browser, Flash Player, Flex, Librarys, Video | Leave a comment

Flash Performance Visualizer

Mr.doop’s Hi-ReS! Stats is a must have for every ActionScript developer. Seems to be still no. 1! And I don’t want to search again… So here just the links: Mr.doop’s blog | Hi-ReS! Stats Mr.doop’s Stats.as @ GitHub Update – … Continue reading

Posted in ActionScript, Flash, Flash in Browser, Flash Player, Flex | Leave a comment

Undocumented XMLUtil class in Adobe Flash CS5?

I tried to recompile an older Flash CS 4 project with Flash CS 5 but got this compile time error 1061: Call to a possibly undefined method reuseNodes through a reference with static type Class caused by the usage of … Continue reading

Posted in ActionScript, AIR, Flash, Flash in Browser, Flash Player, Flex | 3 Comments