|
Write Image Files Romulo G. Lins from Brazil [2 posts] |
6 year
|
Hello STeven,
Regarding Write Image Files command, I request following information:
1. Is it possible to operate the Start/Stop button from Write Image Files dialog box via program (VB Script command) instead of manual operation?
Best Regards,
Romulo G. Lins
|
|
|
Steven Gentner from United States [1446 posts] |
6 year
|
Romulo,
The simplest way to do this is to surround the Write_Images module using an If_Statement module that will only allow the Write_Images module to execute in the right condition ... say if you have a variable like "write_it" and you check that variable to see if its a 1 or 0 and only execute the Write_Images module when write_it is 1.
So your VBScript would then
SetVariable "write_it", 1
to activate the module and
SetVariable "write_it", 0
to stop it. This is all done by the surrounding If_Statement module. In the pipeline that looks like:
If_Statement (check write_it = 1)
Write_Images
End_if
STeven.
|
|