Question
STORING CODE INSIDE A VARIABLE?
Code.
function abc()
{
Object(parent).play();
}
The code above works but i want to store Object(parent) inside a variable for easy use. I don't know a dataType for storing codes inside a variable.
Code containing variable.
function abc()
{
c.play();
}
var c:??? = Object(parent);