home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / shareware / music / mrmidi / load.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1998-03-08  |  1.4 KB  |  32 lines

  1. /* Load.rexx */
  2.  
  3. options results; address MrMIDI
  4.  
  5. MUIA_Cycle_Active    = 0x80421788;    MUIA_Selected        = 0x8042654b
  6. MUIA_String_Contents    = 0x80428ffd;    MUIA_Slider_Level    = 0x8042ae3a
  7.  
  8. if open(1, 'ENV:MrMIDI.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); knob ID VOLM ATTRS MUIA_Slider_Level stat
  12.   stat = readln(1); check ID LIST ATTRS MUIA_Selected stat
  13.   stat = readln(1); check ID ADVC ATTRS MUIA_Selected stat
  14.   stat = readln(1); check ID MONO ATTRS MUIA_Selected stat
  15.   stat = readln(1); check ID FILT ATTRS MUIA_Selected stat
  16.   stat = readln(1); check ID RAND ATTRS MUIA_Selected stat
  17.   stat = readln(1); cycle ID REPT ATTRS MUIA_Cycle_Active stat
  18.   
  19.   stat = readln(1); cycle ID FREQ ATTRS MUIA_Cycle_Active stat
  20.   stat = readln(1); slider ID POLY ATTRS MUIA_Slider_Level stat
  21.   stat = readln(1); slider ID PRIO ATTRS MUIA_Slider_Level stat
  22.   stat = readln(1); check ID TOFI ATTRS MUIA_Selected stat
  23.   stat = readln(1); string ID TOMP ATTRS MUIA_String_Contents stat
  24.   stat = readln(1); check ID DRFI ATTRS MUIA_Selected stat
  25.   stat = readln(1); string ID DRMP ATTRS MUIA_String_Contents stat
  26.   stat = readln(1); slider ID BUFF ATTRS MUIA_Slider_Level stat
  27.   stat = readln(1); cycle ID VEMP ATTRS MUIA_Cycle_Active stat
  28.   stat = readln(1); cycle ID VOMP ATTRS MUIA_Cycle_Active stat
  29.   call close(1)
  30. end
  31. return
  32.