home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 February / Chip_2003-02_cd2.bin / OKO_demo / movie / Reader / plug_ins / MSAA.api / EXVW / 15000
Text File  |  2001-09-09  |  925b  |  28 lines

  1. maxMsgWidth=max(
  2.     zstring_width(zstring: '$$$IDS_ACCESS_ACT_NOACTIVEDOC'),
  3.     zstring_width(zstring: '$$$IDS_ACCESS_ACT_DONTUSERO'),
  4.     zstring_width(zstring: '$$$IDS_ACCESS_ACT_USERO'));
  5.  
  6. dialog(name: '$$$/Dialogs/MSAAOptions', align_children: align_left, first_tab: 'actf')
  7. {
  8.     view(align_children: align_left)
  9.     {
  10.        edit_text(item_id: 'actf', readonly: true, width: maxMsgWidth+10,
  11. next_tab: stdd);
  12.         cluster(name: '$$$/Dialogs/MSAA/ReadOrder/Options', align_children: align_left)
  13.         {
  14.             radio(item_id: 'stdd', name: '$$$/Dialogs/MSAA/ReadOrder/Standard', next_tab: 'wrdy');
  15.             gap(height: 2);
  16.             radio(item_id: 'wrdy', name: '$$$/Dialogs/MSAA/ReadOrder/Wordy', next_tab: 'tblr');
  17.             gap(height: 2);
  18.             radio(item_id: 'tblr', name: '$$$/Dialogs/MSAA/ReadOrder/TopToBottom');
  19.         }
  20.  
  21.        static_text(item_id: 'expl', 
  22.              alignment: align_fill, height: gStaticTextHeight * 6 );
  23.  
  24.         ok_cancel();
  25.     }
  26. }
  27.  
  28.