Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. addon core version 4.100.19170.929
  2. addon language version 4.100.19170.929
  3. ♥macrodlls = System.dll,System.Drawing.dll,System.Windows.Forms.dll,AutoHotkey.Interop.dll
  4. ♥macronamespaces = System,AutoHotkey.Interop,System.Windows.Forms
  5. ♥hellogiant = "Hello "
  6. var ahk = AutoHotkeyEngine.Instance;
  7. ahk.ExecRaw("MsgBox, Hello World!");
  8. ahk.SetVar("x", ♥hellogiant);
  9. ahk.SetVar("y", "World, from AHK and G1ANT!");
  10. ahk.ExecRaw("z:=x . y");
  11. string zValue = ahk.GetVar("z");
  12. System.Windows.Forms.MessageBox.Show(zValue);;
  13. ahk.SetVar("z", zValue);
  14. ahk.ExecRaw("Msgbox, I can say %z%")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement