home *** CD-ROM | disk | FTP | other *** search
/ PC User 2001 August / APC_Aug2001_CD2.iso / features / web_dev / files / mwjpp516.exe / %MAINDIR% / Tools / Panels / activateFindWhat.script < prev    next >
Encoding:
Text File  |  2001-06-19  |  432 b   |  24 lines

  1. !!Script
  2. // Copyright ⌐ 1997-1998 - Modelworks Software
  3. // @Created build 232 cm19981109
  4.  
  5. /**
  6. @Tool: activateFindWhat~activates the find what edit window. 
  7. @EndTool: 
  8. @Summary: activateFindWhat~activates the find what edit window. 
  9. */
  10.  
  11. var gOutput = getOutput();
  12.  
  13. function DoCommand()
  14. {
  15.     var findWhatEdit = getGlobal("FinderFindWhat", null);
  16.     if (findWhatEdit)
  17.     {
  18.         findWhatEdit.setActive();
  19.     }
  20. }
  21.  
  22. !!/Script
  23.  
  24.