Unescape Function - MACROMEDIA FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE Reference

Flash lite 2.x actionscript language reference
Hide thumbs Also See for FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE:
Table of Contents

Advertisement

Example
The following example uses a
statement to display in the Output panel the methods
trace()
and properties of the dynamically created text field called
:
error_txt
this.createTextField("error_txt", this.getNextHighestDepth(), 0, 0, 100,
22);
for (var i in error_txt) {
trace("error_txt."+i+" = "+error_txt[i]);
}
/* output:
error_txt.styleSheet = undefined
error_txt.mouseWheelEnabled = true
error_txt.condenseWhite = false
...
error_txt.maxscroll = 1
error_txt.scroll = 1
*/

unescape function

unescape(x:String) : String
Evaluates the parameter
as a string, decodes the string from URL-encoded format
x
(converting all hexadecimal sequences to ASCII characters), and returns the string.
Availability: ActionScript 1.0; Flash Lite 2.0
Parameters
- A string with hexadecimal sequences to escape.
string:String
Returns
- A string decoded from a URL-encoded parameter.
String
Example
The following example shows the escape-to-unescape conversion process:
var email:String = "user@somedomain.com";
trace(email);
var escapedEmail:String = escape(email);
trace(escapedEmail);
var unescapedEmail:String = unescape(escapedEmail);
trace(unescapedEmail);
The following result is displayed in the Output panel.
user@somedomain.com
user%40somedomain%2Ecom
user@somedomain.com
90
ActionScript language elements

Advertisement

Table of Contents
loading

Table of Contents