User Guide

628 ActionScript classes
Methods inherited from class Object
charAt (String.charAt method)
public charAt(index:Number) : String
Returns the character in the position specified by the parameter index. If index is not a
number from 0 to
string.length - 1, an empty string is returned.
This method is similar to
String.charCodeAt() except that the returned value is a character,
not a 16-bit integer character code.
Availability: ActionScript 1.0; Flash Lite 2.0
substr(start:Number, length:Number) :
String
Returns the characters in a string
from the index specified in the
start parameter through the
number of characters specified in
the length parameter.
substring(start:Number, end:Number) :
String
Returns a string comprising the
characters between the points
specified by the start and end
parameters.
toLowerCase() : String Returns a copy of the String
object, with all uppercase
characters converted to lowercase.
toString() : String Returns an object's properties as
strings regardless of whether the
properties are strings.
toUpperCase() : String Returns a copy of the String object,
with all lowercase characters
converted to uppercase.
valueOf() : String Returns the string.
addProperty (Object.addProperty method), hasOwnProperty
(Object.hasOwnProperty method), isPropertyEnumerable
(Object.isPropertyEnumerable method), isPrototypeOf (Object.isPrototypeOf
method), registerClass (Object.registerClass method), toString
(Object.toString method), unwatch (Object.unwatch method), valueOf
(Object.valueOf method), watch (Object.watch method)
Modifiers Signature Description