home *** CD-ROM | disk | FTP | other *** search
- /* Load.rexx */
-
- options results; address MrMIDI
-
- MUIA_Cycle_Active = 0x80421788; MUIA_Selected = 0x8042654b
- MUIA_String_Contents = 0x80428ffd; MUIA_Slider_Level = 0x8042ae3a
-
- if open(1, 'ENV:MrMIDI.prefs', 'r') = 1 then do
- stat = readln(1); popasl ID PATH ATTRS MUIA_String_Contents stat
- stat = readln(1); popasl ID FPATH ATTRS MUIA_String_Contents stat
- stat = readln(1); knob ID VOLM ATTRS MUIA_Slider_Level stat
- stat = readln(1); check ID LIST ATTRS MUIA_Selected stat
- stat = readln(1); check ID ADVC ATTRS MUIA_Selected stat
- stat = readln(1); check ID MONO ATTRS MUIA_Selected stat
- stat = readln(1); check ID FILT ATTRS MUIA_Selected stat
- stat = readln(1); check ID RAND ATTRS MUIA_Selected stat
- stat = readln(1); cycle ID REPT ATTRS MUIA_Cycle_Active stat
-
- stat = readln(1); cycle ID FREQ ATTRS MUIA_Cycle_Active stat
- stat = readln(1); slider ID POLY ATTRS MUIA_Slider_Level stat
- stat = readln(1); slider ID PRIO ATTRS MUIA_Slider_Level stat
- stat = readln(1); check ID TOFI ATTRS MUIA_Selected stat
- stat = readln(1); string ID TOMP ATTRS MUIA_String_Contents stat
- stat = readln(1); check ID DRFI ATTRS MUIA_Selected stat
- stat = readln(1); string ID DRMP ATTRS MUIA_String_Contents stat
- stat = readln(1); slider ID BUFF ATTRS MUIA_Slider_Level stat
- stat = readln(1); cycle ID VEMP ATTRS MUIA_Cycle_Active stat
- stat = readln(1); cycle ID VOMP ATTRS MUIA_Cycle_Active stat
- call close(1)
- end
- return
-