Hello
I have multiple clips I 'd like to transform when I press a key. Like:
if (key == “p”) {
shape01.width = 51.725;
}
It works fine, but I want to do that for several clips (shape01, shape02, shape3) in a loop . If I do
for (var i = 0; i < 10 ; i++) {
shape + i +.width = 51.725;
}
I got an error. Is there a trick to do that ?
Thank you so much for your support!
Have a nice day