}
}
Finally, in another AS file or FLA script, the following code invokes the
an instance of the RecordSet class. It defines
.
sortRows()
import RecordSet;
var myRecordSet:RecordSet = new RecordSet();
try {
myRecordSet.sortRows();
trace("everything is fine");
} catch (e:RecordSetException) {
trace(e.toString());
} catch (e:MalformedRecord) {
trace(e.toString());
}
See also
Error
class,
,
throw
,
class
extends
blocks for each type of error that is thrown by
catch
method on
sortRows()
try..catch..finally
987
Need help?
Do you have a question about the FLASH MX 2004-ACTIONSCRIPT LANGUAGE and is the answer not in the manual?
Questions and answers