Re: "prototype" actionscript keyword

[email protected] (Wolfgang Hamann) Fri, 19 Sep 2003 20:16:24 +0200 (CEST)
Newsgroups gmane.comp.web.ming.general
Message-ID <wolfgang-1030919201624.A066097@loopback>
Hi Alessandro,

prototype is not really a keyword (and is not really a keyword in the macromedia compiler -
the "prototype" name gets compiled like any other name)
The compile error is actually ming insisting on a terminating semicolon...

xy = function(stuff)
{  // your code here
} ; // terminate assignment to xy with semicolon

Wolfgang