I am new to Maxcscript, I try to explain a problem the best I can,
I am trying to make a script in Maxscript, that would change a height to a zero of all box objects in a scene on their first keyframe.
I have several scenes that all have a number of boxes, some have 12, some 20 boxes, etc. And all boxes are animated - but on different keyframes, for example first box is animated from 12-23rd frame, second box is animated from 30-45 frame, etc. (so I cant put specific frame number in a script) Right now I am using this script to change a height of a box:
set animate on
modPanel.setCurrentObject $.baseObject
$.height = 0
using this script I have to manualy go to every boxs first keyframe and then execute the script. So, Is there a way in Maxscript to make a script that would go to every box in a scene - go to their first keyframe, turn animate and change its height to a zero; from first to last box in a scene?