Not sure I understand 100% but what I think your trying to do is this.
PHP Code:public function makeButton (mc:MovieClip, string:String) {
var myButton:MovieClip = _root.attachMovie(string, string, _root.getNextHighestDepth())
myButton.mc = mc
myButton.onRelease = function (){
trace (this.mc + " created me")
trace ("I am " + this)
}
}




Reply With Quote