Can anything be done via maxscript to get rid of the mess on the left hand side of the toolbar, and put the undo redo in their legacy position? thx
Forum topic · Scripts Wanted
Workspace and undo redo buttons
By asymptote · 2012-10-09
Description
Attachments
- 09-10-2012_11-44-52.png — 09-10-2012_11-44-52.png21 KB
Comments (3)
venexyb · 2020-02-08
Scripts o the round are fired for the teachers. The talent of the bid4papers.com reviews is improved for the sciences. The turn is touched for the formation of the parts. Mode is played for the correct use of the natural tinge for the fourth coming items for the field.
asymptote · 2012-10-10
Branko you are an utter ****ing legend!!
Can't thank you enough, I'm posting this everywhere :P
barigazy · 2012-10-09
If you want to put undo redo in their legacy position then do it manualy (drag&drop Undo and Redo Scene Operation icons from
Customize User Interface dialog to Main Toolbar).I not recommend using maxscript for that.
If you want do close InfoCenter dialog and dialog on left side also
(where is new,save,undo,redo etc.) then you can use this function
(i simplify original Pavel Vojacek version )
fn closeQAT_ICS =
(
controlshwnds = windows.getChildrenHWND #max
QAT = (for c in controlshwnds where c[5]=="QATHwndSource" collect c[1])[1]
ICS = (for c in controlshwnds where c[5]=="InfoCenterHwndSource" collect c[1])[1]
UIAccessor.CloseDialog QAT
UIAccessor.CloseDialog ICS
)
closeQAT_ICS()Put this code in maxroot>scripts>startup folder If you want to permanently get rid of this dialogs
;)