When I write the code:
var x:MovieClip = new MovieClip();
....
...
x._visible = false;
Then ActionScript hides the movieclip. When I navigate to MovieClip class then found _visible, is just a Boolean property along with other proporties:
dynamic intrinsic class MovieClip
{
.......
var _height:Number;
var _alpha:Number;
var _lockroot:Boolean;
var _visible:Boolean;
.......
}
But how does Flash Handle it??? When I am just changing the value of the property , how does that changing the the visibility? I can not see any events being dispatched or some thing!