[flashpro] simple PHP form

Weismell Kim vizualizer at gmail.com
Mon Sep 19 02:22:06 EDT 2005


I'm not sure this code would be helpful or not, anyway try this code.


AS

_global.escape2 = function(str:String) {
	var str2 = str.split('%0D');
	var str3 = str2.join('%0D%0A');
	return str3;
};

This global function add one more linefeed character(in url encoded
type) right after carraige return character in your query. So, you
have to transfer all the flash query form into url-encoded character
with escape() function before using above function.


More information about the FlashPro mailing list