home *** CD-ROM | disk | FTP | other *** search
- /*
- Control Tower Arexx Script
- Play Requested Flyer Clip
- Written By J.L. White
- (C)1995 Merlin's Software
- */
-
- parse arg InFile Start Total Which
- OPTIONS RESULTS
- InFile = Translate(InFile," ","¤")
- InFile = strip(InFile)
- if Which = 0 then do
- TOASTERLIB="ToasterARexx.port"
- call remlib('ToasterARexx.port')
- call remlib('PROJECT_REXX_PORT')
- call addlib('PROJECT_REXX_PORT' , 0)
- call addlib(TOASTERLIB,0)
- Switcher(M003)
- Address command "toaster:programs/flyer_support/c/playclip 0 0 0 "InFile" "d2x(Start)" "d2x(Total)" 0 1 2"
- call remlib('ToasterARexx.port')
- call remlib('PROJECT_REXX_PORT')
- end
- if Which = 1 then do
- Address command "toaster:programs/flyer_support/c/playclip 0 0 0 "InFile" "d2x(Start)" "d2x(Total)" 0 1 2"
- end
-
- exit
-