Featured FLA
» Author: Nitin Tikhe
» Title: Cart
» Description: This Animation Tut is a fun and useful for kids below 15 years. Watch the Flag, Doors, Stick and Horse movements.
» More by Nitin Tikhe
Featured Site
» Posted in the Flash Kit Links section
» Title: Banana Swimwear
» Description: This is a banana swim wear interactive catalog we designed and animated in Flash
If the user changes the number of text fields, we must remove the existing
label and value fields before we recreate the new fields.
This is handled by the function removeTextFields, shown below.
function removeTextFields() {
for (var i=0; i < 10; i++) {
if (this["ChartLabel"+i]) {
this["ChartLabel"+i].removeTextField();
}
if (this["ChartValue"+i]) {
this["ChartValue"+i].removeTextField();
}
}
}
This function tests whether the text field exists and if so, removes it.