swftools-common
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Swftools-common] ActionScript qwerk


From: Chris Flowers
Subject: Re: [Swftools-common] ActionScript qwerk
Date: Fri, 01 Apr 2005 23:41:41 -0500

More on this issue. The AS compiler seems to fail on any
variable that uses a dot syntax reference:

I commonly clone values from one object to another like this:

 for(var i in MySource.ShapeOver[i]){ this.ShapeOver[i] =
MySource.ShapeOver[i]; }

This workaround was tested and works:

 var n = MySource.ShapeOver;
 for(var i in n){ this.ShapeOver[i] = n[i]; }

Chris





reply via email to

[Prev in Thread] Current Thread [Next in Thread]