Posts Tagged ‘as3

AS3 Easy Dynamic Movie Clip Buttons

This example demonstrates how to dynamically place and code movie clip buttons using AS3. It also demonstrates the use of a Document Class.

as3, flash

AS3 Clickable Button Inside a Draggable Movie Clip

Demonstrates how to use AS3 to create a clickable button inside a draggable movie clip.

as3, flash

Making Alpha Work on AS3 Dynamic Text Fields

Getting the alpha property to work with coded TextFields is another AS3 technique that you would expect to be a little easier, or at least more intuitive, than it is. Initially, you may expect something like this to render the text invisible:
var myTextField:TextField = new TextField();
myTextField.text = “Doesn’t Work”;
addChild(myTextField);
myTextField.alpha = .5;
But regardless of the alpha [...]

flash, intermediate