chr function
chr(number:Number) : String
Deprecated since Flash Player 5. This function was deprecated in favor of
.
String.fromCharCode()
Converts ASCII code numbers to characters.
Availability: ActionScript 1.0; Flash Player 4
Parameters
- An ASCII code number.
number:Number
Returns
- The character value of the specified ASCII code.
String
Example
The following example converts the number 65 to the letter A and assigns it to the variable
:
myVar
myVar = chr(65);
See also
fromCharCode (String.fromCharCode method)
clearInterval function
clearInterval(intervalID:Number) : Void
Stops the setInterval() call.
Availability: ActionScript 1.0; Flash Player 6
Parameters
- A numeric (integer) identifier returned from a call to
.
intervalID:Number
setInterval()
Example
The following example first sets and then clears an interval call:
function callback() {
trace("interval called: "+getTimer()+" ms.");
}
var intervalID:Number = setInterval(callback, 1000);
50
ActionScript language elements
Need help?
Do you have a question about the FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE and is the answer not in the manual?