Building Preloaders - 20.6 Creating Preloaders for Files with Components
(Page 7 of 7 )
Problem
Your movie contains components, and they prevent the preloader from appearing until the movie is almost entirely loaded.
Solution Use the same principles as discussed in Recipe 20.5. Additionally, assign a frame other than 1 to the Export frame for classes field.
Discussion Components are special movie clips. And by default they are set to export on the first frame. That means that in order to properly preload an SWF that uses components you must employ the same strategy as is discussed in Recipe 20.5. However, in addition to the challenges presented by exported movie clips, components present a new challenge. Unlike standard exported movie clips, components are composed not only of graphical elements, but they consist also of ActionScript code. That ActionScript code is placed in special structures called classes, and those classes can account for rather significant file size. For example, the Loader component is approximately 27KB, almost all of which is due to the code in classes.
Like exported movie clips, classes export on the first frame by default. That means that all the code in all the classes used by an SWF must download before the first frame can play back, during which time the the user waits at a blank screen for seconds or even minutes. However, it’s remarkably simple to adjust the export frame for the classes used by a Flash file:
- Open the Publish Settings by selecting File -> Publish Settings.
- Select the Flash tab.
- Click on the Settings button to the immediate right of the ActionScript version menu.
- Enter a frame number greater than 1 in the Export frame for classes field.
- Click OK.
In order for a component to properly work, you must make sure that the classes it requires are exported on a frame before the component is used.
| DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware. |
|
This article is excerpted from chapter 20 of the Flash 8 Cookbook, written by Joey Lott (O'Reilly, 2006; ISBN: 0596102402). Check it out today at your favorite bookstore. Buy this book now.
|
|