arno3d
07-27-2009, 02:02 PM
As 3dsmax animator, i wrote this little macroscript to control the value of the Origin Scale in trackview. I lose too much time to grab the orange line that define the keys scale origin in the 3dsmax trackview.
So I want to share this with 3dsmax animators :
----------------------------------------------------------------------
macroScript SetOriginScale category: "_ arno _" toolTip: "OrSc"
(
try (destroyDialog OriginScale) catch()
rollout OriginScale "OriginScale" width:130 height:80
(
button btn_place "Set origin Scale" pos:[25,40] width:80 height:25
spinner spn_origin "Value" pos:[10,10] width:100 height:16 range:[-100000,100000,0.1]
on btn_place pressed do
(
trackviews.current.scaleValuesOrigin = spn_origin.value
)
)
createdialog OriginScale pos:[100,100]
)
------------------------------------------------------------------------------
Arno
arno3d.blogspot.com
So I want to share this with 3dsmax animators :
----------------------------------------------------------------------
macroScript SetOriginScale category: "_ arno _" toolTip: "OrSc"
(
try (destroyDialog OriginScale) catch()
rollout OriginScale "OriginScale" width:130 height:80
(
button btn_place "Set origin Scale" pos:[25,40] width:80 height:25
spinner spn_origin "Value" pos:[10,10] width:100 height:16 range:[-100000,100000,0.1]
on btn_place pressed do
(
trackviews.current.scaleValuesOrigin = spn_origin.value
)
)
createdialog OriginScale pos:[100,100]
)
------------------------------------------------------------------------------
Arno
arno3d.blogspot.com
