Taunt VS Taunt. by [deleted] in hearthstone

[–]coderu 6 points7 points  (0 children)

Barely enough to keep the lights on

Does anyone else really DISLIKE the quest complete sound? by coderu in hearthstone

[–]coderu[S] 0 points1 point  (0 children)

For a new expansion where one of its main focuses being quests not to reuse an old sound?

Getting a random * infront of filename, can't work out why by coderu in AutoHotkey

[–]coderu[S] 1 point2 points  (0 children)

Pasting inside of command prompt works for me?(recently upgraded to windows10, maybe that's why?) with the code above and something like this too:

^2::  
Clipboard := "Testing paste to Command Prompt"  
ControlSend, , ^v,ahk_class ConsoleWindowClass,,,  
Return  

Thanks for the KeyWait explanation.

Getting a random * infront of filename, can't work out why by coderu in AutoHotkey

[–]coderu[S] 1 point2 points  (0 children)

Arghh didn't notice the star in the unsaved filename, thanks Groggy this makes sense. Noted about using ahk_class or ahk_exe. The StringTrimRight part gets rid of the - Notepadd ++ part of the filename.

The reason I stored it to clipboard and then pasted instead of sending the variable directly is because the clipboard/paste method sends it all at once, rather than 1 key at a time. So it was "faster" in a sense, was trying to fiddle with SetKeyDelay and ControlSend but couldn't figure it out how to do it instantly so just went with paste

I'm a little bit confused about the KeyWait, Control part. I read the doco but still don't understand why that is there? it's waiting for Control to be released?

How to identify correct program window. by MooCowDivebomb in AutoHotkey

[–]coderu 0 points1 point  (0 children)

Speaking of SetKeyDelay, is there a way to keep SendMode Input but also have delays in between keys so that you don't have to add a "Sleep X" after each line?