Something is driving me crazy, and i feel kinda stupid asking, but ive looked the customize UI so many times for this top try and find an answer but i cant.
it would really speed up my work if i could map the different options in Use Pivot Point Center to a hotkey or add it into my quad menu.
please help?
thanks

Replies
macroScript PPCent Category:"VigTools" toolTip:"Pivot Point Center" buttontext:"PPCent" ( toolMode.pivotCenter() )Copy and paste this script into a new maxscript, run it once Ctrl-E and then under Customize > Customize UI > Catagory VigTools you'll have PPCent you can bind this to a key or quadmenu.If you want the other options just replace "toolMode.pivotCenter()" with one of the following and change the header info and run the script. Feel free to change the header to whatever you want, I use vigtools because well its easy for me to find. If you want a single key to toggle through each of them that will take a tiny bit more work... but is easy enough to do.
macroScript UsePivotPointCenter category:"Pivot Tools" buttonText:"Use Pivot Point Center" toolTip:"Use Pivot Point Center" ( on execute do setCoordCenter #Local ) macroScript UseSelectionCenter category:"Pivot Tools" buttonText:"Use Selection Center" toolTip:"Use Selection Center" ( on execute do setCoordCenter #Selection ) macroScript UseTransformCoordinateCenter category:"Pivot Tools" buttonText:"Use Transform Coordinate Center" toolTip:"Use Transform Coordinate Center" ( on execute do setCoordCenter #System )EDIT: oops! Didn't see your edit, Vig
Besides I like you're titles better, you can't make me give it back!
If you haven't given SyncViewS the right to raise your first born son as his own, you should do it now. Dude's a genius when it comes to maxscript. It must carry on!
macroScript UsePivotPointCenter category:"Pivot Tools" buttonText:"Use Pivot Point Center" toolTip:"Use Pivot Point Center" ( on execute do setCoordCenter #Local ) macroScript UseSelectionCenter category:"Pivot Tools" buttonText:"Use Selection Center" toolTip:"Use Selection Center" ( on execute do setCoordCenter #Selection ) macroScript UseTransformCoordinateCenter category:"Pivot Tools" buttonText:"Use Transform Coordinate Center" toolTip:"Use Transform Coordinate Center" ( on execute do setCoordCenter #System ) macroScript UseToggle category:"Pivot Tools" buttonText:"Use Toggle Pivot" toolTip:"Use Toggle Pivot" ( fn centloc = (toolMode.transformCenter()) fn centsel = (toolMode.selectionCenter()) fn centpiv = (toolMode.pivotCenter()) if (getcoordcenter()) == #Local then ( centloc() ) else ( if (getcoordcenter()) == #selection then ( centpiv() ) else ( if (getcoordcenter()) == #system then ( centsel() ) ) ) )Here are the scripts SyncViewS wrote combined with a toggle I just wrote, so say you want J to cycle through the modes just bind "Toggle Pivot" to J.