Hi there,
Trying to remove the _level part from from the instance name when I trace something.
Is it possible to trace just the name without the _level part.
Here’s my code.
[AS]
var btnA:Array = [infoicon,infoicon2,infoicon3];
infoicon.onRollOver = function() {
trace(btnA);
};
[/AS]
Which gives me
[AS]_level0.infoicon,_level0.infoicon2,_level0.infoicon3[/AS]
I know you can use [AS]._name[/AS] but it does not seem to be working with the array
Any ideas.