Search found 202 matches

by icuurd12b42
13 Jul 2018, 07:00
Forum: Ask for Help (v1)
Topic: Change my display and resolution?
Replies: 2
Views: 799

Re: Change my display and resolution?

shift+winkey+P not good enough for ya?
by icuurd12b42
07 Jul 2018, 13:57
Forum: Ask for Help (v1)
Topic: Combination keys are locked from use. How can I circumvent? Topic is solved
Replies: 5
Views: 1497

Re: Combination keys are locked from use. How can I circumvent? Topic is solved

catch space only and use GetKeyState to check if ` is also down... if so, do your code, if not send space for it to pass through, if you need it to pass through
by icuurd12b42
07 Jul 2018, 11:49
Forum: Ask for Help (v1)
Topic: Combination keys are locked from use. How can I circumvent? Topic is solved
Replies: 5
Views: 1497

Re: Combination keys are locked from use. How can I circumvent? Topic is solved

https://autohotkey.com/docs/KeyList.htm

see SCnnn or VKnnn

` is a OEM key that is not defined so you need the scan code of VK OEM code. google microsoft virtual keys list for the scan code/vk (virtual key) code for `
by icuurd12b42
02 Jul 2018, 02:16
Forum: Ask for Help (v1)
Topic: On/Off Key Switches?
Replies: 4
Views: 1412

Re: On/Off Key Switches?

odd that you don't need toggle to be defined and initialized... cool
by icuurd12b42
23 Jun 2018, 05:27
Forum: Gaming Help (v1)
Topic: AH doesn't seem to work on my game
Replies: 1
Views: 775

Re: AH doesn't seem to work on my game

run the script as administrator some games will not respond to a simple Send Character command, you may need send Key down, then a sleep, then a Key up examples from https://autohotkey.com/docs/commands/Send.htm Send {b down}{b up} Send {TAB down}{TAB up} Send {Up down} ; Press down the up-arrow key...
by icuurd12b42
19 Jun 2018, 23:58
Forum: Ask for Help (v1)
Topic: Can someone explain the timer commands in a more comprehensive way than the guide or just enough to make a specific prog
Replies: 6
Views: 3641

Re: Can someone explain the timer commands in a more comprehensive way than the guide or just enough to make a specific

functions are mainly useful to encapsulate the variables the feature you implement requires to work... making it easier to manage the program... also a function can be called more easily... In any case it's 2018 is the short answer... As much as I enjoyed programming with basic on the vic 20, frankl...
by icuurd12b42
18 Jun 2018, 09:23
Forum: Ask for Help (v1)
Topic: IE COM. Page does not support ClassName?
Replies: 8
Views: 1655

Re: IE COM. Page does not support ClassName?

could be simply the missing quotes
by icuurd12b42
18 Jun 2018, 05:42
Forum: Ask for Help (v1)
Topic: On/Off Key Switches?
Replies: 4
Views: 1412

Re: On/Off Key Switches?

Code: Select all

...
toggle := false
::z
toggle := ! toggle
return

::a
if(toggle)
    Send, 1
else
    Send, a
return
you'll need to figure out if you want to send A or a is caps or shift is down...
by icuurd12b42
18 Jun 2018, 05:31
Forum: J'ai besoin d'aide
Topic: Autohotkey ne dure pas (jeux flyff)
Replies: 10
Views: 5990

Re: Autohotkey ne dure pas (jeux flyff)

et bien je viens d'essayer de compiler en .exe et sa marche toujours pas. En faite sa marche durant les 30s voir 1min et ce coupe. si tu peux m'expliquer comment forcer les 32 bit ect car je n'y connais rien En Anglais, mon systeme est anglo... Since last win 10 update 2 days ago... Right Click .ah...
by icuurd12b42
15 Jun 2018, 15:50
Forum: J'ai besoin d'aide
Topic: Autohotkey ne dure pas (jeux flyff)
Replies: 10
Views: 5990

Re: Autohotkey ne dure pas (jeux flyff)

As-tu essayé de compiler le fichier .ahk. -> .exe J'ai jamais eu un problème qui nécessite re-lancer le programme plusieurs fois, mais il me semble que le problème pourrait être l'interpréteur... Aussi tu peux forcer l'interpréteur 32 bit Ansi, 32bit Unicode et 64Bit unicode... Mois j'utilise 32bit ...
by icuurd12b42
14 Jun 2018, 18:33
Forum: Ask for Help (v1)
Topic: How do YOU start most of your AHK scripts?
Replies: 7
Views: 2499

Re: How do YOU start most of your AHK scripts?

I totally zoned out on the G-key stuff on my first read... sorry. I personally dont use the gkey system as logitech gaming software has lost my settings too many times on updates... If you have a ssd drive and you are not that concerned about the time it takes to load the script, compile it and runn...
by icuurd12b42
14 Jun 2018, 17:45
Forum: Ask for Help (v1)
Topic: Can someone explain the timer commands in a more comprehensive way than the guide or just enough to make a specific prog
Replies: 6
Views: 3641

Re: Can someone explain the timer commands in a more comprehensive way than the guide or just enough to make a specific

and use a negative time if you want it to tick only once

you can also pass a function instead of a label... I wish people used functions more. all them label based examples make the language look like the 70's
by icuurd12b42
14 Jun 2018, 17:33
Forum: Ask for Help (v1)
Topic: How do YOU start most of your AHK scripts?
Replies: 7
Views: 2499

Re: How do YOU start most of your AHK scripts?

I don't get the question either. I can guess you are asking if a solution to a problem is appropriate... I am guessing you found the need to isolate the key labels from the code maybe? because the more you add the harder it is to manage? and the more ahk files you make the more you find yourself cop...
by icuurd12b42
11 Jun 2018, 07:01
Forum: J'ai besoin d'aide
Topic: Autohotkey ne dure pas (jeux flyff)
Replies: 10
Views: 5990

Re: Autohotkey ne dure pas (jeux flyff)

T'as qu'a rajouter les Labels pour les clefs ou les boutons que tu veux... En passant il est possible que mousewheel reçoit plusieurs messages pour ce que semble être, tactilement, 1 mouvement. alors peut être se serait mieux d'ignorer les messages extra... la variable doingit sert a canceller l'act...
by icuurd12b42
10 Jun 2018, 23:33
Forum: J'ai besoin d'aide
Topic: Autohotkey ne dure pas (jeux flyff)
Replies: 10
Views: 5990

Re: Autohotkey ne dure pas (jeux flyff)

essait... Send, {Tab down} Sleep, 100 Send, {Tab up} Sleep, 100 c'a arrive parfois que Send est trop rapide surtout pour les jeux qui souvent ne se comportent pas comme un application windows en ce qui regarde le clavier.... réduit les valeurs de Sleep lorsque tu as trouvé la combinaison qui fonctio...
by icuurd12b42
04 Jun 2018, 04:28
Forum: Ask for Help (v1)
Topic: I don't know the difference between `r and `n
Replies: 9
Views: 8247

Re: I don't know the difference between `r and `n

Caret \r\n: Not sure. I been on windows since the 90's (and typewriters before that :P). ctrl+left/right have always been next word, prev word, but I may not remember things 100% being do old and going senile... and I did have my one experience with this caret between \r \n lately with coding my edi...
by icuurd12b42
04 Jun 2018, 03:55
Forum: Ask for Help (v1)
Topic: I don't know the difference between `r and `n
Replies: 9
Views: 8247

Re: I don't know the difference between `r and `n

>Can anyone find a good video demonstrating the physical meanings on a typewriter/other hardware? I couldn't find one. I did not realise people were so out of touch. The carriage is what the printer head sits on. it "carries" the print head left to right... or it carries the paper roller right to le...
by icuurd12b42
04 Jun 2018, 01:20
Forum: Ask for Help (v1)
Topic: I don't know the difference between `r and `n
Replies: 9
Views: 8247

Re: I don't know the difference between `r and `n

\n is a line feed, the standard end of line in linux \r\n is a hard line feed or carriage return linefeed, the standard end of line in windows, hated by contrarians ;) \n in windows is a soft line feed often used to mark where you hit ctrl+enter both demark the end of a line but also in many case de...
by icuurd12b42
02 Jun 2018, 01:40
Forum: Ask for Help (v1)
Topic: Change audio output Topic is solved
Replies: 55
Views: 41359

Re: Change audio output Topic is solved

is that a "I want a AHK script to switch audio output device" question...
It takes 3 clicks to switch audio device in windows 10. no sure what would be advantageous to have a hot key...
Speaker Tray->Device Drop Down above the volume->Device You want
by icuurd12b42
02 Jun 2018, 01:25
Forum: Ask for Help (v1)
Topic: Tab3 Control Display Glitch
Replies: 3
Views: 1078

Re: Tab3 Control Display Glitch

I see it, windows 10...

swap the choose and the show calls

...
;-- Show it
gui Show,,Options
;-- Select tab
GUIControl Choose,MyTab,|Station List
return
...

Go to advanced search