User Guide
380 Components Dictionary
DataSet.last()
Availability
Flash Player 7.
Edition
Flash MX Professional 2004.
Usage
dataSetInstance.last()
Returns
Nothing.
Description
Method; makes the last item in the current view of the collection the current item.
Example
The following code, attached to a Button component, goes to the last item in the
DataSet collection:
function goLast(evt_obj:obj):Void {
inventory_ds.last();
}
goLast_button.addEventListener("click", goLast);