Working as a Batch Process
Back to Index Bottom

SWF Image Creator tool has the ability to be used as a part of an automation project, or a web site. All of the functionality of the program can be manipulated with the command prompt. The task manager can be assigned to run the program from the command prompt (DOS) with the parameters needed. Also this program can be interacted with popular databases like Oracle, MS SQL, MySQL, MS Access for performing some routine automation processes with the help of the parameters sent within the command prompt.

The command prompt parameters for SWF Image Creator tool are as follows:

SWFIMAGECREATOR -AUTO -F:filename [-HIDE] [-SHUTDOWN]

Note that, by setting -HIDE parameter without -SHUTDOWN, application screen is just hidden, until the processing is completed.

To use batch processing in SWF Image Creator, you should know the XML structure of .imx files, which is shown below:

<swfimagecreatorproject>
<prgid>XYZ1000</prgid>
<filever>1.0</filever>
<name>C:\example.imx</name>
<output>untitled.swf</output>
<type>0<type>
<framerate>12<framerate>
<delay>1<delay>
<link>http://www.xyz-software.com</link>
<target>_blank</target>
<backgroundcolor>0</backgroundcolor>
<imagelist>
<image>C:\imgs\anigif_F1.gif</image>
<image>C:\imgs\anigif_F2.gif</image>
<image>C:\imgs\anigif_F3.gif</image>
<image>C:\imgs\anigif_F4.gif</image>
</imagelist>
</swfimagecreator>

SwfImageCreatorProject, Prgid, Filever : These tags must exist in a SWF Image Creator project file.
Name : This tag stands for the project name and file path of the project.
Output : Defines name of the output file.
Type, FrameRate, Delay, Link, Target, BackGroundColor : These tags sets the convertion options for the project
Image : Sets the image path and names of the project as the input.

Working as a Batch Process
Back to Index Top