Featured FLA
» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden
Featured Site
» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.
In the actions of the first frame of your movie (right click on the frame - actions) put this code:
a = getBytesLoaded();
b = getBytesTotal();
c = Math.ceil((a/b)*100)+"%";
What do they do
a and b do what they say. a find out how many bytes have been loaded and set variable 'a' as that value and b finds out how many bytes need to be loaded (and again sets 'b' as that value)
C works out (A/B)X100 (the percentage loaded) and then the +"%" out side of the maths section adds the % sign to the end of what is shown in the text box (made later)