User Tools

Site Tools


Scripting_the_Keyboard_Maestro_editor

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
Scripting_the_Keyboard_Maestro_editor [2017/09/20 16:29]
JMichaelTX ADD example to get current macro
Scripting_the_Keyboard_Maestro_editor [2017/09/20 23:24]
JMichaelTX ADD selecting lists of objects
Line 4: Line 4:
  
 The Keyboard Maestro Scripting Definition (sdef) describes all the support, and you can open in in the Script Editor to see more details. ​ Here are some examples of what you can do: The Keyboard Maestro Scripting Definition (sdef) describes all the support, and you can open in in the Script Editor to see more details. ​ Here are some examples of what you can do:
 +
 +FIXME  Just adding this until I can provide a more complete script.
 +
 +===== Selecting Lists of Objects in KM8 =====
 +
 +```applescript
 +tell application "​Keyboard Maestro"​
 +  set selList to selection
 +  set macroList to selected macros
 +  set grpList to selected macro groups
 +end tell
 +```
 +
  
 ===== 1. Get Current Macro Object ===== ===== 1. Get Current Macro Object =====
Line 10: Line 23:
  
 tell application "​Keyboard Maestro"​ tell application "​Keyboard Maestro"​
 +  #    Ver 1.1    2017-09-20
 +  ​
 +  set macroList to every macro whose selected is true
 +  ​
 +  --- Make Sure Only ONE Macro is Selected ---
 +  ​
 +  if ((count of macroList) = 1) then
 +    set oMacro to item 1 of macroList
 +  else
 +    error "​Multiple Macros are selected. ​ Select only ONE and re-execute this script."​
 +  end if
 +  ​
 +  --- Now We can Get/Set Macro Properties ---
   ​   ​
-  set oMacro to first macro whose selected is true 
   set macroName to name of oMacro   set macroName to name of oMacro
   ​   ​
Line 18: Line 43:
 end tell end tell
 ``` ```
 +
  
 ===== 2. Get and Create Variety of Editor Objects ===== ===== 2. Get and Create Variety of Editor Objects =====
Scripting_the_Keyboard_Maestro_editor.txt ยท Last modified: 2018/04/14 19:02 by JMichaelTX