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

  1. !!Script 
  2. // Copyright ⌐ 2001  - Miguel Angel Rojas G.
  3. // @Modified build 497 cm20010225
  4.  
  5. /**
  6. @Tool: gotoMark~goes to the bookmark ' $current mark' set
  7. by the mark script.
  8. @EndTool: 
  9. @Summary: gotoMark~goes to the bookmark ' $current mark' 
  10. */
  11.  
  12. function DoCommand()
  13.     var bookmark = getGlobal(" $current mark", null);
  14.     
  15.     if (bookmark)
  16.     {
  17.         bookmark.go();
  18.     }
  19. }
  20.  
  21. !!/Script
  22.