home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Graphics / TimeMachine / timemachine / rexx / TM_LayerScript.ifx < prev    next >
Text File  |  1999-08-08  |  304b  |  26 lines

  1. /************
  2. TM_LayerScript.ifx for Time Machine
  3. ************/
  4.  
  5. options results
  6.  
  7. activelayer
  8. parse var result LayerNum
  9.  
  10. if rc ~=0 then LayerNum=0
  11.  
  12. RequestFile '"Choose script"' '"rexx"' '""' '"#?"' 
  13. if rc ~=0 then exit
  14.  
  15. Rexxscript=Result
  16.  
  17.  
  18.  
  19. call setclip('TM_Layer'LayerNum'Script',Rexxscript)
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26. exit