ZBrushCentral

Delete without confirmation

Is it possible to add an automatic confirmation to a dialogue in a Zscript ? Something like this:

[IButton, " DELETE ME " , “Deletes a subtool.”,
[IPress,Tool:SubTool:Delete, 1] // Autoconfirm = True
]

The script above won’t work, I’m just making a point:

[IButton, " DELETE ME " , “Deletes a subtool.”,
[IPress,Tool:SubTool:Delete]
]

However, the second one deletes a subtool, but still needs confirmation. What I want is to NOT have the confirmation dialogue, it deletes the subtool automatically WITHOUT having to have already pressed the never ever ask for this dialogue ever ever again till next time button?

Is this possible or just plain krazy?

[IKeyPress,‘1’,[IPress,Tool:SubTool:Delete]]
this gonna take the first choice
[COLOR=#e3f149][[COLOR=#ed7033]IKeyPress,‘2’,[IPress,Tool:SubTool:Delete]]
second choice etc…