Flash CS3 Tutorial – ActionScript 3 Preloader
Flash Tutorial April 28th, 2008
There is very little that will push users away quicker than a bulky Flash website with no preloader. Without a preloader, your users will have nothing to look at but a blank screen until your Flash file has fully loaded. For users with a speedy broadband connection, this may not be much of an issue (depending on the size of your file), but for people with sluggish connections, it's imperative that you give them some kind of indication that everything is loading properly.
1. Create your preloader bar. For this example, I'll be drawing a basic rectangular bar that will expand within a thin border. Using the rectangle tool, set the stroke option in the Properties Panel to a hairline stroke, choose whatever fill color you want, make sure that Object Drawing mode is turned off on the toolbar, and draw your preloader rectangle in the center of the stage.
2. Separate the fill from the border. Since the border of the rectangle will stay constant while the fill expands within it, it will be easier if we send the fill to its own layer. To do this, simply hit Esc to make sure that everything is deselected, and then click once on the fill. Make sure that ONLY the fill is selected, and then right-click on the fill (or Ctrl+click if you're using a one-button mouse on a Mac) and click on Distribute to Layers. This will remove the fill from the current layer and copy to a new layer just below the current layer.
3. Convert the fill to a movie clip. Click on the fill (which should be on its own layer now) and hit F8 to convert it to a symbol. Select "movie clip" and set the registration point to the upper left corner. Our loader bar is going to be expanding from left to right, and this will only work properly if the registration point is on the left side. Give your movie clip an instance name of loader_mc.
4. Create a dynamic text field. This text field will tell the user what percentage of the site has loaded so far. For this example, select the Text Tool, choose Dynamic Text in the drop-down menu on the Properties Inspector, choose 12 point Verdana (or whatever font you want), and click and drag beneath your loader bar to draw a text field that has the same width as the loader. Here's what mine looks like:

With this new text field selected, in your Properties Inspector, click on the button to right-align your text within the text field. Give this text field an instance name of loaded_txt.
5. Embed the font for the dynamic text field. Even if you select a popular font, such as Verdana, you can never be 100% certain that your users are all going to have the same font installed on their system. And when you're dealing with dynamic text fields, if your users don't have your selected font, and if you don't embed your font, then Flash will choose a different font to display, and you'll lose control of what your text fields look like.
To avoid this issue, select your dynamic text field, and then click on the "Embed" button in the Properties Inspector. In the pop-up dialog that appears, select Uppercase, Lowercase, Numerals, and Punctuation and click OK. To select more than one item, click on the top item, hold onto Shift, and then click on the bottom item. All items in between will be selected. Like so:

6. Create a new keyframe for your content. You won't be able to test your preloader unless you actually have some content to load. So at this point, I want you to throw in a little bit of dummy content.
Create a new layer to hold your content, click on frame 2 for this new layer, and hit F6 to add a new keyframe. In this new keyframe, simply import a hi-resolution image or two onto the stage. This content does not have to be arranged in any sort of orderly fashion. You're just using this extra content to "fatten up" the file size so you'll have a way to test your preloader.
7. Add a stop action to frame 1. Since your Flash file now has 2 frames, you need to provide a way to keep the file from jumping back and forth between them. So add a new layer to the top of your layer stack, rename the layer Actions, click on frame 1 for the Actions layer, and hit Opt+F9 (or just F9 for PC) to open up your Actions panel. In your Actions, simply type stop();
8. Code the preloader. Make sure that frame 1 of the Actions layer is still selected, and add the following code to your script:

On lines 3 and 4, you're adding Event Listeners to the main timeline. The PROGRESS event handler on line 3 calls on the onProgress function over and over as long as content is still loading. The COMPLETE event handler calls on a function called onComplete and is triggered whenever the content has been fully loaded.
In the onProgress function, we first create a variable called loaded, which stores the number of bytes that have been loaded thus far and another variable called total, which stores the total number of bytes in the Flash file. When we divide loaded by total (line 10), we get the total percentage of the file that has currently been loaded, and we store it in a variable called pct. (Actually, it's technically a ratio instead of a percentage, but I won't be picky if you won't.)
We then use this pct variable (which, if everything is working properly, now contains a number between 0 and 1) to update the scaleX property of our loader bar movie clip. The scaleX property is basically the width of a movie clip as a ratio of its original width. So at this point, if your Flash file is 90% loaded, then the loader bar will be at 90% of its full width.
Once we have the width of the loader set, we then update the dynamic text field to tell our users precisely how much of our file has been loaded.
9. Test your movie. If everything is working properly, then when you test your movie (by hitting Cmd+Enter or Ctrl+Enter on PC), you won't see the preloader at all. It will jump straight to frame 2, where you have a hi-res image on the stage. This happens because when the file is already on your system, it is loaded immediately, and the COMPLETE event triggers the onComplete function to take us to the next frame of the Flash file. However, there is a way to simulate a download in order to test our preloader.
After hitting Cmd+Enter or Ctrl+Enter to test your movie, go to View > Bandwidth Profiler. This will display loading information above your movie. Once the Bandwidth Profiler is visible, go to View > Simulate Download. Hopefully, if all your ActionScript was entered properly, you will now see your preloader in action. As your loader bar expands to the right and your dynamic text field updates the percentage loaded, double-check this against the percentage that the Bandwidth Profilers says has been loaded. If these two numbers match, you're in business.
You can also adjust the speed of the simulated download by selecting View > Download Settings.
Once your Flash file finishes loading, you should see the preloader disappear and the next frame appear. And voila! You now have a fully-functioning preloader. Now all you need to do is replace the image(s) you stuck in frame 2 with the actual content of your website, and you're good to go!
Sample FLA file: preloader.zip


April 29th, 2008 at 12:15 am
Craig,
I love getting emails from you. I’ve been learning so much!
I just made the move from Flash 8 to CS3 and have taken a interest in learning Actionscript…
To think a few short weeks ago I knew nothing about flash and today I know my way around pretty well as a result of your training.
Keep up the great work!
Looking forward to your next email,
Jesse Wilson Jr.
May 1st, 2008 at 12:07 pm
[...] Read the tutorial and download support files No Comments Leave a Commenttrackback addressThere was an error with your comment, please try again. name (required)email (will not be published) (required)url [...]
May 2nd, 2008 at 12:37 pm
[...] Check it out: http://schoolofflash.com/2008/04/28/flash-cs3-tutorial-actionscript-3-preloader/ [...]
May 6th, 2008 at 7:03 am
my preloader starts at 70 % but when i add a bigger picture on my site than it starts at 1% im confised
May 18th, 2008 at 5:32 pm
Hi there , This Tutorial is great .
But Can you explain how can load files like (images , etc…) that is going to be used in classes outside of the main document class ..
May 24th, 2008 at 9:17 pm
Thanks for all of your help.
This as well as a couple of the other tutorials that you have posted have been a great help to me as I am trying to learn Flash by myself.
Please keep posting!
May 28th, 2008 at 2:44 pm
Wonderful! I used this for my flash banner, you are appreciated!
May 31st, 2008 at 10:22 pm
If someone is experiencing the my preloader starts at 70%, or a similar issue. It is because you have a very small flash file created where 70% of the file is the 1st frame loading bar. Just past a 5 meg image in your second frame and you will see the loader appear at a fresh one percent as soon as it gets to 1 percent!
I hope that helps.
Also, if you want to have more than a 2 frame flash movie then in your second frame create a new action that simply says:
play();
You told it to stop in the first frame, now you have to tell it to play again in the second! Waaalaa, hopefully this will keep others from experiencing the struggles I went through when following this tutorial!
Good work though, it was a great help in getting me started Craig!
June 3rd, 2008 at 10:22 pm
Thanks heaps Craig, I think I may have scrapped through my assignment with a credit. I did reference you of course.
June 18th, 2008 at 2:55 pm
Thank you!!! I cannot believe how many tutorials there are out there explaining why you have to make several classes to do what you have done here in less than 20 lines of code (including white space)!!! It took me some searching to find this one but I am sure glad I did. Well done
June 25th, 2008 at 1:23 pm
Hello Craig, Thanks a lot for this! I have a quick question though, i can’t seem to get this preloader to work with Internet Explorer? It works fine with firefox? Not a web expert so i was wondering whats the deal?
thanks again
July 8th, 2008 at 11:25 am
Agreed, it doesn’t seem to be working with IE7 after the first load, I have encountered this with other preloaders in AS3.
I’m going to look for a solution. Thank you.
July 8th, 2008 at 2:44 pm
Fixed it. I had to hack togeher some codes from a few different solutions, but basically this code doesn’t use any of the events that break in IE6 and 7 when reloading the already cached swf file. I used the same instance names so all you have to do is copy and paste, once 100% loaded I set it to go to and play frame 2, you can set it to go to any frame you want. Visit my website http://www.robertkrames.com for my contact info so you can send me your $100 tips for posting the solution, it took me like 5 hours to find it.
stop();
import flash.display.MovieClip;
import flash.events.Event;
this.addEventListener(“enterFrame”,onEnterFrame);
function onEnterFrame(e:Event){
loader_mc.scaleX = (this.loaderInfo.bytesLoaded/this.loaderInfo.bytesTotal);
loaded_txt.text = “Loading… ” + (Math.round((this.loaderInfo.bytesLoaded/this.loaderInfo.bytesTotal)*100)) + “%”;
if(this.loaderInfo.bytesLoaded == this.loaderInfo.bytesTotal){
gotoAndPlay(2);
this.removeEventListener(“enterFrame”,onEnterFrame);
}
}
July 10th, 2008 at 9:34 am
Hi Craig, I Built a complete Falsh Movie consisting of a few pictures fadding in and out with a whaite boarder around them…after finishing it I now need to and a preloader…I already have multiple frames and layers how can this be done???
Please let me know…
Thanks
Stealth-T4
July 20th, 2008 at 12:44 am
Simple…
Just add an scene on top of everything (with shift+f2 you enter the scene panel) and in that scene create the pre-loader.
Elliot
July 24th, 2008 at 2:36 pm
I am having a problem with this preloader in ie… works fine in firefox. When I used your fix I get a syntax error (modulus is unexpected)… and when you publish the movie the status bar just flashes on and off and it never plays the movie.
August 14th, 2008 at 3:50 am
Hi Craig,
Thank you for a very good tutorial. I’ve got some problems with loading an external swf instead of the picture. I’ve tried to load it with this code
stop();
this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress);
this.loaderInfo.addEventListener(Event.COMPLETE, onComplete);
function onProgress(e:ProgressEvent):void {
var loaded:Number = e.target.bytesLoaded;
var total:Number = e.target.bytesTotal;
var pct:Number = loaded/total;
loader_mc.scaleX = pct;
loaded_txt.text = “Loading… ” + (Math.round(pct * 100)) + “%”;
}
function onComplete(e:Event):void {
nextFrame();
var request:URLRequest = newURLRequest(“as3test.swf”);
var sida:Loader = new Loader();
sida.load(request);
addChild(sida);
}
but then the preloaders loading process gets interrupted. And I get this error message;
Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed.
Any suggestions on how to get past this?
regards Micke
September 2nd, 2008 at 6:29 am
Hi Craig,
I’m using your preloader code, thanks.
I’m developing a Flash site using AS3. The main page loads 5 subpages indvidually when clicking on their respective button (e.g. Contact, About Us….).
Each subpage has its own preloader (same code of course). The preloader is in the 1st frame of each subpage. Once loaded, it goes to nextFrame(); (as per your code). It does load, but I get error #1009: Cannot access a property or method of a null object reference…at wilkommen_fla::MainTimeline/onProgress()
When running the subpages on their own, the error doesn’t appear. But when run from my main file, I get the above error for each respective subpage, e.g. wilkommen_fla, NippesObjektApp_fla…… Same error.
How can I correct this?
September 13th, 2008 at 12:34 am
Hi, I came across your site from Google. I have a loader.fla file that I like but it won’t let me apply it as a loader. I guess it’s not a pre-loader but a loader. Lil asteriks like. That spins around and around. Well, I like it for my pre-loader and have no idea on how to make it get my index.fla file that has my maine webpage. Is there a site that has a tutorial or do you teach that as well or is the above good for that?
Any help would be appreciated. Thanks.
Stef
September 13th, 2008 at 1:58 pm
This loader is amazing thankyou…I’ve learnt so much about loading just from this 1 tutorial…I did find it got stuck in internet explorer if the page was refreshed but for whatever reason….If you change the nextFrame(); line for nextScene(); and put all of your movie on Scene 2 it work 100% of the time…For that reason…I love this tutorial….Once you get your head around the coding you can fiddle with all sorts of it.I have it all in script now with no objects on my timeline at all…It been great to help learn other things like that, THANKYOU FOR THIS TUTORIAL>
September 18th, 2008 at 10:30 am
[...] Read more [...]
September 21st, 2008 at 11:40 am
Hey thanks for posting this. I been searching everywhere for how to make preloaders for the new Flash CS3. Thanks a ton! it works for me! I have a question though, i’m use to the Action script 1 and 2, but it seem 3 is totally different. how do i make a button where i click it and then it sends me to a web page?
October 17th, 2008 at 2:20 am
Thank you Craig for this detailed tutorial!
However, mine looks great when I tested the movie with bandwidth simulation, it just never worked after it’s uploaded. The movie tends to load the entire swf then starts playing, which against what a “preloader” is there for. I’m not sure if anyone runs into similar problems like this one.
I tried it with IE7, Firefox, even Google’s Chrome.
Please advise. Thank you in advance.
October 20th, 2008 at 7:30 am
Micke,
I have a question for you. Is the SWF you are trying to load only a 1 frame? If not, that might be the problem. Try to put the SWF you are trying to load on 1 frame.
October 20th, 2008 at 10:31 am
Also, I’m pretty sure other people had this problem but make sure the font COLOR is the right one
black on black won’t display hehe, I’ve searched a long time!
October 23rd, 2008 at 11:38 am
Dont use a preloader for a banner lol
October 27th, 2008 at 5:04 pm
Hi, many thanks again for your tutorials. the question is what should we do if we want to add the preloader to each frame we are running. Lets take it this way I have a website with 5 pages, each page is one frame. No I want my preloader to load everytime I click on a button. I want the preloader not to load all the movie click, I want to load every page is clicked to be visited? I understand that i can add preloader before each frames of my website but im sure there is a soloution that preloader load the pages automaticly.
Thanks
October 29th, 2008 at 3:05 am
any ideas on why the number of the % would stack on top of each other instead of changing lik ein the example?? I’m going crazy over this. any help will be greatly appreciated.
October 29th, 2008 at 8:23 pm
Hey! Love the tutorial. Great Help to me, having a small problem though. I’m using two separate scenes, in the First is the preloader in the second is the content. It works semi well. The preloader doesn’t show up until it reaches 50%… Any ideas? (Everything works properly except the preloader doesn’t show up until 50%)
November 4th, 2008 at 1:08 am
The reason your preloaders aren’t showing up until it gets to 50% is because AS3/CS3 relies heavily you linking things from the library and you having the “export in first frame” option selected. If you want a preloader to start at zero, create a container movie with your preloader animation and load your main flash site into that.
November 6th, 2008 at 10:03 pm
Has anyone else experienced the preloader jumping to a full bar – shows ‘loading’ text but not the percentage, and then not advancing to the content (2nd frame), only in Firefox/Windows, and only once the swf has loaded a first time i.e. on refresh or from a link back to the page? I can only assume it’s some sort of caching issue at the moment…
November 16th, 2008 at 4:52 am
Thanks for your preloader. Nice! Any ideas of how can I load and external .swf file? or xml data?
Thanks in advance
November 16th, 2008 at 2:41 pm
To Florida web design guy – camon! The difference between your code and the authors is that you remove the event listener (it is a right thing to do). Now I woldn’t rely on comparing those 2 loaded values, instead I suggest using event of “completion of loading” (as did the author). If you need help, you may consult me by ICQ:8761217;
Micke, you have to add an event listener so it could determine when your external file is loaded, like this:
…
function onComplete(e:Event):void {
nextFrame();
var request:URLRequest = newURLRequest(”as3test.swf”);
var sida:Loader = new Loader();
sida.load(request);
sida.loaderInfo.addEventListener(Event.COMPLETE, onLoad);
function onLoad(e.Event):void
{
addChild(sida);
sida.loaderInfo.removeEventListener(Event.COMPLETE, onLoad);
}
November 16th, 2008 at 4:08 pm
And to author:
why would you declare the variables in that function, it’s just eating up the processing power by redeclaring them over and over again.
I would declare them outside the function, and then just assign values to them inside the function, like this:
…
var variable1:Number;
function …
{
variable1 = …;
…
I’m sure some of you would say that the difference in the processing power is unnoticeable at all on virtually any of today’s computers.
I’m less speaking for the processing power, but more for the programmer’s ethics of code writing clearness of code.
Cheers!
November 18th, 2008 at 10:05 am
How do you make preloader work with FLV movies ???
I put a FLVPlayback object on scene and the preloader dont works anymore…
My Preloading text only appears at 100%
Need help for this !!!
Please…
November 18th, 2008 at 11:56 am
Graab, no idea why it won’t work. You could send me your file and I’ll check it out.
November 18th, 2008 at 11:57 am
Graab, no idea why it won’t work. You could send me your file and I’ll check it out. FlashSpec@gmail.com
November 19th, 2008 at 6:20 pm
I got a problem where the prelaoder plays, then it stops, and i need to right clik on it and select play, and then the flash file start playing. any ideas. I got flash files thta work and some that don’t and wonder if adding/ using components is the culprit
November 21st, 2008 at 3:38 pm
Thanks a bunch ! I am an absolute beginner with flash and I´ve seen about three dozens of “preloaders” in the last 3 hours and nothig had worked for me. This is one is perfect. Thanks a lot.
December 13th, 2008 at 1:39 am
i got this..
TypeError: Error #1010: A term is undefined and has no properties.
at Untitled_fla::MainTimeline/frame1()
December 19th, 2008 at 8:30 pm
Hi,
I just wanted to say THANK YOU SO MUCH!!
Seriously, been looking and Trying soo many diferent ways to create a preloader (on a google search for S I M P L E preloader)!
It took me a bit to find this one and do to my past luck I was hesitant to trying it, but I’m sooooo glad I did.
This is definitely so easy to follow and so simple! Thanks a bunch again. I’m a coder but new to AS3 and this was definitely easy to understand and implement.
Thanks again!
January 6th, 2009 at 12:24 am
i hv proble to flashcs3
hw 2 apply actionscrit to next scene
i want 2 go play next scene bt it is not happend
can u send me any tutorial
thnks
January 8th, 2009 at 10:14 am
Excellent…!!!
January 13th, 2009 at 1:55 am
I have the same problem, any ideas?.. help meee
# Jason Says:
October 17th, 2008 at 2:20 am
Thank you Craig for this detailed tutorial!
However, mine looks great when I tested the movie with bandwidth simulation, it just never worked after it’s uploaded. The movie tends to load the entire swf then starts playing, which against what a “preloader” is there for. I’m not sure if anyone runs into similar problems like this one.
I tried it with IE7, Firefox, even Google’s Chrome.
Please advise. Thank you in advance.
January 15th, 2009 at 8:47 am
Hi, thanks a lot for providing such interesting and useful tutorials. I’m new to Flash and programming, and I find it very understoodable and nice to read your tutorials. Keep up great work!
January 24th, 2009 at 8:46 am
Brilliant! thank you!
I’m having trouble loading an external file (very new at this)… I’ve got this code from a response above, but it’s coming up with errors, code below;
function onComplete(e:Event):void
{
nextFrame();
var request:URLRequest = new URLRequest(“bw_website.swf”);
var sida:Loader = new Loader();
sida.load(request);
sida.loaderinfo.addEventListener(Event.COMPLETE, onLoad);
function onLoad(e:Event):void
{
addChild(sida);
sida.loaderInfo.removeEventListener(Event.COMPLETE,onLoad);
}
it’s coming up with
1084: Syntax error: expecting rightbrace before end of program.
January 28th, 2009 at 11:58 am
Whats wrong here?
stop();
this.LoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress);
this.LoaderInfo.addEventListener(Event.COMPLETE, onComplete);
function onProgress(e:ProgressEvent):void
{
var loaded:Number = e.target.bytesLoaded;
var total:Number = e.target.bytesTotal;
var pct:Number = loaded/total;
loader_mc.scaleX = pct;
loaded_txt.text = “Loading…”+(Math.round(pct* 100))+”%”;
}
function onComplete(e:Event):void
{
nextFrame();
}
January 28th, 2009 at 11:59 am
Btw. The error thing says:
TypeError: Error #1010: A term is undefined and has no properties.
at Aapning_fla::MainTimeline/frame1()
January 31st, 2009 at 9:58 am
Preloader works fine!
My issue is, as it appears is the same for others, how do you successfully get the preloader to then succesfully a .swf file that is in scene 1 after the preloader?
I have tried the work around solutions others have posted in comments, though non of them work, they just play the first label in the scene I am wantint the play after the preloader, then stops and fails to play the rest of the .swf file.
Any help would be greatly appreciated.
Chris
January 31st, 2009 at 10:01 am
repost, left key word out…
Preloader works fine!
My issue is, as it appears is the same for others, how do you successfully get the preloader to then play a .swf file that is in scene 1 after the preloader?
I have tried the work around solutions others have posted in comments, though non of them work, they just play the first label in the scene I am wanting played after the preloader, then stops and fails to play the rest of the scene in the .swf file.
Any help would be greatly appreciated.
Chris
February 4th, 2009 at 9:06 pm
I replaced line 17
nextFrame();
with this one
gotoAndPlay(2);
and it works fine with flash movies
February 5th, 2009 at 1:16 pm
When I test the movie, it remains blank for almost 50% of the movie load, the loader starts only after that.
February 16th, 2009 at 1:22 pm
Is there a way to have it only load a % then play…say 25%…as I just need to have it preload 2 embedded flvs at the front to load ….then it plays fine
February 24th, 2009 at 7:57 am
What if you have a relatively complex preloader that’s counting up to 100%? I guess this bad-boy will have to go on the first frame. Do you then need to preload your preloader? Any ideas how you prevent that from appearing to start at say 30% rather than at 1%?
February 25th, 2009 at 1:35 pm
Has anyone had problems with this preloader in Firefox? It works fine in Safari, Explore and Chrome…but in Firefox the blue rectangle just appears. Is there something I am doing wrong? Check out the test link so you can see what I mean:
http://www.okcorp.com/home_test_09.html
Thanks…
March 11th, 2009 at 5:32 pm
I was able to get the prloader for a hr pic working (thanx!) but after attempting to add an external swf with the use of some code from previous responses it failed miserably. I’m very new to flash could anyone tell me what is wrong with the code below…
stop()
this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress);
this.loaderInfo.addEventListener(Event.COMPLETE, onComplete);
function onProgress(e:ProgressEvent):void
{
var loaded:Number = e.target.bytesLoaded;
var total:Number = e.target.bytesTotal;
var pct:Number = loaded/total;
loader_mc.scaleX = pct;
loaded_txt.text = “Loading…” + (Math.round((pct * 100))+”%”);
}
function onComplete(e:Event):void{
gotoAndPlay(2);
var request:URLRequest = newURLRequest(“fa.swf”);
var sida:Loader = new Loader();
sida.load(request);
sida.loaderInfo.addEventListener(Event.COMPLETE, onLoad);
function onLoad(e).Event):void
addChild(sida);
sida.loaderInfo.removeEventListener(Event.COMPLETE, onLoad);
}
… any help would be greatly appreciated
March 18th, 2009 at 2:56 am
is there a way to make it preload only 50% of total bytes and then start playing. i mean if the file is really huge and i don’t want the preloader to take forever…
please if anyone can help!
Thanks!
April 3rd, 2009 at 5:31 pm
A very helpful tutorial, thanks
April 6th, 2009 at 12:01 pm
Could somebody please point to as3 tutorial, where i can find a speedo dial preloader tutorial. Thanx in advance.
April 7th, 2009 at 8:19 am
The preloader works fine, Thanks! However I have the same problem as some others on here, in my case it doesn’t start until 95%. I think the problem is that my content is in the library, and the stage is empty on frame 2. In the publish settings I’ve set “Export classes in frame: 2″ but I still get a long delay before the preloader starts. Is there a way to delay library loading until frame 2?
Thanks!
April 7th, 2009 at 9:55 am
Seems there is no easy way. Lee Brimelow has a tutorial on making a separate preloader because of the complexity of making a built in one:
http://theflashblog.com/?p=438
April 19th, 2009 at 11:46 pm
Nice ,Thanks For your Preloader Tutorials
May 7th, 2009 at 9:44 am
im using flash Cs3 pro. when i try to test the movie, or simulate the download the script compilor error window pops up with two reports. there are syntax errors with the
function onProgress(e:ProgressEvent):void
on line 6. and another on the last line of scripting.
is there anything i am doing wrong?
stoneyo@sbcglobal.net
May 21st, 2009 at 2:17 pm
Very nice thanks for this toot.
May 23rd, 2009 at 6:01 pm
Sara, just put a “}” (rightbrace) before end of code (just read the error and do what it says!!).
Dave, there’s no complexity in creating a built in preloader.
Just check my stuff: http://bit.ly/CtVgv
May 25th, 2009 at 9:04 pm
I n c r a d i b l e, in first time of my life, a preloader ready and functionally.
Thx so much, save my month.
May 26th, 2009 at 12:49 pm
Craig,
I am a Graphic Artist and have been now for roughly 10 years. I was trained at multiple schools for both fine arts and illustration all the way to extreme graphic arts like identity packages and such. Recently I learned that a large number of my clients were interested in new websites and web applications. These unfortunately were not in my knowledge base aside from basic dreamweaver knowledge.
I would like you to know that I have spent the past few months learning flash as to better my understanding of interactive web design and you have been a major part. Aside from my learning curve (which is a big help) you have given me the knowledge needed to build myself as an artist. I have even been able to attract much more business due to this.
Thank you very much and I would love to speak with you via eMail. Feel free to shoot me a message anytime. I can show you what I’m working on and maybe get some ideas. Thanks again.
Brett Sanders
KreAshun Studios
May 29th, 2009 at 12:58 pm
Im having problems with the bar width animation. I need to have that bar in the main stage and the preloader has to be in a movieclip. so i figured if i ..
MovieClip(parent).loadbar.scaleX = pct;
..if would work. but it’s not getting to the bar!
any thoughs?? thanx in advance
August 19th, 2009 at 2:37 am
Hi, I’m practicing with this tutorial, and it’s very clear and easy to understand, unlike other tutorials I’ve tried to use. I’m very, very new to Flash(I just got it a week or two ago, and only know how to make buttons because they’re the easiest thing to do, in my opinion), and I wanted to make a flash movie, and of course you need a preloader, so I decided to make one. I got up to the Actionscript, and got an error saying “Access to undefined property” for lines 11 and 12. I, having no knowledge of Actionscript whatsoever(I must learn it…), am baffled. Any way to fix that?
August 19th, 2009 at 10:05 pm
^In addition to my previous comment, I test the preloader, and it flashes from the preloader to the pictures and back. I put in the Actionscript to stop that in the first line, but it still does it. I followed the steps to the letter, so I’m confused as to why this is happening. Any ideas?
August 21st, 2009 at 9:19 am
I had the same problem that the preloader only started after 95%. I solved it by rightclicking in the library on my biggest movieclip containing most of the images. in the linkage menu I selected export for actionscript but.. and here is the mother.. deselected ‘Export in First Frame’!
If you think about it, it makes sence.
October 6th, 2009 at 3:42 pm
Hi there, I just came across this AS3 preloader and must say it was easy to implement.
My issue is with Firefox v3.5.3. When I refresh the page after the initial preload the site fails to load and only displays the preloader rectangle.
This only occurs in FF, all other browsers are good. From what I gather it’s a cache issue, does anyone have any more insight on how to overcome this?
January 14th, 2010 at 11:42 am
This solution does not work. I appreciate posting of information but I don’t really appreciate posting info that is slightly wrong. ( :
February 24th, 2010 at 9:12 am
yo this still worked for me, thanks for posting it
March 3rd, 2010 at 5:43 am
I have written a preloader that addresses a lot of random problems such as the annoying ’stuck at 100%’ bug.. Check it out at http://www.as3blog.org/?p=6