| Subcribe via RSS

Viagra online
XANAXadderall onlineLevitraPuppies for sale

Flash AS3 - Calling a Method in a Parent Class

March 10th, 2010 Posted in ActionScript 3

When loading a movie in a movie, here's an easy way to call a method within a parent class:

 
  if(this.parent != null){
    var parentObject:Object = this.parent as Object;
    parentObject.doShowMain()
  }
 

Leave a Reply

You must be logged in to post a comment.