Windows HTA file with buttons that sends simple code to another application (Kratronic Macro Recorder) <!doctype html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>guiltySpark</title>
Run Kratronic
<script type="text/vbscript">
Sub BtnRun1_OnClick()
Dim WShell : Set WShell = CreateObject("WScript.Shell")
With WShell
.SendKeys "^%r"
End With
End Sub
</script>
Reassign Claim
<script type="text/vbscript">
Sub BtnRun2_OnClick()
Dim WShell : Set WShell = CreateObject("WScript.Shell")
With WShell
.SendKeys "^%1"
End With
End Sub
</script>
User
<script type="text/javascript"> window.resizeTo(150,280); </script></body>