What I'm doing right now - Field1.text = "OK" Field2.text = "OK" Field3.text = "OK"What I'd like to do - GlobalField.text = "OK" [change propogates to 3 instances of the movieclip]
private function set GlobalField(s:String):Void{
Field1.text = s;
Field2.text = s;
Field3.text = s;
}
GlobalField = "OK";
ryanm
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

