Search tutorials
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
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 Votes: 79 |
| » 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) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!