I am a newbie to Maxscript, I am wondering if there is a way to change the value of the range of a spinner?
spinner ScrollToFrame "Select Frame" type:#integer range:[startFrame, totalFrames, 0]
fn getFrameInfo = (
totalFrames = animationrange.end
startFrame = animationrange.start
)
button updateFrames "Update Frames" align:#left pos:[120, 15]
on updateFrames pressed do (
startFrame = animationrange.start
totalFrames = animationrange.end
-- Code that I thought worked
ScrollToFrame.range:[startFrame, totalFrames, 0]
)