Greetings,
would it be possible to access a variable name containing a class from the class itself?
Example:
var __NAME__ = new TestClass();
package com.Test
{
public class TestClass
{
public function TestClass():void
{
trace(A WAY TO TRACE __NAME__);
}
}
}
Obviously not passing it as an argument. For as simple as it may sounds I am going crazy
Thanks in advance
- M