Hi,I'm working with flash, not flex. I want to be able to1. add an afcs
object to stage,2. subscribe to a baton property,3. unsubscribe4. remove
the afcs object5... repeat1 to 4 are working, but when I try and repeat
the process, I can't seem to subscribe.I have three buttons on stage to
add, logout and removefunction onLogin(e:MouseEvent):void{ cocomo = new
CocomoTest(); addChild(cocomo); cocomo.login();}function
onLogout(e:MouseEvent):void{ cocomo.destroy();}function
onRemove(e:MouseEvent):voi...