ZBrushCentral

Turn off confirmation popups?

Like many I suppose, I finally started using the DefaultZScript to automate the setting of various
items that I find myself doing every time I start ZB. Here’s what I currently use…

//startup

[pd]
[If,1,
[IPress,Tool:PolyMesh3D]
[CanvasStroke,(ZObjStrokeV02n12=H266V194H266V195)]
[IPress,Transform: Edit]
[IKeyPress,CTRL,[IPress,Brush:MaskLasso]]
[IKeyPress,SHIFT+CTRL,[IPress,Brush:SelectLasso]]
[IUnPress,Transform: Edit]
[IPress,Color:Clear]
[IPress,Tool:SimpleBrush]
[IUnPress,Color:Alternate]
[IModSet,Draw:Draw Size,0]
[IUnPress,Preferences:Edit:Align Cursor To Surface]
]

But the problem is that the lines that select the lasso brushes trigger that annoying confirmation
popup every time. Is there any way to prevent that happening?

Thanks.

Ross.

Well. I don’t know if it’s ‘official’, But making sure the SHIFT modifier is on for both brush
selects seems to do the trick. Somehow, I already had one set, but got two popups?

[pd]
[If,1,
[IPress,Tool:PolyMesh3D]
[CanvasStroke,(ZObjStrokeV02n12=H266V194H266V195)]
[IPress,Transform: Edit]
[IKeyPress,SHIFT+CTRL,[IPress,Brush:MaskLasso]]
[IKeyPress,SHIFT+CTRL,[IPress,Brush:SelectLasso]]
[IUnPress,Transform: Edit]
[IPress,Color:Clear]
[IPress,Tool:SimpleBrush]
[IUnPress,Color:Alternate]
[IModSet,Draw:Draw Size,0]
[IUnPress,Preferences:Edit:Align Cursor To Surface]
]

There’s no ‘official’ way, unfortunately. But if you have found something that works then good.