Skip to content

Windows HTA file with buttons that sends simple code to another application (Kratronic Macro Recorder)

Notifications You must be signed in to change notification settings

codysnow87/Reassignment-HTA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

Reassignment-HTA

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>
<script language="VBScript"> Sub RunProgram_OnClick() Set objShell = CreateObject("Wscript.Shell") objShell.Run """C:\Program Files\KraTronic\Recorder\Recorder.exe""" End Sub </script>

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>

About

Windows HTA file with buttons that sends simple code to another application (Kratronic Macro Recorder)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published