Example of a JScript
" ^1 w9 s0 k+ J3 B; Zvar vbOKCancel = 1; + K- {! J- n! W
var vbCancel = 2; 6 p' c0 i9 M+ Y" R& ^$ ^
var vbInformation = 64;
1 {( |; u" ?6 ]2 B/ Avar Finished=false;
9 e$ w# M/ y( R/ \' Z ; t& S: R% C, ?1 n. C
var WSHShell = new ActiveXObject("WScript.Shell");
5 D3 J( c: I+ Y! l8 a) @" n9 z {$ g* F! m) d8 R5 d3 G, m6 N8 q
var simple = WScript.CreateObject("Tecnomatix.PlantSimulation.RemoteControl.9", "RemoteControl_"); 8 i( t' H3 ?. S
9 R* b4 P7 ?1 l/ G, `
simple.SetLicenseType("Runtime"); 4 k# C' o5 Q, Y1 v+ p; y
6 S: K' G- z2 t! b0 R Ztry
' R7 o% t K& F8 V$ z* N. Z{ ( l% q' r. \2 }& q, x
// Enter the path to a model file! 2 b, m) C, P/ P
simple.LoadModel("C:\\Models\\Test.spp");
7 E v$ T- k3 a$ K3 e}
+ z1 N1 s* I+ p7 S6 M- d' b& hcatch (e)
6 w9 x7 v* E- H8 t4 Z) j# c{ 1 O2 \5 ^2 f6 [2 J/ }0 s6 Q9 f
WScript.Echo("Could not load Model!");
& I( o0 X% v6 K l, @; v; Y WScript.Quit();
5 ?( g" i" a! l* @6 A0 w} 1 F6 [( X, @8 d' E0 H7 h9 Q
' b* F- q! q% W. ~
try
* p9 q# R6 y7 K1 Y% C* k{ 5 Y9 I1 S: P5 e1 a
simple.SetValue(".Models.Frame.Buffer.procTime", 700.0); } catch (e) { 7 P: g) u2 q4 a
r=WSHShell.Popup(e.description, 0, "Continue?", vbOKCancel + vbInformation);
" b+ o- j- F# A4 b# C, d0 s- P' f! C if (r == vbCancel) ; U8 y1 W/ t: Z! k6 [
{ ' ^( i8 \; ^2 x0 A$ r$ W
simple.CloseModel(); ( O. | _! q# b
WScript.Quit(); 6 |( @+ A! E& }0 S+ ]. j( K2 t
} ! A0 Z7 y5 p7 E4 {: o6 i
} - p7 i5 R! G( S. D0 z: s
X: U; f$ M, h4 c, H3 A
simple.StartSimulation(".Models.Frame.EventController");
) B: B+ J1 h3 g" W1 K; e
: i. @5 w, a! [# Uif (simple.IsSimulationRunning())
% H# U% q7 x8 p2 G- `$ D( U6 I WScript.Echo("Simulation is running!"); & v B' f9 q4 z! a2 |: Q; k0 ~
! {* o: e: F/ H# v8 X* J3 ^
// Wait until simulation is finished
1 i( c1 r1 t, |$ C K Lwhile (!Finished) WScript.Sleep(2000);
4 L% Q8 G' r( D o
O- c/ W7 R$ T6 I' tsimple.CloseModel();
0 B; z: i* b6 h4 gsimple.Quit(); ! [' e- ~; a, D d- k+ u
WScript.Quit(); 8 L% n+ h& @3 w$ q
* \0 m3 x: @+ S: S& s9 R5 z
$ q3 _9 F& m0 m- @# _1 m8 e
function RemoteControl_SimulationFinished() + ~8 B0 L8 k5 A; D% h. O, ]' y. V
{ ; T3 a1 ^' v9 d2 q
WScript.Echo("Simulation Finished!"); |