
July 8th, 2008, 08:40 AM
|
|
Registered User
|
|
Join Date: Jul 2008
Posts: 1
Time spent in forums: 6 m 4 sec
Reputation Power: 0
|
|
|
AS 2.0 Array problem
This is my code on the Frame 1:
Code:
var skill = new Array();
skill[1][1] = "Chain Slash";
skill[1][2] = 10;
skill[1][3] = 0;
And this I have on button:
Code:
on (rollOver){
_root.info.name.text=_root.skill[1][1]
}
When I move my mouse over button, it shows "undefined", instead of "Chain Slash", I also tried " trace(_root.skill[1][1])" but it outputs "undefined" too. Any help please?
|