User Guide
Button._name 141
Button._name
Availability
Flash Player 6.
Usage
my_btn
._name:String
Description
Property; instance name of the button specified by my_btn.
Example
The following example traces all instance names of any Button instances within the current
Timeline of a SWF file.
for (i in this) {
if (this[i] instanceof Button) {
trace(this[i]._name);
}
}