1

Is it any possibility to persist work of Hotstrings in Visual Studio 2008.

For instance, I want to get following results: "ras" => replace to runat="server"

I use following script, which work in another application, except VS 2008.

::ras::runat="server"

BIBD
  • 15,107
  • 25
  • 85
  • 137
StreamT
  • 315
  • 2
  • 5
  • 18
  • I was able to use that hotstring in VS2008. Is it possible that its not getting loaded due to other variables in the AHK script? – Brian Schmitt Dec 31 '09 at 19:09

1 Answers1

2

Are you running under the same account?

What about the solution posted over here: Why is visual studio catching key events before autohotkey?

Community
  • 1
  • 1
Brian Schmitt
  • 6,008
  • 1
  • 24
  • 36
  • 1
    Answer from given link: Either of the following solved the problem: - Running both vs and ahk as the current user - Compiling the script and running both vs and the compiled app as administrator – StreamT Jan 01 '10 at 09:19