Tag: ActionScript
-
NiceComps – AS3 UI components for Flash
NiceComps is a set of ActionScript 3 UI components that I have been slowly working on over about the last six months. I got tired of the ugly built in components that come with Flash and I don’t particularly like the look of MinimalComps. I wanted UI components that looked nice and were easy to…
-
AS3 Uint Colour Util – Update: Now with source
Since Flash works with colour in the hex format, I’m always finding it annoying how you have to convert to RGB to perform manipulations on colours. Most colour classes out there like Grant Skinners Color Matrix and the ColorMatrix by Quasimondo work with matrices and the ColourTransform class, which is OK sometimes. But I find…
-
AS3 – Getting the order of MovieClips in the stage
Here is yet another small code snippet which allows you to get the order of MovieClips that are positioned on the stage. Source for the demo above: Download
-
AS3 – Detecting Control, Shift and Alt keyboard shortcuts
Here is a snippet of code which allows you to detect keyboard shortcuts such as ctrl+[another key] and ctrl+shift+[another key]. I wasn’t able to find any decent examples of detecting shortcuts but after reading the AS3 documentation I found that the Keyboard event contains the following boolean properties [cc lang=”actionscript3″] ctrlKey shiftKey altKey [/cc] So…
-
Generative Art in Flash
Recently I have been inspired to create generative art using Flash thanks to Erik Natzke who creates stunning images… all created by ActionScript. I did a fair bit of digging around the net and managed to find a few code examples and video demonstrations on how the images were generated. So as you can see…
-
AS3 CoverFlow in Flash
I decided to include a ‘CoverFlow’ browser similar to iTunes in a website concept proposal for my latest Uni project. I searched the net and couldn’t find any decent/simple cover flow examples that have been created in Flash and ActionScript 3, so I set out to make my own… heres what I’ve got so far.…