Search found 134 matches
- 05 Feb 2021, 18:08
- Forum: Ask For Help
- Topic: AHK doesn't work in Everything (File Explorer)
- Replies: 2
- Views: 55
- 05 Feb 2021, 17:34
- Forum: Ask For Help
- Topic: AHK doesn't work in Everything (File Explorer)
- Replies: 2
- Views: 55
AHK doesn't work in Everything (File Explorer)
Does anyone know why Autohotkey doesn't work in Everything (File Explorer)?
It worked in previous versions, but not the latest.
Can I do something to make it work?
I already tried:
#IfWinactivate ahk_exe Everything.exe
#If Winactive("Everything")
It worked in previous versions, but not the latest.
Can I do something to make it work?
I already tried:
#IfWinactivate ahk_exe Everything.exe
#If Winactive("Everything")
- 25 Nov 2020, 14:42
- Forum: Pedir Ayuda
- Topic: Mover mouse a X coordenadas, hacer clic y volver
- Replies: 2
- Views: 755
Re: Mover mouse a X coordenadas, hacer clic y volver
Si quieres que se mantenga presionado por dos segundos debería ser así: MouseGetPos X, Y ; DETECTA POSICIÓN INICIAL Click, Down, 1300, 0 ; MANTIENE EL MOUSE PRESIONADO EN LUGAR ESPECÍFICO Sleep 2000 ; ESPERA 2 SEGUNDOS Click, Up ; LIBERA EL MOUSE Mousemove, %X%, %Y% ; VUELVE EL MOUSE A LA POSICIÓN I...
- 25 Nov 2020, 14:39
- Forum: Pedir Ayuda
- Topic: Mover mouse a X coordenadas, hacer clic y volver
- Replies: 2
- Views: 755
Re: Mover mouse a X coordenadas, hacer clic y volver
Code: Select all
MouseGetPos X, Y ; DETECTA POSICIÓN INICIAL
Click, 1300, 0 ; CLICKEA EN LUGAR ESPECÍFICO
Sleep 2000 ; ESPERA 2 SEGUNDOS
Mousemove, %X%, %Y% ; VUELVE EL MOUSE A LA POSICIÓN INICIAL
Return
- 23 Nov 2020, 23:24
- Forum: Ask For Help
- Topic: Help with an easy script: If Capslock is OFF, Turn On Topic is solved
- Replies: 2
- Views: 46
Re: I need help with an easy script Topic is solved
Thanks a lot!
- 23 Nov 2020, 22:54
- Forum: Ask For Help
- Topic: Help with an easy script: If Capslock is OFF, Turn On Topic is solved
- Replies: 2
- Views: 46
Help with an easy script: If Capslock is OFF, Turn On Topic is solved
Hi guys,
I need:
If Capslock is OFF
Turn On
Thanks in advance
I need:
If Capslock is OFF
Turn On
Thanks in advance
- 31 Jul 2020, 12:58
- Forum: Ask For Help
- Topic: AHK doesn't work in Device Manager (devmgmt.msc) Topic is solved
- Replies: 1
- Views: 828
AHK doesn't work in Device Manager (devmgmt.msc) Topic is solved
Why AHK does not work in Device Manager window (devmgmt.msc)?
Is there any way it can work?
Is there any way it can work?
- 24 Jul 2020, 20:01
- Forum: Ask For Help
- Topic: "GoTo a Label" from a Function Topic is solved
- Replies: 2
- Views: 941
Re: "GoTo a Label" from a Function Topic is solved
Not only can you not goto a label from inside a function to outside, you wouldn’t want to go to that label because it’s an infinite loop and it would never return. Try using SetTimer to launch a subroutine to display your TrayTip every seven seconds by setting the period to 7000. Thank you very muc...
- 24 Jul 2020, 17:18
- Forum: Ask For Help
- Topic: "GoTo a Label" from a Function Topic is solved
- Replies: 2
- Views: 941
"GoTo a Label" from a Function Topic is solved
Hello guys, I would like to know if you can help me with the following problem: I have the following code so that, eventually, after pressing + f1, I temporarily change the function of Numpad0, but not to forget that this function is activated, I would like a Traytip to remind me of this every 7 sec...
- 17 Apr 2020, 07:46
- Forum: Ask For Help
- Topic: Select a piece of text from a TXT file Topic is solved
- Replies: 5
- Views: 501
Re: Select a piece of text from a TXT file Topic is solved
Thank you very mucth Boiler!
Very clear and didactic!
Very clear and didactic!
- 16 Apr 2020, 21:31
- Forum: Ask For Help
- Topic: Select a piece of text from a TXT file Topic is solved
- Replies: 5
- Views: 501
Select a piece of text from a TXT file Topic is solved
Hello guys I need the following: I want that AHK selects a segment from a certain start, to a certain end, of a TXT file in which I have certain email addresses, and which, at the same time, I modify frequently, And after selecting it, copy it to the Clipboard. The FileReadLine command doesn't work ...
- 30 Jan 2020, 01:05
- Forum: Ask For Help
- Topic: Problem with command send using a string Topic is solved
- Replies: 2
- Views: 266
Re: Problem with command send using a string Topic is solved
Thank you very much!!
- 29 Jan 2020, 21:29
- Forum: Ask For Help
- Topic: Problem with command send using a string Topic is solved
- Replies: 2
- Views: 266
Problem with command send using a string Topic is solved
I need to automate this: Send this text "MouseGetPos X, Y Mousemove, %X%, %Y%" And after that, press "Up 3 times" I've tried this, but it doesn't work: Send, {Text} ( MouseGetPos X, Y Mousemove, %X%, %Y% ) Send {Up 3} Warning windows: "This variable has not been assigned a value --- > Send, {Text} M...
- 09 Oct 2019, 21:58
- Forum: Ask For Help
- Topic: Edit an specific script with Notepad Topic is solved
- Replies: 2
- Views: 474
Re: Run any script with Notepad Topic is solved
Great!gregster wrote: ↑09 Oct 2019, 21:43Try to use the file path of the AHK script as a parameter for notepad.exe:Then Notepad will open it for editing.Code: Select all
^3::Run notepad.exe C:\My Documents\Script 322.ahk
Thank you very much
- 09 Oct 2019, 21:31
- Forum: Ask For Help
- Topic: Edit an specific script with Notepad Topic is solved
- Replies: 2
- Views: 474
Edit an specific script with Notepad Topic is solved
First, greetings everyone. I am a newbie in AHK, and I have the following need: I have the ScitE4AutoHotkey program installed, because I usually open Ahk scripts with it. Anyway, occasionally I would like to open a particular script with Notepad. How could I reflect that? Example: ^ 3 :: Run edit C:...
- 12 Sep 2019, 10:20
- Forum: Ask For Help
- Topic: Adress File or Folder to Clipboard
- Replies: 7
- Views: 972
Adress File or Folder to Clipboard
Is it feasible to obtain a script that does the following?: When you click on a certain file in any windows folder, it copies its address to the clipboard. The same for the folder. For example: Ex1: Click on file "Activities.txt" Clipboard = C://My Folder/Activities.txt Or Ex2: Click on folder "My F...
- 12 Sep 2019, 07:09
- Forum: Ask For Help
- Topic: Flashcards game with AHK Topic is solved
- Replies: 5
- Views: 766
Re: Flashcards game with AHK Topic is solved
Thank you very much!!
- 11 Sep 2019, 23:40
- Forum: Ask For Help
- Topic: Flashcards game with AHK Topic is solved
- Replies: 5
- Views: 766
Re: Flashcards game with AHK Topic is solved
I am much closer to reaching my goal. But I need to solve two problems: 1. I found how to make it work for key-values, but I don't know how use both words (strings). 2. I dont know how get random results. Does anyone know how? #!j:: ; array := {house: casa, tree: árbol, sun: sol} ; DOES'NT WORK arra...
- 11 Sep 2019, 16:45
- Forum: Ask For Help
- Topic: Flashcards game with AHK Topic is solved
- Replies: 5
- Views: 766
Re: Flashcards game with AHK Topic is solved
AHKStudent wrote: ↑11 Sep 2019, 16:34if you add
q::
on top of ButtonOK32: it will change every time you hit q
The back and front idea can be implemented using an associative array
Thank you AHKStudent,
but I can't do the script by myself.
My knowledge in AHK is very elementary.
- 11 Sep 2019, 13:32
- Forum: Ask For Help
- Topic: Flashcards game with AHK Topic is solved
- Replies: 5
- Views: 766
Flashcards game with AHK Topic is solved
Hi guys, I would like to know if it is possible to make a kind of FlashCards game with AHK. For example, from the following list, for English-Spanish words: House - Casa Tree - Árbol Sun - Sol I would like random words to appear (example, Tree), and by pressing a hotkey (ex. F1), you can see the bac...