Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-02 Thread Steven Sacks
You're right. I'm wrong. Sajid is doing something else incorrectly. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-02 Thread Muzak
rs window? What does ClassB look like? regards, Muzak - Original Message - From: "Sajid Saiyed" To: "Flash Coders List" Sent: Wednesday, September 02, 2009 4:07 AM Subject: Re: [Flashcoders] Problem understanding Class heirarchy issue Hi, Thanks all of you for ad

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-02 Thread Ian Thomas
I'm sorry, Steven, that's just not true. Test out the following code: package { public class A { public function A() { trace("A Constructor"); } } } package { public class B extends A {

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-01 Thread Sajid Saiyed
ject ClassA] >>   - disptaching MOVE_UP event on 'a' >> ClassA ::: moveUpHandler >> ClassD ::: CONSTRUCTOR >> ClassC ::: CONSTRUCTOR >> ClassB ::: CONSTRUCTOR >>   - instance 'b':  [object ClassB] >> >> >> Exactly a

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-01 Thread Sajid Saiyed
> ClassC ::: CONSTRUCTOR > ClassB ::: CONSTRUCTOR >   - instance 'b':  [object ClassB] > > > Exactly as expected. From what I can tell, it doesn't really matter which > class extends which. > The only thing that matters is that the MOVE_UP event handler > (

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-01 Thread Muzak
dispatch a MOVE_UP event on 'a' in the fla. regards, Muzak ----- Original Message ----- From: "Sajid Saiyed" To: "Flash Coders List" Sent: Tuesday, September 01, 2009 8:12 AM Subject: Re: [Flashcoders] Problem understanding Class heirarchy issue Ok, Here is a b

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-01 Thread Muzak
ng invoked. When is the moveUP event dispatched? regards, Muzak - Original Message - From: "Sajid Saiyed" To: "Flash Coders List" Sent: Tuesday, September 01, 2009 8:12 AM Subject: Re: [Flashcoders] Problem understanding Class heirarchy issue Ok, Here is a bit mo

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-01 Thread Muzak
st" Sent: Wednesday, September 02, 2009 12:56 AM Subject: Re: [Flashcoders] Problem understanding Class heirarchy issue In AS2, super() was called automatically (so to speak), so calling it was a matter of proper form more than anything else. In AS3, you have

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-01 Thread Steven Sacks
In AS2, super() was called automatically (so to speak), so calling it was a matter of proper form more than anything else. In AS3, you have to call it yourself or it doesn't get called. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com ht

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-01 Thread Matt Gitchell
: > > addEventListener(ClassC.moveUP, Delegate.create(this, someFunction); > > to get someFunciton to run in the scope that you expect. > > > > --- On Tue, 9/1/09, Steven Sacks wrote: > > > > > > From: Steven Sacks > > Subject: Re:

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-01 Thread Sajid Saiyed
;     addEventListener(ClassC.moveUP, Delegate.create(this, someFunction); > to get someFunciton to run in the scope that you expect. > > --- On Tue, 9/1/09, Steven Sacks wrote: > > > From: Steven Sacks > Subject: Re: [Flashcoders] Problem understanding Class heirarchy issue

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-01 Thread Jim Lafser
wrote: From: Steven Sacks Subject: Re: [Flashcoders] Problem understanding Class heirarchy issue To: "Flash Coders List" Date: Tuesday, September 1, 2009, 9:11 AM You're not calling super() in the ClassA constructor. On Aug 31, 2009, at 11:12 PM, Sajid Saiyed wrote: >

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-01 Thread Steven Sacks
You're not calling super() in the ClassA constructor. On Aug 31, 2009, at 11:12 PM, Sajid Saiyed wrote: Ok, Here is a bit more information. ClassA (works pefrectly fine): --- package com.folder.subfolder { import flash.display.*; import flash.events.*; import flash.filters.*;

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-08-31 Thread Sajid Saiyed
n...@chattyfig.figleaf.com] On Behalf Of Sajid >> Saiyed >> > Sent: maandag 31 augustus 2009 12:06 >> > To: flashcoders@chattyfig.figleaf.com >> > Subject: [Flashcoders] Problem understanding Class heirarchy issue >> > >> > Hi, >> > I have fo

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-08-31 Thread jonathan howe
; > HTH > > Cor > > > > -Original Message- > > From: flashcoders-boun...@chattyfig.figleaf.com > > [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Sajid > Saiyed > > Sent: maandag 31 augustus 2009 12:06 > > To: flashcoders@chattyfi

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-08-31 Thread Sajid Saiyed
s@chattyfig.figleaf.com > Subject: [Flashcoders] Problem understanding Class heirarchy issue > > Hi, > I have following Class structure: > > ClassA extends ClassC > > ClassB extends ClassC > > ClassC extends ClassD > > ClassD extends MovieClip > > Now, >

RE: [Flashcoders] Problem understanding Class heirarchy issue

2009-08-31 Thread Cor
1 augustus 2009 12:06 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Problem understanding Class heirarchy issue Hi, I have following Class structure: ClassA extends ClassC ClassB extends ClassC ClassC extends ClassD ClassD extends MovieClip Now, If I instantiate ClassB from C

[Flashcoders] Problem understanding Class heirarchy issue

2009-08-31 Thread Sajid Saiyed
Hi, I have following Class structure: ClassA extends ClassC ClassB extends ClassC ClassC extends ClassD ClassD extends MovieClip Now, If I instantiate ClassB from ClassA, the constructor does not execute. note: Inside ClassB, I am instantiating another ClassE which extends MovieClip Is there

RE: [Flashcoders] Problem understanding Class heirarchy issue

2009-08-31 Thread Cor
: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Problem understanding Class heirarchy issue Hi, I have following Class structure: ClassA extends ClassC ClassB extends ClassC ClassC extends ClassD ClassD extends MovieClip Now, If I instantiate ClassB from ClassA, the constructor does