Dataset.afterloaded - MACROMEDIA FLASH 8-COMPONENTS LANGUAGE Reference

Components language reference
Table of Contents

Advertisement

DataSet.afterLoaded

Availability
Flash Player 7.
Edition
Flash MX Professional 2004.
Usage
Usage 1:
var listenerObject:Object = new Object();
listenerObject.afterLoaded = function (eventObj:Object):Void {
// ...
};
dataSetInstance.addEventListener("afterLoaded", listenerObject);
Usage 2:
on (afterLoaded) {
// ...
}
Description
Event; broadcast immediately after the
The event object (
eventObj
The DataSet object that generated the event.
target
The string
type
"afterLoaded"
Example
In the following example, a form named
items in the data set
contact_ds
contact_ds.addEventListener("afterLoaded", loadListener);
var loadListener:Object = new Object();
loadListener.afterLoaded = function (evt_obj:Object) {
if (evt_obj.target == "contact_ds") {
contactForm.visible = true;
}
};
346
Components Dictionary
DataSet.items
) contains the following properties:
.
contactForm
have been assigned.
property has been assigned.
(not shown) is made visible once the

Hide quick links:

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLASH 8-COMPONENTS LANGUAGE and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Flash 8

Table of Contents