Re: [Flashcoders] Ajax and ActionScript 2.0

2006-06-28 Thread michael . bordner
Our application is 95% Flash 8, relying on Ajax to fill the spaces where Flash fails, so we're also looking for Ajax developers who have mastered Flash to Javascript communication. Could somebody share with me 1 example where "AJAX"/XMLHttpRequest succeeds where Flash fails ? I would prefer flas

Re: [Flashcoders] another mtasc question

2006-06-14 Thread michael . bordner
if you look at the Base64.as class he provided, he should actually remove the \ from the \+ the replacement string should be "+" not "\+" or "\\+" Nicolas Cannasse <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 06/14/2006 06:53 AM Please respond to Flashcoders mailing list To Flashcoders

RE: [Flashcoders] another mtasc question

2006-06-13 Thread michael . bordner
hey Andreas, this \+ seems like an error to me. it should either be \\+ if he is trying to replace the text "\+", or just "+" if he is only trying to replace the "+". However, because he's replacing it with %2B, it seems like he is only trying to replace the + since 2B is the hex for the +

Re: [Flashcoders] random concatenated txt question

2006-03-06 Thread michael . bordner
you might have an issue with using x as a global variable? try defining x with "var" in the for loop.. or somewhere in the function. if you do not use var, it should become a global variable. -mike "Byron Canfield" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 03/06/2006 01:55 PM Plea