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' wich extends a linked movie on the stage. And
RectangleExtender wich is called in Tester

class Tester extends MovieClip
{
   public function Tester()
   {
       var objRectangleExtender:RectangleExtender = new
RectangleExtender();
   }
}

and:

import flash.geom.Rectangle;

class RectangleExtender extends Rectangle
{
   public function RectangleExtender()
   {
       super();
   }
}

Everything works fine until i put actionscript on a frame. (just a
simple stop(); on the first frame)

then i get this error:

**Error** H:\temp\SuperFoutmelding\RectangleExtender.as: Line 7: There
is no method with the name 'super'.
            super();

Total ActionScript Errors: 1      Reported Errors: 1


I really have no idea why flash suddenly throws this error. does anyone
has experience with this kind of error?

I put the source files here:
http://stuff.mediamonks.net/quinten/SuperError.rar

just remove the stop() command in the 'mcLinker' movieclip and you will
see that it works fine.

--
regards,

Quinten

======================================\\
Quinten Beek ; Game Monk
MediaMonks BV ; Interactive Art
Schapenkamp 2 | 1211 PA, Hilversum
The Netherlands | Europe
email : [EMAIL PROTECTED]
internet address : http://www.mediamonks.com
============================================||
* Member of the Creative Brotherhood.
============================================||
* Please quote all replies in correspondence.
============================================||

_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to