Arbortext IsoDraw > Macro Language Reference > 3D and User Interaction Commands > Further Macro Commands > Process Print and Process Convert
  
Process Print and Process Convert
Applies to Arbortext IsoDraw 7.1 F000 and later:
Access Batch process wizard (File > Batch process) functions with the IML commands PROCESS PRINT and PROCESS CONVERT. If the macro recorder is active when you start a batch print or batch conversion process with the Batch process wizard, the corresponding IML PROCESS command is recorded.
PROCESS CONVERTsourcepathtargetformattargetpathfilterfilefilter| scalescaleval| macromacroname
sourcepath
(string; variable or constant) Path to the root folder containing the files to be converted; e.g., 'D:\files\PROE'.
targetformat
(string; variable or constant) Target format identifier; e.g., 'SVG'.
targetpath
(string; variable or constant) Path to the target folder for the converted files; e.g., 'C:\batch_out'.
filefilter
(optional; string; variable or constant) Extension used to filter files from import folder; e.g., '*.asm'.
scale
(float; variable or constant) Scale factor applied to the converted files; e.g., 33.33.
macro
(optional; string; variable or constant) Name of the macro to execute on the imported files; e.g., 'IML_Fit_to_A4'.
PROCESS CONVERT 'D:\data\batch_tool_example_data\src' \
'BMP' 'D:\data\batch_tool_example_data\dst' \
scale 20 filter '*.iso' macro 'test'