flash question
flash question
- Started
- Last post
- 5 Responses
- mr_flaco
lets say I want to change:
with ("item_" + x) {
change _property, etc.
}to:
("item_" + x)._property etc.whats the proper syntax?
- abizzyman0
you have it -
just complete the line.
("item_" + x)._property = whatever;
- mr_flaco0
so why doesnt this work:
("item_" + x).gotoAndPlay(2);
- DeLeon0
I think you have to say:
eval("item_" + x)._property = blah;
- mr_flaco0
ah yes, good thing to know. Thanks.
- DeLeon0
no prob mate