Bugs item #886493, was opened at 2004-01-28 12:34
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=382298&aid=886493&group_id=24819
Category: actionscript related
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: case sensivity for AS2
Initial Comment:
on line 582 for AS2 needs to be:
***********************
this.type = Type;
if ((this.type == 'struct') ||
(this.type == 'array')) {
this.value = new Array();
}
not:
***********************
this.type = Type;
if ((this.Type == 'struct') ||
(this.type == 'array')) {
this.value = new Array();
}
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=382298&aid=886493&group_id=24819
|