RE: [Flashcoders] detect events on an embedded clip

2006-03-03 Thread John Berzy
since you have an onRelease in the main MovieClip no events will get called from the subclips. also shouldnt the following line of code be reffering to the 'A_mc' instance and not the myA instance. var myA:A=new A(); myA.init(); should be: var A_mc:A=new A(); A_mc.init(); From: elr <[EMAIL

RE: [Flashcoders] revised 5:34:18 PM EST Q: populating Text Fields innested Array

2006-01-19 Thread John Berzy
createTextField() Returns TextField - Flash Player 8 returns a reference to the TextField object that is created. Flash Player versions earlier than 8 return void. If your using a player earlier then flash 8 then your problem is createTextFeild does not return a reference to that newly create

Re: [Flashcoders] jumpy horizontal motion

2005-12-21 Thread John Berzy
updateAfterEvent should not be put in an onEnterFrame because an onEnterFrame event will automatically re-render the stage anyways. if the updateAfterEvent is in a onMouseMove or something then it would be diffrent. I'd say that the graffic is probably a little to big and I believe thats where