Re: [Flashcoders] send email from flash project (exe)

2011-05-10 Thread Bassam M
Hi Cor do you know why I can't receive Arabic text ,if I try to send Arabic text flash send data like this %D9%84%D8%A8%D9%84%D8%A7%D8%AA%EF%BB%99, and I'm recieving empty email, asp.net code working fine. any idea Thanks Bassam On Thu, May 5, 2011 at 2:32 AM, Bassam M sense...@gmail.com

Re: [Flashcoders] send email from flash project (exe)

2011-05-10 Thread Karl DeSaulniers
Hi Bassam, You'll probably need to escape/unescape your data. That way your special characters are preserved. (But I am somewhat guessing, I have not worked with Arabic text as of yet.) http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/ package.html#escape()

RE: [Flashcoders] send email from flash project (exe)

2011-05-10 Thread Cor
: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Bassam M Sent: dinsdag 10 mei 2011 11:10 To: Flash Coders List Subject: Re: [Flashcoders] send email from flash project (exe) Hi Cor do you know why I can't receive Arabic text ,if I try to send

Re: [Flashcoders] send email from flash project (exe)

2011-05-10 Thread Bassam M
] send email from flash project (exe) Hi Cor do you know why I can't receive Arabic text ,if I try to send Arabic text flash send data like this %D9%84%D8%A8%D9%84%D8%A7%D8%AA%EF%BB%99, and I'm recieving empty email, asp.net code working fine. any idea Thanks Bassam On Thu, May 5, 2011

RE: [Flashcoders] send email from flash project (exe)

2011-05-05 Thread Cor
Hi Bassam, Try this: newLoadVars = new URLVariables(); loadvarSend=new URLRequest((http://.sensemis.com/test/contact.aspx;); loadvarSend.method=URLRequestMethod.POST; loadvarSend.data=newLoadVars; loadvarLoader=new URLLoader ; loadvarLoader.dataFormat=URLLoaderDataFormat.VARIABLES;

Re: [Flashcoders] send email from flash project (exe)

2011-05-05 Thread Bassam M
Thanks you Cor my code now working the problem was in the server Regard's Bassam On Thu, May 5, 2011 at 12:54 AM, Cor c...@chello.nl wrote: Hi Bassam, Try this: newLoadVars = new URLVariables(); loadvarSend=new URLRequest((http://.sensemis.com/test/contact.aspx;);