home *** CD-ROM | disk | FTP | other *** search
/ ANews 2 / AnewsCD2.iso / Script / Prefs.rexx < prev    next >
OS/2 REXX Batch file  |  1999-10-06  |  1KB  |  47 lines

  1. /* Application created by MUIBuild */
  2.  
  3. address APREFS
  4.  
  5. MUIA_Window_ID = 0x804201bd
  6. ASLFR_RejectIcons = 0x8008003C
  7. TRUE = 1
  8. ASLFR_DrawersOnly = 0x8008002F
  9. MUIA_HorizWeight = 0x80426db9
  10.  
  11. window ID APREF COMMAND """CLOSE""" PORT APREFS TITLE """Préférences""" ATTRS MUIA_Window_ID ANPR
  12.  group HORIZ
  13.   group
  14.    label DOUBLE "Guides"
  15.    label DOUBLE "Images"
  16.    label DOUBLE "Sons (Court)"
  17.    label DOUBLE "Musiques"
  18.    label DOUBLE "Modules"
  19.    label DOUBLE "Html"
  20.    label DOUBLE "Copie Auto"
  21.   endgroup
  22.   group
  23.    popasl ID FGUID ATTRS ASLFR_RejectIcons TRUE
  24.    popasl ID FIMG ATTRS ASLFR_RejectIcons TRUE
  25.    popasl ID FSON ATTRS ASLFR_RejectIcons TRUE
  26.    group HORIZ
  27.     cycle ID TMUS ATTRS MUIA_HorizWeight 50 LABELS "SongPlayer,AmiAMP"
  28.     popasl ID FMUS ATTRS ASLFR_RejectIcons TRUE
  29.    endgroup
  30.    group HORIZ
  31.     cycle ID TMOD ATTRS MUIA_HorizWeight 50 LABELS "Hippoplayer,EaglePlayer"
  32.     popasl ID FMOD ATTRS ASLFR_RejectIcons TRUE
  33.    endgroup
  34.    group HORIZ
  35.     cycle ID THTML ATTRS MUIA_HorizWeight 50 LABELS "IBrowse,AWeb,Voyager"
  36.     popasl ID FHTML ATTRS ASLFR_RejectIcons TRUE
  37.    endgroup
  38.    popasl ID FCOPY ATTRS ASLFR_RejectIcons TRUE ASLFR_DrawersOnly TRUE
  39.   endgroup
  40.  endgroup
  41.  group HORIZ
  42.   button LABEL "Sauver"
  43.   button LABEL "Utiliser"
  44.   button LABEL "Annuler"
  45.  endgroup
  46. endwindow
  47.