Dynamic flash XML free Template Dynamic flash CS3 website ussing papervision3D and ActionScript 3.0With no particular software, update the TEXT, place as much as PICTURES that you want, add MP3 from a simple text file ( NOTEPAD). Create or remove some menu sections Place some SWF file instead of any jpg(pictures). Change the background pictures. [...]
Archive | Actionscript 3.0 Tutorial RSS feed for this section
Flash scrollpane with AS
November 24, 2010
AS3 code // SET Y INITIAL POSITION targY = 0; // SET THE INITIAL POSIZION OF THE SCROLLER X dragger._x = mask._width; // DRAG FUNCTION scroller.onPress = function() { startDrag(this, false, this._x, 0, this._x, mask._height-this._height); }; // END DRAG scroller.onRelease = scroller.onReleaseOutside=function () { stopDrag(); }; // MANAGE THE MOVEMENTS THAT CONTENT SHOULD DO content.onEnterFrame [...]
Actionscript xml news slide fade
November 24, 2010
flash xml news slidefade Font(s) used: Arial – system font Georgia – system font How to modify the file: Edit Menu Items: Open menu.xml in a text editor eg. dreamweaver or notepad. To add a new news item follow this format:<item> <date day=”25″ month=”NOV”/> <title>Your Title</title> <description>Your description goes here </description> </item> Edit the menu [...]
Advanced Multi Column Flash Drop Down Menu AS3
November 24, 2010
Advanced Multi Column Flash Drop Down Menu AS3 Demo http://thepremiumwordpress.com/item/flash-drop-down
Flash Accordion Panel
November 14, 2010
Step 1 Open the accordion.fla file in Flash CS We have two layers: The actions layer will hold all of our ActionScript 3.0 code for this project and the panels layer will contain all of the various sections for our site. Set the movie to 690 pixels wide and 355 pixels high , frame rate [...]
Flash Appearance Effect
November 11, 2010
Create a new flash file and set its dimensions to the dimensions of your image Open the actions panel. Paste the following code The revealImage() function loop through the imagesGrid array and for each piece use the Tweenlite engine to animate its alpha and rotationY property. In the delayTime property We specify the delay parameter [...]
ActionScript 3.0 Loader
November 10, 2010
Step 1 Go to Window>Components and select ProgressBar component to show the downloading progress, and will also make use of the Button component just to make our experiment a little bit fancier. Step 2 Right-click the only frame on stage and select Actions to open the Action Panel. import fl.controls.ProgressBar; import fl.controls.Button; var myLoader:Loader = [...]
How to LoadMovie in AS3
November 9, 2010
Title In this example you will learn how to substitute LoadMovie in AS3 Description Given code is one class file where [startLoad("filenames.swf"); ] will work like loadMovie. Code //——————code for AS3 file———————– package com{ import flash.events.*; import flash.display.*; import flash.net.*; public class loadMov { var urlParam:String; public var urlLoader:Sprite = new Sprite(); var mLoader:Loader = [...]
Actionscript Fall Down Effect
November 4, 2010
In this tutorial we will use Actionscript Fall Down Effect. We will make the images pieces appear horizontally, we loop through the rows and through the columns (instead of columns and rows), in the revealImage() function, we use the Tweenlite.from (instead of Tweenlite.to) method to animate the y property of each image’s piece.
Learn AS3 array
August 1, 2010
This is part 2 of Actionscript 3 array tutorial we used simple one dimesional array with as3 , today we will create multidimensional arrays. Not that this is more complex then the first, one dimensional array, but its worth while digging into, so if you think your ready, lets get started. There are different kinds [...]
ActionScript 3.0 array
August 1, 2010
The Array class lets you access and manipulate arrays. Array indices are zero-based, which means that the first element in the array is [0], the second element is [1], and so on. To create an Array object, you use the new Array() constructor . Array() can also be invoked as a function. In addition, you [...]
Actionscript 3 array tutorial
August 1, 2010
In this tutorial we will learn to make and using arrays with actionscript 3.0 . This is the first lesson so we will talk about what arrays are, how to use them, and make our own simple one dimensional array. In the next lesson we will add more advanced theory to the arrays, such as [...]
Flash as3 resize image
May 23, 2010
Download source files: flashresizeimg.zip Step 1 Create New Flash File ActionScript 3.0 Select the Selection Tool V Go to Properties tab and press Edit button and set the width of your document to 820 pixels and the height to 620 pixels, set frame rate to 28 fps and select any color you want as background. [...]
Flash countdown to specific date
May 21, 2010
Flash countdown tutorial Download source files: as3 timedate contdown Step 1 Create New Flash File ActionScript 3.0 Select the Selection Tool V Go to Properties tab and press Edit button and set the width of your document to 440 pixels and the height to 175 pixels, set frame rate to 12 fps and select any [...]
Scrollpane AS3 tutorial
May 19, 2010
Download source Files AS3 Scrollbar Step 1 Create New Flash File ActionScript 3.0 Select the Selection Tool V Go to Properties tab and press Edit button and set the width of your document to 680 pixels and the height to 340 pixels, set frame rate to 28 fps. Change the layer name to background ( [...]
Flash 3d animation with actionscript
May 11, 2010
Step 1 Download TweenMax for AS3 and save the “gs” folder to the same location where you have the .fla file located. Create a new >Flash Project Click on the plus icon New flash file > “Flash file” > Change the name of project <Untitled File>.fla Select the Selection Tool V Go to Properties tab [...]
AS3 glow effect
May 10, 2010
Download the source: as glow.zip Step 1 Create a new >Flash Project Click on the plus icon New flash file > “Flash file” > Change the name of project <Untitled File>.fla Select the Selection Tool V Go to Properties tab and press Edit button and set the width of your document to 400 pixels and [...]
Flash actionscript date time
May 9, 2010
How to Create Date objects The Date() constructor returns a Date object containing the current date and time, in local time based on your time zone. Here’s an example: var now:Date = new Date(); 2nd example,The Date() constructor treats that as the number of milliseconds since January 1, 1970, and returns a corresponding Date object. [...]
Flash login system
May 7, 2010
Download the source : login.zip Step 1 Create a new flash AS 3 document Go to Properties tab and press Edit button and set the width of your document to 510 pixels and the height to260 pixels. Select black color as background . Change the layer name to background( double click on it ). Take [...]
How to make a easy digital clock in flash
May 6, 2010
Download the source: digitalclock Step 1 Create a new >Flash Project Click on the plus icon New flash file > “Flash file” > Change the name of project <Untitled File>.fla Select the Selection Tool V Go to Properties tab and press Edit button and set the width of your document to 300 pixels and the [...]

December 3, 2010
3 Comments