APD.ILINIT
/*** START ARTWORK CONVERSION SOFTWARE CUSTOMIZATION ***/
/*** DO NOT MODIFY THIS SECTION OR ACS SOFTWARE MAY NOT FUNCTION ***/
/*** Installation dependent data ***/
acs_apd2aif_dir = "d:/acs package tools/APD2AIF"
acs_apd2aif_version = "1.04"
acs_apd2aif_release_date = "November 29, 1999"
/*** Set path and load files ***/
(when (not (member acs_apd2aif_dir (getSkillPath)))
(setSkillPath (append (getSkillPath) (list acs_apd2aif_dir)))
)
acs_apd2aif_files = (list
"apd2aif.eil"
"arc2poly.eil"
"certify.eil"
"filedlg.eil"
"fileread.eil"
"wait.eil"
)
(foreach acs_apd2aif_file acs_apd2aif_files
(if (isFile acs_apd2aif_file) then
(load acs_apd2aif_file)
else
(print (strcat "APD2AIF Error - " acs_apd2aif_file " could not be loaded."))
(drain stdout)
)
)
(drain stdout)
/*** Determine operating system ***/
tmp = (substring acs_apd2aif_dir 1 1)
(if tmp == "/" then
acs_os = "unix"
acs_dir_break = "/"
else
acs_os = "windows"
acs_dir_break = "\\"
)
acs_apd2aif_dir = (buildString (parseString acs_apd2aif_dir "\\/") "/")
(when acs_os == "unix"
acs_apd2aif_dir = (strcat "/" acs_apd2aif_dir)
)
/*** DO NOT MODIFY THIS SECTION OR ACS SOFTWARE MAY NOT FUNCTION ***/
/*** END ARTWORK CONVERSION SOFTWARE CUSTOMIZATION ***/
[Back to Install Bondgen]