|
Export and Import all images |
Export all images in the project.
The extraction generates a folder and resource structure reflecting the project's hierarchy.
Catalyst /EXPORTIMAGES TTKName:FName FolderName:Folder [ezLogFile:ezLogFile] [/write] [/open]
or
Catalyst /EXPORTIMAGES /ORIGINAL TTKName:FName FolderName:Folder [ezLogFile:ezLogFile] [/write] [/open]
or
Catalyst /IMPORTIMAGES TTKName:FName FolderName:Folder [ezLogFile:ezLogFile] [/write] [/open]
/EXPORTIMAGES |
Export images |
/IMPORTIMAGES |
Import images |
TTKName:FName |
Parameter used to specify the name of a TTK file. |
FolderName:Folder |
Folder to export the images to, replicating the TTK project's hierarchy. |
/ORIGINAL |
Export only the original images, ignoring any localise copy. |
ezLogFile:ezLogFile |
The user can optionally specify a log file to which results of each Catalyst ezScript command are output. If the log file is not specified by the user or is invalid, the default log file (ezScriptBatchLog.txt in the Public location) is used. |
/write |
The command line which has been processed by Catalyst will be written into the ezScript batch log file. This will help to debug your command if something is not behaving as expected. |
/open |
Launches MS Notepad and displays the content of ezScript batch log when the command finishes. |
Export the images found in the test.ttk project to a folder on disk C:\myFolder. This exports the image's localised copy when ever available.
Catalyst.exe /EXPORTIMAGES TTKName:"C:\test.ttk" FolderName:"C:\myFolder"
Similar to the above example only the /ORIGINAL parameter means that only the original images will be part of the export. Any localised copy is ignored.
Catalyst.exe /EXPORTIMAGES /ORIGINAL TTKName:"C:\test.ttk" FolderName:"C:\myFolder"
Import and update all images in the project test.ttk with the images from the folder C:\myFolder. The hierarchy structure is expected to the same as when exported.
Catalyst.exe /IMPORTIMAGES TTKName:"C:\test.ttk" FolderName:"C:\myFolder"