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

  1. !!Script
  2. // Copyright ⌐ 1999 - Modelworks Software
  3.  
  4. var gLastDirectory = File.getApplicationPath();
  5.  
  6. function DoCommand()
  7. {
  8.     var path = gLastDirectory + "\\.*";
  9.     
  10.     openFileIn(path);
  11.     
  12.     var editor = getActiveEditor();
  13.     if (editor)
  14.     {
  15.         gLastDirectory = editor.getFile().directory;
  16.     }
  17. }
  18.  
  19. !!/Script
  20.