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.
According to our method, we have to construct a message called myText. As mentioned, this has to consist of a text followed by the size of our file, which is why we write the following:
In this case, our text is “NOW LOADING”, where we insert quotes, since it's a string literal. We retrieve the size of our file by using the method anyMovieClip.getBytesTotal. If we change anyMovieClip to _root, the size of our file in bytes is returned, but we want to display it in kilobytes. The reason why we divide by 1000 is that kilo simply means 1000 (one kilometer is 1000 meters!). Furthermore, we want to round off this value to the closest integer that is less than or equal to the value, which is why we write Math.floor. Finally, we add the appropriate value at the end of our message.