Ok I have a bunch of movieclips named p1, p2, p3, ..., pn all with actionscript identifiers the same as their names.
I would like to then say for an array looping through all of them, take "P" + i.y and change it.
So I would like to do this:
if (e.offsetY == 1) {
"thisp" + currentPage.y ++;
}
even making it a variable does not work
var movieclipName = "thisp" + .toString(currentPage)
novieclipName.y ++;
??