Skip to content

Instantly share code, notes, and snippets.

@ff6347
Last active October 4, 2015 14:38
Show Gist options
  • Save ff6347/2654512 to your computer and use it in GitHub Desktop.
Save ff6347/2654512 to your computer and use it in GitHub Desktop.
What is a targetengine in extendscript?
#targetengine "session01"
var myValue = 0; // new value
alert(myValue); // result is 0
myValue++; // increment by 1
#targetengine "session01"
alert(myValue); // result is 1
Der Algorithmus lautet wie folgt:
Start
Sitzung 1
definiere Variable meinWert und Speicher 0 in ihr
zeige Wert von meinWert
erhöhe meinWert um eins
Stop
Start
Sitzung 1
zeige Wert von meinWert
Stop
@ff6347
Copy link
Author

ff6347 commented May 11, 2012

This Gist is part of MT4D coming soon on fabiantheblind.info

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment