Cara o negocio seria : campoTexto.text =""; Ou vc cria um metodo que receba seu container "form" e leia todos os seu objetos do tipo campoTexto e seta a propriedade text=""
Veja esse exemplo: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:Script> <![CDATA[ import mx.controls.TextInput; import mx.core.Container; private function cleanAll(container:Container):void{ for (var i:int=0;i<container.getChildren().length;i++){ if (container.getChildAt(i) is TextInput){ (container.getChildAt(i) as TextInput).text = ""; } } } ]]> </mx:Script> <mx:Form x="62" y="227" width="100%" height="100%" id="myForm"> <mx:TextInput text="werwe"/> <mx:TextInput text="werwer"/> <mx:TextInput text="werwer"/> <mx:TextInput text="werwerw"/> <mx:TextInput text="werwe"/> <mx:TextInput text="werwer"/> <mx:TextInput text="werwer"/> <mx:TextInput text="werwe"/> <mx:TextInput text="werwerw"/> <mx:TextInput text="werwerwerwe"/> </mx:Form> <mx:Button x="62" y="155" label="Button" click="cleanAll(myForm)"/> </mx:Application> Abraço --~--~---------~--~----~------------~-------~--~----~ Você recebeu esta mensagem porque está inscrito na lista "flexdev" Para enviar uma mensagem, envie um e-mail para flexdev@googlegroups.com Para sair da lista, envie um email em branco para [EMAIL PROTECTED] Mais opções estão disponíveis em http://groups.google.com/group/flexdev -~----------~----~----~----~------~----~------~--~---