home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Library script test - this test gets the script object for the
- // script defined in library.script and calls its two "methods"
-
- function DoCommand()
- {
- var library = getScriptObject("Script Examples\\library.script");
- if (library)
- {
- library.startSound();
- for (var i = 0; i < 200000; i++)
- {
- var x = i*i;
- }
- library.stopSound();
- }
- }
-
-
- !!/Script
-