home *** CD-ROM | disk | FTP | other *** search
/ ring.yamanashi.ac.jp/pub/pc/freem/action/ / action.zip / henkyaku1.0.exe / henkyaku / Program / Kernel / Util / SelectBox.tonyu < prev    next >
Text File  |  2003-02-10  |  324b  |  16 lines

  1. extends Object;
  2.  
  3. native _n_open;
  4. function open(prompt,title,st1,st2,st3,st4) {
  5.   var ti,s1,s2;  
  6.   ti=title; if (!ti) ti="èmöF";
  7.   s1=st1; if (!s1) s1="é═éó(&Y)";
  8.   s2=st2; if (!s2) s2="éóéóéª(&N)";
  9.   _n_open(prompt,ti,s1,s2,st3,st4);
  10. }
  11.  
  12. native _n_getStatus;
  13. function getStatus() {
  14.   return _n_getStatus();
  15. }
  16.