home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / LIBRARYTEST.SCRIPT < prev    next >
Encoding:
Text File  |  1998-01-06  |  457 b   |  23 lines

  1. !!Script
  2. // Copyright ⌐ 1997-1998 - Modelworks Software
  3.  
  4. // Library script test - this test gets the script object for the
  5. // script defined in library.script and calls its two "methods"
  6.  
  7. function DoCommand()
  8. {
  9.   var library = getScriptObject("Script Examples\\library.script");
  10.   if (library)
  11.   {
  12.     library.startSound();
  13.     for (var i = 0; i < 200000; i++)
  14.     {
  15.       var x = i*i;
  16.     }
  17.     library.stopSound();
  18.   }
  19. }
  20.  
  21.  
  22. !!/Script
  23.