Internet Commerce

Partners & Affiliates

Developer Channel


Featured Flash FLA
Gallery Downloads 11401 Flash Movies | 5 New Flash Movies Added
What's New | Top 100

Featured FLA

»  Author: Nick Kouvaris
»  Title: Znax
»  Description: Znax is a board game. Click 4 tiles of the same color and form squares as big as you can. You will erase all the tiles inside the square and collect points. Get maximum score if you make a square with game edges.
»  More by: Nick Kouvaris


Random FLAs | Add Flash Movie
Featured Flash Site
Gallery Downloads 4941 Flash Sites | 1 New Flash Links
What's New | Top 100 Flash Site

Featured Site

»  Author Agence WOP Digital Agency
»  Title: Electricdrum
»  Description: French WOP Agency, 3D websites, Flash (Papervision, Away 3D), event or institutional projects. The agency operates on all digital projects: consulting, design, graphic design, development, online communication. The WOP agency follows you on the implementation of original, creative and optimized digital projects.


Random Links | Add your own Flash Related Links
Flash Tutorials 1481 Tutorials 7 New Tutorials Added!
What's New | Top100

» How To Make A Simple Animation Using Christmas Clips
» Simple Step by step flash game tutorial Spot the diffrence
» How To Make A Moving Text Slide
» Create Flash Banner With Text Float Effect
» How To Make Zoo Photos Slideshow
» How To Make A Dolphin Photos Slideshow
» How To Make A Fathers Day Slideshow
» How To Make A Transparent Background of Your Flash File
» Create Flash Banner With Text Disco Light Effect Today we will introduce you a Text Disco Light eff
» Unknown Tag: Title10
Random Tutorial | Add Site


Tutorials Home What's New Top Rated Submit myTutes Random!

Search Tutorials


Tutorials Tutorials » Actionscripting

Categories Creating a preloader for use with the attachSound command
Author: FlashGuru | Website: http://www.flashguru.co.uk |

 
Page 3
«prev 1 2 3 4 next»

Now for the preloader:

Inside of your main movie, create a new movieclip and place it on the frame that you want your sound to start loading,from your library. Select the movieclip on the main timeline and right-click, choose actions, then copy and paste this script into the actions window:


onClipEvent(load){
 loadMovieNum("sound.swf",1)
}
onClipEvent(enterFrame){
 percentloaded=Math.floor(_level1.getBytesLoaded()/_level1.getBytesTotal()*100)
 percentdisplay=percentloaded + "%"
 if(percentloaded == 100 && !initialized){
  _level1.mysound()
  initialized=true
  _visible=false
 }
}

The above movieclip when loaded will now attempt to load the swf file named "sound.swf" into level one(_level1). The movieclip then loops everyframe(onclipEvent(enterFrame)) and checks to see if the sound movie has fully loaded, we do this by using two commands, the first is getBytesLoaded() which returns the number of bytes which have loaded for the specified movieclip and the second is getBytesTotal() which returns the total size of the specified movieclip. We then turn these values into a percentage and check to see if the percentage is equal to one hundered(100). If it is one hundred(100) then we call our function on the main timeline of level one (_level1 the level into which we loaded our movie) ashte movie is fully loaded. This function only wants to be called once when the movie is first found to be fully loaded so we use a simple boolean to determine whether we have already called the function, this is the code that says "!initialized" which basically means in english "if not initialized" then call the function, when the function is called we then set the value of initialized to be true therefore the function will not be called again from this movieclip:

initialized=true

Now inside of this movieclip if you want to display the precentage of the movie loaded simply create a new textfield, right-click choose panels>text options and check the dynamic text box, now in the variablename field enter "percentdisplay". If you dont want to display a petcentage then remove the line which says:

 percentdisplay=percentloaded + "%"

You can obviously display the number of bytes loaded etc.. by adding the correct code inside of the onClipEvent(enterFrame) parantheses. Also inside of this movieclip you should create your loading sound animation which will play only while the sound.swf file is loading, this is easily accomplished by setting the visiblity of the movieclip to zero when the sound.swf file has loaded:

_visible=false
So there it is the sound will now preload as and when you want it to and then play!

«prev 1 2 3 4 next»

» Level Intermediate

Added: : 2001-02-08
Rating: 8.16 Votes: 100
Hits: 2985
» Author
No details available
» Download
Download the files used in this tutorial.
Download (64 kb)
Get conversion and unzipping tools for PC and Mac here!

» Forums
More help? Search our boards for quick answers!

Please rate this tutorial, 10 is the top rating, you can also click the comments link to read/write a review.
10 9 8 7 6 5 4 3 2 1
Read or Post Comments