short video tutorial on how to make a button “work” inside Adobe Flash CS4. It’s a little different with the new ActionScript 3.0, so I decided I’d make a video on it. I’d also like to tell you that in ActionScript 3.0, all the actions are in the timeline, meaning you cannot give objects their [...]
Archive | February, 2010
How to Make a Link in Flash CS4
February 7, 2010
This was a highly requested tutorial by many different people. I said I would do it in another video, and here it is. ACTIONS: instanceNameHere.addEventListener(MouseE vent.CLICK, mouseClick); function mouseClick { var request = new URLRequest(“link goes here”); navigateToURL(request,”_blank”); }
Linking and Using Buttons with ActionScript 3.0
February 7, 2010
Today we will learn how to Linking and Using Buttons with ActionScript 3.0 step by step flash tutorial Flash basic : how to add link into Flash button
How to Create and Use a Motion Tween (Flash CS4)
February 5, 2010
This is a tutorial on how to create and use the new motion tween in Flash CS4. A motion tween is used to create a movement between two positions on the timeline. With the new motion tween, you can easily add changes to each frame, bend the path, and extend the length of the motion [...]
Create MovieClip Scroller
February 1, 2010
Language Version : ActionScript 3.0 Runtime Versions : AIR 1.0, Flash Player 9.0.28.0 The ScrollBar component provides the end user with a way to control the portion of data that is displayed when there is too much data to fit in the display area. The scroll bar consists of four parts: two arrow buttons, a [...]
How to Add scrolls to textboxes with ActionScript 3.0
February 1, 2010
In this Flash actionscript 3.0 tutorial we will read some content from an external text file into a text field, then add a couple of buttons to scroll down the text in the text field. First we need to set up a few things, like a textbox and the up and down buttons. So first [...]
How To Apply filters with AS3
February 1, 2010
The DropShadowFilter class lets you add a drop shadow to display objects. The shadow algorithm is based on the same box filter that the blur filter uses. You have several options for the style of the drop shadow, including inner or outer shadow and knockout mode. You can apply the filter to any display object [...]
How to Use examples in the ActionScript 3.0
February 1, 2010
The ActionScript 3.0 Language and Components Reference supports several Adobe products, including Flash CS3 and Flex 2. The content covers application programming interfaces (APIs) that are specific to ActionScript and that may be implemented differently depending on the authoring tool you are using. Therefore, to test and use the example code in the ActionScript 3.0 [...]

February 7, 2010
0 Comments