41
Adding an Action Using the Insert Actions Wizard
Lets start with a simple example script that was created with ScriptWizard.
Example
:
doc FaxablePostScript
with ConvertToDocument
.input=original.document
.Format=LDD_DOCFORMAT_PS
.PaperSize=LDD_PAPERSIZE_AUTO
.Orientation=LDD_ORIENTATION_AUTO
.PSResolution=LDD_RESOLUTION_AUTO
.AllPages=TRUE
.Go()
FaxablePostScript=.output
endwith
with FaxByPrinter
.input=FaxablePostScript
.IPAddress="faxout.server.com"
.FaxNumber="99188812345678"
.StationID="Mail Room"
.WaitForCompletion=FALSE
.Go()
endwith
This script receives new orders as TIFF images, converts them to PostScript, and faxes them to the
shipping department where the order is packed and shipped to the customer.
This script has one variable–FaxablePostScript. It has two Actions–ConvertToDocument and
FaxByPrinter. A profile is created for this script and placed on an MFP. When employees receive new
orders, they scan them on the MFP and select the profile to start this script.
This script is fine, but what if you want to keep a copy an electronic copy of the order for your records?
You can do this by adding another Action to your script.