Category Archives: Flash

Useful MovieClip-child tricks in AS3

Some useful MovieClip / Display Object tricks in ActionScript 3: 1. Send to front / back To set an MC on top of everything else: setChildIndex(yourMC, numChildren-1); To put an MC below everything else: setChildIndex(yourMC, 0); http://developer.yahoo.com/flash/articles/display-list.html 2. Remove all … Continue reading

Posted in Flash | Tagged | Leave a comment

Global Variables in ActionScript 3

Although there is no “direct” way to implement global variables in ActionScript 3, as there was in previous AS versions, I found this useful workaround, using a class with a static variable container: http://greenethumb.com/article/11/global-variables-in-as3

Posted in Flash | Tagged | Leave a comment

SoundCloud – 1st anniversary and ActionScript 3 API

Web audio hosting and streaming service SoundCloud have many good news on their anniversary: Cheaper premium accounts New players iPhone app and much more: http://soundcloud.com/pages/newsletters/2009/11/10/anniversary I would also highlight the recent ActionScript 3 API wrapper: http://blog.soundcloud.com/2009/09/18/as3-wrapper/ This library enables your … Continue reading

Posted in Flash | Tagged | Leave a comment

Adobe AIR 2 and Flash Player 10.1 Beta Software Now Available

From EON: Flash Player 10.1 is the first consistent browser runtime release of the Open Screen Project that will enable uncompromised Web browsing of expressive applications, content and high definition (HD) videos across the desktop and devices. (…) Additionally, Flash … Continue reading

Posted in Flash | Tagged | Leave a comment

TUIO (tangible multitouch UI)

TUIO is “an open framework that defines a common protocol and API for tangible multitouch surfaces”. It is based in OSC (Open Sound Control), and used in Reactable-based solutions (http://www.reactable.com). The developers behind TUIO include Music Technology Group (University Pompeu … Continue reading

Posted in Flash, Platforms, Tables/Surfaces | Tagged , | Leave a comment

Adobe Flex 3 for free (education)

For Flash platform developers: Adobe Flex Builder 3 is now available for free, to students/faculty/staff. A great opportunity to develop ActionScript 3 applications for free, or to expand your Flash toolkit. https://freeriatools.adobe.com/flex/ (via Matti Luhtala)

Posted in Flash | 2 Comments

Flash CS5 announced

At Adobe MAX 2009, Flash CS5 was announced. The iPhone apps publisher is the main news, but other features include: New text capabilities via the Text Layout Framework (TLF) — Get unprecedented text control and creativity with projects created in … Continue reading

Posted in Flash, Platforms | 1 Comment

Flash apps for iPhone coming up soon

Flash CS5 will allow the development of iPhone apps, as Adobe demonstrates: http://labs.adobe.com/technologies/flashcs5/appsfor_iphone/ TechCrunch report on Adobe MAX event, where this was announced: http://www.techcrunch.com/2009/10/05/adobe-shows-off-flash-apps-for-iphone-yes-you-read-that-right/ It’s not a Flash plug-in for iPhone, but a very nice workaround…

Posted in Flash, iOS, Platforms | 2 Comments

Flash (not Flash Lite) on mobile phones in 2010

BBC reports on widespread adoption of Flash 10.1 on smart phones by 2010 (with the notable exception of iPhone): http://news.bbc.co.uk/2/hi/technology/8287239.stm

Posted in Flash, iOS, Platforms | 1 Comment

Accessing the library dynamically

For an upcoming Video Jack project, I’ve been trying out accessing random elements from the library – without knowing previously if they were present there or not. I found some tutorials/references on the subject. To find if a class exists: … Continue reading

Posted in Flash | Tagged | Leave a comment