Flash Tweening
tween is an actionscript class and can be used after importing the core files.
import mx.transitions.Tween;
import mx.transitions.easing.*;
//Tween( …
Read Article →
31 articles about actionscript development, tools, and best practices
tween is an actionscript class and can be used after importing the core files.
import mx.transitions.Tween;
import mx.transitions.easing.*;
//Tween( …
Read Article →
// Created by Andrew Odendaal
//
// :: DESCRIPTION ::
// Animate a ball moving to the top
// of the screen/stage and back again
//
// :: HOW TO USE :: …
Read Article →
Create an xml object:
var myXmlObject = new XML();
Perform action when xml file has been loaded:
myXmlObject.onLoad = function(success) {
if …
Read Article →
var lowerCase:String = "sample text";
var upperCase:String = lowerCase.toUpperCase();
Read Article →
A brilliant version of print_r for actionscript:
http://dev.base86.com/solo/47/actionscript_3_equivalent_of_phps_printr.html
Read Article →In order to reuse a variable from a different timeline within the same fla file you will need to register the inital variable or function as a …
Read Article →I had a problem today where I got a flash source file from one of my developers’ and I couldnt compile it because it said that there was a …
Read Article →