Is there some way to use callLater to set a property that has a setter? So far, all I can think of is to create a dummy function that does the setting and pass it in the callLater:
private function setSelectedChild(viewStack:ViewStack,
newChild:Container):void
{
viewStack.selectedChild = newChild;
}
...
callLater(setSelectedChild, [someBox]);
Any better way to do it?
--
Jason

