I'm starting with EaselJS, Animate and HTML5 and I can not find a way to hide a series of stage objects with names with sequential numbering: obj01, obj02, obj03 ...
for (hhh = 1; hhh < 10; hhh++) {
this["obj0"+hhh].visible = false;
}
Could someone help me out?