Workspace and undo redo buttons

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

AttachmentSize
09-10-2012_11-44-52.png20.67 KB

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
venexyb's picture

Scripts o the round are fired

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's picture

Branko you are an utter

Branko you are an utter ****ing legend!!

Can't thank you enough, I'm posting this everywhere :P

barigazy's picture

If you want to put undo redo

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

;)

bga

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.