Recent Comments
- K.C. Dameron on The Hitchhiker’s Guide to a Flash Player update
- Adobe Tech Summit 2011 - Seite 2 - Flashforum on Adobe Tech Summit 2011 Berlin Notes
- derRaab on Flash on iOS issue with flash.net.navigateToUrl( );
- William Grand on Flash on iOS issue with flash.net.navigateToUrl( );
- Anonymous on Aligning Flash TextField instances visually correct
Archives
Categories
.htaccess
Adobe
- ActionScript Runtime Errors
- AIRbenchmark.com
- AS 3 / AVM2 Performance Tuning
- E-Seminars
- Flash Mobile Developer Guide
- Flash Platform Reference
- Flash Player Support Center
- Flash Player Version Penetration
- Flex 2 Style Explorer
- Flex 3 Component Explorer
- Flex 4 SDK Downloads
- Local SQL databases in AIR
- Open Source Media Framework
- TV
- XML namespace tutorial
Blogroll
FDT
Flash Platformer
- André Michelle
- Aral Balkan
- ByteArray.org
- Christian Cantrell
- Colin Moock
- Daniel McLaren
- David Deraedt
- Den Ivanov
- Drew Cummins
- Eugene Zatepyakin
- Grant Skinner
- HIDIHO
- Jessee Freeman
- Jim Armstrong
- Joa Ebert
- Julian Dolce
- Keith Peters
- Mario Klingemann
- Mark Ledford
- Michael Baczynski
- Michaël Chaize
- Mike Chambers
- Mr. Doop
- Paul Robertson
- Ralph Hauwert
- Robert Penner
- Ryan Taylor
- Seb Lee-Delisle
- Ted Patrick
- Valentin Simonov
JavaScript / CSS
Knowledge
Licenses
SCORM
Utils
Web development tools
Tag Cloud
ActionScript Adobe Sneak Peeks Adobe TechNotes AIR ANT AsDoc Audio AVM1 Conference Documentations E-Learning FDT Flash Flash in Browser Flash on iOS Flash Player Flex Google How To... Ilias iPhone / iPad JavaScript JSFL Librarys Links Mac Microsoft Office Mobile Devices PHP Pixel Bender Server Terminal Uncategorized Utils VideoAffiliate Link Overkill
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