Re: [Flashcoders] There is no method with the name 'super'

2006-10-30 Thread Muzak
12 PM Subject: Re: [Flashcoders] There is no method with the name 'super' > Hi Again, > > I never reported anything before, but i just reported this 'bug' on this url: > > http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=15 > > I'l

Re: [Flashcoders] There is no method with the name 'super'

2006-10-30 Thread Quinten [ :: MediaMonks :: ]
eah, seems to popup again after I delete ASO files. Have you reported this already? regards, Muzak - Original Message - From: "Quinten [ :: MediaMonks :: ]" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, October 30, 2006 2:51 PM Subject: Re: [

Re: [Flashcoders] There is no method with the name 'super'

2006-10-30 Thread Muzak
Yeah, seems to popup again after I delete ASO files. Have you reported this already? regards, Muzak - Original Message - From: "Quinten [ :: MediaMonks :: ]" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, October 30, 2006 2:51 PM Subject: Re:

Re: [Flashcoders] There is no method with the name 'super'

2006-10-30 Thread Quinten [ :: MediaMonks :: ]
e: Delete mcLinker from library and recreate it. regards, Muzak - Original Message - From: "Quinten [ :: MediaMonks :: ]" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, October 30, 2006 11:06 AM Subject: Re: [Flashcoders] There is no method

Re: [Flashcoders] There is no method with the name 'super'

2006-10-30 Thread Muzak
Delete mcLinker from library and recreate it. regards, Muzak - Original Message - From: "Quinten [ :: MediaMonks :: ]" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, October 30, 2006 11:06 AM Subject: Re: [Flashcoders] There is no method wi

Re: [Flashcoders] There is no method with the name 'super'

2006-10-30 Thread Quinten [ :: MediaMonks :: ]
gleExt, so the class is loaded. regards, Muzak - Original Message - From: "Quinten [ :: MediaMonks :: ]" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, October 27, 2006 10:23 AM Subject: Re: [Flashcoders] There is no method with the name &#

Re: [Flashcoders] There is no method with the name 'super'

2006-10-27 Thread Muzak
: "Quinten [ :: MediaMonks :: ]" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, October 27, 2006 10:23 AM Subject: Re: [Flashcoders] There is no method with the name 'super' > The reason why your error goes away is because the movieclip on the s

Re: [Flashcoders] There is no method with the name 'super'

2006-10-27 Thread Quinten [ :: MediaMonks :: ]
The reason why your error goes away is because the movieclip on the stage is not extended by 'RectangleExt' and the class is never loaded. So there is no error. Some findings: - the only way to get rid off the error is to completely remove all the actionscript on the frames. - Compiling in M

Re: [Flashcoders] There is no method with the name 'super'

2006-10-26 Thread Muzak
Change the name of the classs RectangleExtender to something else and the error will go away. import flash.geom.Rectangle; class RectangleExt extends Rectangle { function RectangleExt() { super(); trace("RectangleExt"); } } As soon as I change RectangleExt to RectangleExtender, I get the s

RE: [Flashcoders] There is no method with the name 'super'

2006-10-26 Thread Mark Lapasa
] Behalf Of Jim Kremens Sent: Thursday, October 26, 2006 12:40 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] There is no method with the name 'super' Seems weird, as your code looks ok. If it's any comfort, 'super()' is called automatically, whether you

Re: [Flashcoders] There is no method with the name 'super'

2006-10-26 Thread Jim Kremens
Seems weird, as your code looks ok. If it's any comfort, 'super()' is called automatically, whether you explicitly call it or not... If you want to override methods of Rectangle, just override them in your new class. Jim Kremens On 10/26/06, Hans Wichman <[EMAIL PROTECTED]> wrote: Hi, there

Re: [Flashcoders] There is no method with the name 'super'

2006-10-26 Thread Quinten [ :: MediaMonks :: ]
this has no effect. If that was the problem flash would have thrown an argument error i guess. But I tested it just to be sure. It seems to be a serious error in the flash compiler. Hans Wichman wrote: Hi, there is no constructor Rectangle() in Rectangle.as, only function Rectangle( x : Numbe

Re: [Flashcoders] There is no method with the name 'super'

2006-10-26 Thread Hans Wichman
Hi, there is no constructor Rectangle() in Rectangle.as, only function Rectangle( x : Number, y : Number, w : Number, h : Number ); so you cannot call it. You could call super(0,0,0,0); greetz JC On 10/26/06, Quinten [ :: MediaMonks :: ] <[EMAIL PROTECTED]> wrote: I have 2 classes: 'Tester'