home *** CD-ROM | disk | FTP | other *** search
/ The Best of Mecomp Multimedia 2 / MECOMP-CD-II.iso / amiga / sound / mrmpeg / load.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1998-03-07  |  1.3 KB  |  30 lines

  1. /* Load.rexx */
  2.  
  3. options results; address MrMPEG
  4.  
  5. MUIA_Cycle_Active    = 0x80421788;    MUIA_Selected        = 0x8042654b
  6. MUIA_String_Contents    = 0x80428ffd;    MUIA_Slider_Level    = 0x8042ae3a
  7.  
  8. if open(1, 'ENV:MrMPEG.prefs', 'r') = 1 then do
  9.   stat = readln(1); popasl ID PATH ATTRS MUIA_String_Contents stat
  10.   stat = readln(1); popasl ID FPATH ATTRS MUIA_String_Contents stat
  11.   stat = readln(1); check ID MONO ATTRS MUIA_Selected stat
  12.   stat = readln(1); check ID FILT ATTRS MUIA_Selected stat
  13.   stat = readln(1); knob ID VOLM ATTRS MUIA_Slider_Level stat
  14.   stat = readln(1); cycle ID DIVS ATTRS MUIA_Cycle_Active stat
  15.   stat = readln(1); cycle ID QUAL ATTRS MUIA_Cycle_Active stat
  16.   stat = readln(1); slider ID PRIO ATTRS MUIA_Slider_Level stat
  17.   stat = readln(1); cycle ID MAXF ATTRS MUIA_Cycle_Active stat
  18.   stat = readln(1); cycle ID MIXF ATTRS MUIA_Cycle_Active stat
  19.   stat = readln(1); cycle ID REPT ATTRS MUIA_Cycle_Active stat
  20.   stat = readln(1); check ID LIST ATTRS MUIA_Selected stat
  21.   stat = readln(1); check ID ADVC ATTRS MUIA_Selected stat
  22.   stat = readln(1); check ID RAND ATTRS MUIA_Selected stat
  23.   stat = readln(1); cycle ID ABUF ATTRS MUIA_Cycle_Active stat
  24.   stat = readln(1); cycle ID IBUF ATTRS MUIA_Cycle_Active stat
  25.   stat = readln(1); check ID UAHI ATTRS MUIA_Selected stat
  26.   stat = readln(1); text ID AHID LABEL stat
  27.   call close(1)
  28. end
  29. return
  30.