Tag Archives: loadMovie

ActionScript 3.0 Loader

November 10, 2010

0 Comments

Download Source

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 = [...]

Continue reading...

How to LoadMovie in AS3

November 9, 2010

0 Comments

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 = [...]

Continue reading...

How to Load JPEG or SWF file with loadMovie

January 9, 2010

1 Comment

Load JPEG or SWF file with loadMovie. Launch Flash Designer and choose “Blank Animation”. Choose “Frame” > “Frame Size” to set movie dimensions. Enter 300 x 300 and click OK. Choose “Sprite” tool and draw a rectangle on the frame. Flash Designer will create new sprite and display blank “chessboard” frame. Choose “Movie” > “Go [...]

Continue reading...