FWA has picked wechoosethemoon.org as website of the year.
Wechoosethemoon.org is an interactive experience recreating the historic Apollo 11 mission to the Moon in real time.
FWA has picked wechoosethemoon.org as website of the year.
Wechoosethemoon.org is an interactive experience recreating the historic Apollo 11 mission to the Moon in real time.
FLAR is an Augmented Reality (AR) toolkit for Flash:
http://www.libspark.org/wiki/saqoosha/FLARToolKit/en
Adobe has posted a nice AR tutorial here:
http://www.adobe.com/devnet/flash/articles/augmented_reality.html
Last week I visited the Decode new media art exhibition at V&A Museum, London. There was one piece by Joshua Davis on display, and it was mentioned that it was built using the HYPE framework (by Joshua Davis and Branden Hall):
HYPE is a creative coding framework built on top of ActionScript 3. A major goal of HYPE is to allow newcomers to Flash and ActionScript to creatively play and express themselves while they are learning how to program.
From: http://hype.joshuadavis.com/
The first version came out in the end of October 2009, and version 1.1 was just released.
HYPE @ GitHub: http://github.com/hype/hype
The course files can be downloaded (or viewed, in the case of .swf´s) from here:
http://mlab.taik.fi/mediacode/coursefiles/course_2010_01/
All old course files can be found here:
The course is focused on the generative aspects of multimedia design and the authoring process, interface and interaction design and the control of media elements in interactive projects. Students will experiment with a broad range of media elements with an emphasis on controlling media behavior through code.
Mashable published an article regarding Flash Player working on Google’s Nexus One phone:
http://mashable.com/2010/01/06/flash-player-10-1-nexus-one/
It can be used to browse Flash-heavy sites and play online games, but it can also be used to deliver Flash-based ads.
There article includes a video from Adobe Developer Connection.
Rob Ford, founder of Favourite Website Awards (FWA), has selected some inspirational websites from recent months for Adobe’s Edge newsletter:
http://www.adobe.com/newsletters/edge/december2009/articles/article3/
Adobe article regarding full screen functionality in ActionScript, from Flash Player 9 onwards:
http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html
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 children
while(container.numChildren){
container.removeChildAt(0);
}
http://blog.devdeploy.com/2009/10/19/remove-all-children-as3/
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: