Tutorials Home
What's New
Top Rated
Submit
myTutes
Random!
Dynamic Pie Chart in Flash 5
Author: Helen Triolo
| Website: http://www.i-technica.com |
Adding the Actions (con't)
Step 4.1 :
Initializing
In this section we create arrays which contain the following items
- aCount: counts for each segment of chart. Total needn't be 100.
- aCategory: category names for each (corresponding) segment
- aColor: colors (defined as hex values) for each segment
Other variables that will be needed are defined here too. If desired, the array values could be read from an external text file, or even calculated with an ASP or CF script from a database and sent to Flash.
aCount = new Array(20, 5, 50, 37, 10);
aCategory = new Array("lions", "monkeys", "birds", "elephants", "snakes");
nElements = aCount.length;
aColor = new Array(0x0000cc, 0x669999, 0xcc66cc, 0x00cccc, 0x9933cc);
aPercent = new Array(nElements);
nDepth = 1;
| » Level Advanced |
|
|
Added: : 2000-12-15
Rating: 7.40 Votes: 79
Hits: 1688
|
| » Author |
|
Helen Triolo started i-Technica, a web design shop in the Washington DC area, three years ago, after being an apps engineer for a Silicon Valley company and then a programmer for an uncountable number of years. She's been hooked on Flash since buying a copy last January.
|
| » Download |
|
Download the files used in this tutorial.
|
|
Download (13 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.
|
|
|