Question
Curious about object trace
When I trace an object - say an instance of myMenu named myMenu, I get the following:
trace (myMenu);
// returns [object, myMenu_1];
I'm very curious about the _1 at the end of myMenu... why is it there? What does it signify. I would think it would return just the instance name.