You've been spoofed. 'construct' is a method of LzNode. Don't confuse
it with the class constructor, which has the same name as the class.
On Feb 12, 2008, at 10:52, Philip Romanik <[EMAIL PROTECTED]>
wrote:
Hi Tucker,
Am I ahead of the curve on this? I've ported the data files to use
the swf9 constructs but I'm having problems in dhtml.
For example, does the compiler transform this to an appropriate
dhtml format?
function LzDatapath ( v , args:* = null, children:* = null,
instcall:* = null ){
super(v, args, children, instcall);
...
}
In trunk, this code looks like,
function construct ( v , args ){
super.construct.apply(this, arguments);
...
}
Thanks!
Phil