How can I get a function to work like this:
function01(mcName,{prop1:'asdf',prop2:'asdf'});
Like with tweener, thanks in advance.
Declare you function like this: (then call it as you have above)
function function01(mc:MovieClip, properties: Object)
{
trace (mc); // result = "[object MovieClip]"
trace (properties.prop1); // result "asdf"
trace (properties.prop2); // result "asdf"
}
BTW – I don’t accept thanks in advance .. I want more thanks now 












