Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Below code throw error in conversion from MXML to JS.This code works fine in swf.
var newDate:Date = new Date(Number(_xmlString.substr(0, 4)), Number(_xmlString.substr(4, 2)), Number(_xmlString.substr(6, 2)));
var split:Array = _xmlString.split(" ");
if (split.length > 1)
And the error i am getting is
Access of possibly undefined property date.
newDate.date = Number(split[1].substr(0, 2));
^
Access of possibly undefined property minutes.
newDate.minutes = Number(split[1].substr(2, 2));
^
Access of possibly undefined property seconds.
newDate.seconds = Number(split[1].substr(4, 2));
^