Flash tutorials
Home 3D (2) Actionscripting (66) Animation (108) Audio (4) Drawing (7) Full flash sites (4) Getting Started (15) Navigation (25) Special Effects (61) Text Effects (38)

Auto copy any image into a flash stage

4.3.2009, 20:26    Total views: 9900

In this thoroughly explained, detailed lesson, I will show you how to import any image into a flash stage and after that, how to copy it many times using a little action script code. Let's start!

Example:



Step 1

First, save the image below!





Step 2


Create a new flash document. Press Ctrl+J key on the keyboard (Document Properties) and set the width of your document to 400 pixels and the height to 300 pixels.

Step 3

Call the current layer image. Double-click on its default name (Layer 1) to change it. Press Enter once you have typed in the new name!

Step 4

Choose now File > Import > Import to stage (Ctrl+R) and import the image that you saved in step 1!

Step 5

While the image is still selected, press delete key on the keyboard to delete it.

Step 6

Right Click the image in your library and select Linkage. In the dialog box select Export for Actionscript and give your class a unique name. In this case I've used image.





Step 7

Create a new layer above the layer image and name it action. After that, select the first frame of layer action and go to the Action Script Panel (F9). Then, enter this code inside the actions panel:

import flash.display.BitmapData;
var tile:BitmapData = BitmapData.loadBitmap("image");
this.beginBitmapFill(tile);
this.lineTo(Stage.width, 0);
this.lineTo(Stage.width, Stage.height);
this.lineTo(0, Stage.height);
this.lineTo(0, 0);
this.endFill();

We're done now!

Test your Movie and enjoy!

Download source file (.fla)

Have questions about this tutorial?
Visit our friendly Community Forums!
Digg it! Add this tutorial to del.icio.us! Furl it! Add this tutorial to reddit! Spurl it! Add this tutorial to technorati!

Top tutorials

1. Advanced full flash site - Part 1
Total views: 285150

2. High-tech city animation
Total views: 226166

3. Water effect
Total views: 220076

4. Photo slide show
Total views: 203498

5. Special Picture Effect
Total views: 179545



Related links