Example of a JScript
# T- a M: f! ivar vbOKCancel = 1; % a8 f% U7 x4 _5 {
var vbCancel = 2; 6 Q: P$ b! a3 Y2 y, Y2 Z' `8 V
var vbInformation = 64;
) E. Y5 Q; `: @! l. dvar Finished=false; " \6 t. D* y" ~- e# |
1 T# _" a4 A; ^' tvar WSHShell = new ActiveXObject("WScript.Shell");
$ F" _+ l6 j; P( _4 |3 D( f
7 U! [) j4 T _$ I$ ^# `9 @var simple = WScript.CreateObject("Tecnomatix.PlantSimulation.RemoteControl.9", "RemoteControl_");
; Q. Y9 g, C% }
; {2 G l) ~* ]* `# T( g* ~" Gsimple.SetLicenseType("Runtime"); ( ^0 i [1 x. t8 i" M
$ w$ F' z8 p# v7 x5 W+ Itry
; `/ z, C" ?3 n3 c{ 6 {9 b. C6 Y1 k% A$ h2 b
// Enter the path to a model file!
% o1 p2 D8 Y/ ] b simple.LoadModel("C:\\Models\\Test.spp"); / w( @. _, y: e. m J
} 2 Q/ k: Y: _/ U9 K5 D6 [
catch (e) % h6 p1 @% D! X# h0 h
{ : ]0 _9 ^7 ]- {8 b' v L
WScript.Echo("Could not load Model!"); , v3 @* b& j; H6 \7 t2 R- j) H/ I
WScript.Quit();
. j; v( i. c' S& C' G8 `$ P}
/ _, i7 I' E1 c
9 L) F. C. P) x7 c: ~try ' z5 Z. x$ g4 Z5 W$ a' w: |$ N
{
' o0 I: z% S7 X* C5 m) `$ W simple.SetValue(".Models.Frame.Buffer.procTime", 700.0); } catch (e) { 2 R1 y* L4 t) G p/ H
r=WSHShell.Popup(e.description, 0, "Continue?", vbOKCancel + vbInformation); " t4 y8 y, F2 J' I- d# e& _* ^5 D
if (r == vbCancel)
0 K" |- n# F& {+ e, s { 1 }* W/ A) i. k7 U6 c$ W
simple.CloseModel(); ( f! a0 {5 O) E; j( s) q$ r1 z5 y* u
WScript.Quit(); : ^: \+ M8 W/ V2 \0 {0 R
} 6 h0 c8 o* R1 q1 ~! v- [
}
2 n3 {) L- @2 K" g; y! | " _+ i2 ^( j/ n# x* [, B2 a% d4 F) k+ Y
simple.StartSimulation(".Models.Frame.EventController");
3 a1 Y, i8 t w# z2 P& e
5 N6 _3 K% W2 [/ s1 ~if (simple.IsSimulationRunning())
7 ?- @3 b# t- [1 Z/ A g @& Q# I WScript.Echo("Simulation is running!"); * {4 M4 r" ?3 \. @8 \% a
" o* R& w* O8 w8 L' X/ B! D
// Wait until simulation is finished
9 `) s9 H# x* Y5 w/ Y. gwhile (!Finished) WScript.Sleep(2000);
; q9 j2 @3 ?2 C0 H6 N8 U
6 V( V/ Q9 ]7 f& u, hsimple.CloseModel(); . t( U- e4 K4 ~4 u8 m0 U+ T4 \
simple.Quit(); ( a3 _/ c+ E, h* N
WScript.Quit();
. e' a( I, y$ T/ X& d# H
" `) Z" _/ q5 Y) m' m/ N
& i$ v8 p: h. ^% wfunction RemoteControl_SimulationFinished()
% T% |* g7 R7 E7 n$ B& j4 e2 S{
7 E# U2 H2 M+ R7 v; j- s' u WScript.Echo("Simulation Finished!"); |