ZBrushCentral

Automating a Process, Creating a Choose THIS FILE Dialog Box

Creating a Choose File Dialog Box…

Could someone tell me how to do a couple things. I want to automate a process of running certain commands in ZBrush which entails importing a couple objects at different points in the process. I would like to place a message with the dialog box such as “Please Choose Your Low Resolution Mesh NOW.” Etc… Is there a way I could put this message with the ZScript recording?

Thanks

Probably the simplest way of doing this is to add:

[Note,"Please Choose Your Low Resolution Mesh NOW."]
[IPress,Tool:Import]

That will show the message and then the Import file dialog.

Alternatively, it is possible to create an Open file dialog through zscript using the [FileNameAsk] command. You can read about it here:
http://www.pixologic.com/docs/index.php/ZScript_Command_Reference#Files_and_Filenames

And for general zscript information see here:http://www.pixologic.com/docs/index.php/ZScripting

If you need any more help, let me know.