User Tools

Site Tools


JavaScript_for_Automation

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
JavaScript_for_Automation [2016/04/27 09:20]
peternlewis
JavaScript_for_Automation [2016/04/27 22:16]
peternlewis [Accessing Keyboard Maestro Variables]
Line 28: Line 28:
 {{:​chromwinkeys.png?​400|}}{{:​undefined:​jssafariactiondocument.png?​400|}} {{:​chromwinkeys.png?​400|}}{{:​undefined:​jssafariactiondocument.png?​400|}}
  
-Keyboard Maestro''Execute a JavaScript in Safari' ​and 'Execute a JavaScript in Google Chrome' ​actions are for interacting with web pages, whereas JXA is for automating OS X and OS X Applications. +Keyboard Maestro[Execute a JavaScript in Safari](https://​wiki.keyboardmaestro.com/​action/​Execute_a_JavaScript_in_Safari) ​and [Execute a JavaScript in Google Chrome](https://​wiki.keyboardmaestro.com/​action/​Execute_a_JavaScript_in_Google_Chrome) ​actions are for interacting with web pages, the [Execute a JavaScript in Custom Prompt](https://​wiki.keyboardmaestro.com/​action/​Execute_a_JavaScript_in_Custom_Prompt) action is for interacting with Custom HTML Prompts, whereas JXA is for automating OS X and OS X Applications ​via the [Execute a JavaScript For Automation](https://​wiki.keyboardmaestro.com/​action/​Execute_a_JavaScript_For_Automation) action.
 =====The basics – AppleScript and JavaScript for Automation side by side===== =====The basics – AppleScript and JavaScript for Automation side by side=====
  
Line 275: Line 274:
 to follow ... to follow ...
  
 +=====Accessing Keyboard Maestro Variables=====
 +
 +You can access Keyboard Maestro variables (7.1+) from JXA scripts using the Keyboard Maestro Engine application.
 +
 +<code javascript>​
 +var kme = Application("​Keyboard Maestro Engine"​);​
 +kme.getvariable('​Var'​);​
 +kme.setvariable('​Var',​ { to: "Hello World!"​ });
 +</​code>​
 +
 +JXA can get a list of all variables as described on the [forum](https://​forum.keyboardmaestro.com/​t/​using-km-variables-in-yosemite-javascript-for-applications-jxa/​889) and those methods also provide more convoluted ways to access variables for versions prior to 7.1.
 =====The Automation interface===== =====The Automation interface=====
  
JavaScript_for_Automation.txt · Last modified: 2019/01/12 12:43 by JMichaelTX