Sounds like you want to say:

Alert.show("your message here")

That will give you a simple pop-up with your confirmation text.

If you want to use a custom component for your pop-up, investigate the PopupManager class.

Cheers,
Lach


On 28/11/2006, at 10:41 PM, munene_uk wrote:

I have built a simple mail application that allows the user to send a
message to multiple users. once the message is successfully sent it
returns a message i.e "the message has been sent to the following
recipients [EMAIL PROTECTED], [EMAIL PROTECTED] e.t.c"

the issue is that this data is returned as an array on this function
in which i am using a textbox to display the results, however i would
like to use an alert box to display the results instead.

public function onSendResult(result:Array):void{

var str:String = result.toString();

string_res.htmlText= str;

}

how would i go about doing this?

Reply via email to