In the good old days of AS2, if you needed to create a banner for click tracking, all you had to do was tto palce this simple two line AS code in the first frame of your banner after creating a button MovieClip and that would do the job.
Tag Archives: as3
Introduction to Arrays in ActionScript 3.0
This tutorial will teach you the basics on how to use arrays in AS3. Arrays are lists of data which are, unlike simple variables, capable of storing store more than one item at the same time. This use of arrays makes it easy to gather items of the same type in a single container to …
Continue reading “Introduction to Arrays in ActionScript 3.0”
Using Facebook Graph API In Flash AS3 (1.5)
This article is a beginner’s How To use the Flash Facebook API (facebook-actionscript-api), in particular in authenticating user and loading the user’s name in Flash applications.
Flash dynamic references vars
dynamic references If you’ve been dealing with actionscript for some time and you still don’t know what this is, pay close attention because sooner or later you’ll need it. You may even have needed it already!
As3 flashvars
Everybody knows that FlashVars are pretty useful when you want to work with dynamic data being passed from the URL or from the object tags, that gives you a bit of a dynamic touch to your application as well allows you to shorten out your delivery time since you can create your flash object only …
flash UIObject.setSize()
Example The following example resizes the pBar component instance to 100 pixels wide and 100 pixels high: pBar.setSize(100, 100); [ad code=4 align=center]