Sudhakar Kalmari
Sudhakar Kalmari

Reputation: 1849

AHK keyword activation

found this on a site can any one tell me what key to press to activate the startwork

WorkStartup()
{   
    Run, powershell Start Outlook
}

:*:startwork::
    WorkStartup()
return

Upvotes: 0

Views: 60

Answers (1)

phil294
phil294

Reputation: 10822

You are looking at a Hostring. You need to type the literal word startwork anywhere in order for WorkStartup() to be ran.

In your example, the * option is active, which, according to the link, means:

  • (asterisk): An ending character (e.g. space, period, or enter) is not required to trigger the hotstring.

Upvotes: 1

Related Questions