home *** CD-ROM | disk | FTP | other *** search
/ ST-Computer Leser 2002 January / STC_CD_01_2002.iso / APP / TASKBAR / JAYGRPII / SIC / PLGTST.SIC < prev    next >
Encoding:
Text File  |  2000-08-14  |  530 b   |  20 lines

  1. // plgtst.sic (c) 14.08.2000 by JAY Software
  2. //
  3. // This script demonstrates the JAY Groups II runnig the PlugIn mode
  4.  
  5. if ( address( "JAYGrpII" ) ) {
  6.     Mode( "plugin" );
  7.  
  8.     // Get a script path
  9.     cwd(Path);
  10.  
  11.     // Create a new group and fill it with a package scripts
  12.     New( Path + "plgtst.grp", "PlugIn Test Group" );
  13.     Add( Path + "jgrpdemo.sic", "GEM Script Demo Script" );
  14.     Add( Path + "sortgrp.sic", "Sort Group Script" );
  15.     Add( Path + "hot2grp\\hot2grp.sic", "Hotlist.html -> Hotlist.grp" );
  16.     Save();
  17.     Quit();
  18. }
  19.  
  20.