Skip to content

Command Examples

Muhammed İKİNCİ edited this page Aug 30, 2017 · 1 revision

Example Print Message

{
  "CommandType"   : "print_message",
  "FormCaption"   : "Test Form",
  "Text"          : "Hello World",
  "FontSize"      : 50
}

Example: Print Message After 5 seconds

{
  "CommandType"   : "print_message",
  "FormCaption"   : "Test Form",
  "Text"          : "Hello World",
  "FontSize"      : 50,
  "AfterTime"     : 5000
}

Example: Open Program

{
  "CommandType"   : "open_program",
  "Text"          : "Spotify"
}

Example: Open Program After 5 seconds

{
  "CommandType"   : "open_program",
  "Text"          : "Spotify",
  "AfterTime"     : "5000"
}

Example: Open Program and Destroy 5 seconds later

{
  "CommandType"   : "open_program",
  "Text"          : "Spotify",
  "OverTime"      : "5000"
}

Example: List&View -> Files And Folders

{
  "CommandType"   : "get_folder_list",
  "FilePath"      : "c:\\users"
}

Example: Get File

{
  "CommandType"   : "get_file",
  "FilePath"      : "c:\\users",
  "Text"          : "desktop.ini"
}