Hi all,
here is a small and dirty example on using python to automatize ZBrush:
import win32com.client,win32api
shell = win32com.client.Dispatch(“WScript.Shell”)
#shell.Run(“c:\z2\zbrush2\zbrush2.exe”)
#win32api.Sleep(100)
shell.AppActivate(“ZBrush”)
win32api.Sleep(1000)
shell.SendKeys(“g”) #activate the well-known ProjectionMaster plug in 
win32api.Sleep(2500)
How to use:
Save the previous code as Z.py
Run ZBrush
Run Z.py (double-click from Explorer)
You must have python and pythonwin installed (www.python.org)
I hope this idea will help you to experiment …
cameyo
p.s. Vote “ZBrush for Linux” in this thread http://www.zbrushcentral.com/zbc/showthread.php?p=232757#post232757