ActionScript 2.0 Components Language Reference |
|
|
|
| Slide class > Slide.revealChild | |||
Flash Player 6 (6.0.79.0).
Flash MX Professional 2004.
on(revealChild) {
// Your code here.
}
Event; broadcast each time a child slide of a slide object changes from invisible to visible. This event is used primarily to attach "in" transitions to all the child slides of a given slide.
When attached to the root slide (for example, the presentation slide), this code displays the name of each child slide as it appears.
on(revealChild) {
var child = eventObj.target._name;
trace(child + " has just appeared");
}
|
|
|
|