home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Mecomp Multimedia 1
/
Mecomp-CD.iso
/
amiga
/
grafic
/
wildfire
/
macros
/
createexamples.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-07-31
|
1KB
|
43 lines
/*
------------------------------------------------------------
createExamples.rexx
This script generates all example Pictures and Transitions
Copyright ©1997 WK-Artworks, Infect
------------------------------------------------------------
*/
if ~show('P','Wildfire') then do
say " Error: The Wildfire-program must be started before executing this script."
exit
end
address 'Wildfire'
options results
m_request "Do you want to create the example Pictures? This will take a while."
tt=result
if tt=0 then do
address command 'execute wf:system/createPictures'
end
m_request "Do you want to create the Thumbnails for the Processor? This will take a while."
tt1=result
if tt1=0 then do
address command 'execute wf:system/createNails'
end
m_request "Do you want to create the PowerPlugs-Examples? You need a PowerPlugs! registration!."
tt2=result
if tt2=0 then do
address command 'execute wf:system/createPicturesPP'
end
m_request "Do you want to create the Transition-Filmstrips? This will take some HOURS on slow Amigas !!!"
tt3=result
if tt3=0 then do
M_OPENTMAKER
TM_CREATEEXAMPLES
end