
August 8th, 2002, 02:19 PM
|
|
Junior Member
|
|
Join Date: Jul 2002
Posts: 2
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
If your movie instances are really in the root, try to do it in the more reliable two-step way:
for (i=0; i<Descriptions_length; i++) {
newIns = eval("_root.MyMovie"+i);
newIns._y -= 10;
}
or, after declaration of newIns variable in the root: var newIns = null;, do the following:
for (i=0; i<Descriptions_length; i++) {
_root.newIns = eval("MyMovie"+i);
_root.newIns._y -= 10;
}
|