Search found 141 matches

by Lepes
31 Mar 2022, 04:38
Forum: Scripts and Functions (v1)
Topic: AHK DllCall Terminator v5.6 - A tool to automatically generate dllcall code
Replies: 22
Views: 4097

Re: AHK DllCall Terminator - A tool to automatically generate dllcall code

Impressive work!!!

I Think that should be integrated into any AHK IDE
by Lepes
17 Mar 2022, 06:32
Forum: Ask for Help (v1)
Topic: How long can script be and how many can I use? Topic is solved
Replies: 9
Views: 772

Re: How long can script be and how many can I use? Topic is solved

Someone need to say, sorry for this.... You spent more time on that dictionary than on a typping program like Klavaro 2.0 (or any other one to learn computer typping). I recently changed to an ergonomic keyboard, mecanical fingers movements are different from what I was used to for 20 years!!, so I ...
by Lepes
14 Mar 2022, 13:19
Forum: Ask for Help (v1)
Topic: Can I do everything AHK does in Python?
Replies: 15
Views: 7532

Re: Can I do everything AHK does in Python?

Can I do everything AHK does in Python? No. To be honest, each language is focused into a specific area. Changing keybindings (or shortcut) for every program you use is something specific for AHK (or any other program like that, please, don't get me wrong, I'm not AHK fanatic, I use Delphi, Python 2...
by Lepes
14 Mar 2022, 06:39
Forum: Pedir Ayuda
Topic: un script que se ejecute con el click izquierdo Topic is solved
Replies: 1
Views: 679

Re: un script que se ejecute con el click izquierdo Topic is solved

¿qué juego es? Yo para Ark tengo para correr automáticamente (y volar), dar comida a los dinos, picar piedra, etc Si es para ese juego te puedo pasar un script que funciona, si es para otro no sé. Hay juegos que tienen "anti-cheat" y detectan este tipo de cosas y no te deja usarlas, yo al menos juga...
by Lepes
01 Mar 2022, 10:07
Forum: Pedir Ayuda
Topic: Restaurar Icono de Carpeta Predeterminado
Replies: 24
Views: 3168

Re: Restaurar Icono de Carpeta Predeterminado

Cuando personalizas la carpeta, dentro se crea un archivo llamado "desktop.ini", oculto, dale arriba en la carpeta a vista > elementos ocultos para visualizarlo. Si abres el archivo con el bloc de notas, puedes ver lo que hace (guarda la última forma de ver la carpeta, la imagen asociada, etc) Si bo...
by Lepes
13 Feb 2022, 19:17
Forum: Ask for Help (v1)
Topic: Text to speech
Replies: 3
Views: 1446

Re: Text to speech

maybe this topic helps: viewtopic.php?p=431416#p431416
by Lepes
11 Feb 2022, 07:36
Forum: Ask for Help (v1)
Topic: Remote Desktop Help Topic is solved
Replies: 8
Views: 1393

Re: Remote Desktop Help Topic is solved

this part:

Code: Select all

 x1=525
		y1=305
		
		MouseMove %525%, %305%
		Click
Should be:

Code: Select all

x1=525
		y1=305
		
		MouseMove %x1%, %y1%
		MouseMove 525, 305   ; or maybe this way
		Click
 
I suppose you tried and didn't work too. It is only what I can say
by Lepes
09 Feb 2022, 06:16
Forum: Ask for Help (v1)
Topic: Running bash commands from Autohotkey
Replies: 4
Views: 1658

Re: Running bash commands from Autohotkey

https://www.howtogeek.com/261591/how-to-create-and-run-bash-shell-scripts-on-windows-10/

From that web says there are two ways:
- Run, bash -c "bash command here" [attention to double quotes that should be passed!]
- Run, myscript.sh


Of course "Run" is an autohotkey command!
by Lepes
08 Feb 2022, 09:22
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 338
Views: 183201

Re: Radial menu scripts

@submeg
Look at the RM help file, General settings:

Code: Select all

[General]
RMSelectMethod =	release
RMShowHotkey =		RButton
RMShowMethod =		D 
by Lepes
07 Feb 2022, 06:42
Forum: Pedir Ayuda
Topic: Leer variable desde registro y asociarla a CheckBox (SOLUCIONADO)
Replies: 2
Views: 594

Re: Leer variable desde registro y asociarla a CheckBox

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starti...
by Lepes
04 Feb 2022, 04:55
Forum: Ask for Help (v1)
Topic: Create Multi-keybinds hotkeys; X-keys and AHK
Replies: 4
Views: 829

Re: Create Multi-keybinds hotkeys; X-keys and AHK

can you assign F13 to F24 keys to your external keyboard?
by Lepes
01 Feb 2022, 16:26
Forum: Pedir Ayuda
Topic: Script compilado no hace nada
Replies: 2
Views: 489

Re: Script compilado no hace nada

Yo le veo algunos detalles a ese tipo de scripts y no lo usaría así: - El bucle se ejecuta de forma indefinida y sin pausa... o sea que igual mira 1 millon de veces por cada segundo si la ventana activa es el bloc de notas. Creo recordar que hay un límite entre instrucciones de 15 milisegundos, pero...
by Lepes
26 Jan 2022, 13:42
Forum: General Discussion
Topic: Should I include utility functions in the class?
Replies: 2
Views: 985

Re: Should I include utility functions in the class?

It is and endless discussion topic: - read the license of your utilities, maybe a creator don't like you include its software embeded in other software. - If you include source code, your piece of software will ever work. If you include a link to resources and the owner changes something in it, That...
by Lepes
08 Jan 2022, 20:35
Forum: Ask for Help (v1)
Topic: programmatically indicate the opening of specific files in dialog windows
Replies: 10
Views: 911

Re: programmatically indicate the opening of specific files in dialog windows

The 256 chars limit is not in that Edit box. It is a limit on Windows source code. If you have Win10 you can override this constant: https://knowledge.autodesk.com/support/autocad/learn-explore/caas/sfdcarticles/sfdcarticles/The-Windows-10-default-path-length-limitation-MAX-PATH-is-256-characters.ht...
by Lepes
28 Dec 2021, 08:36
Forum: Ask for Help (v1)
Topic: make the cursor stay still
Replies: 6
Views: 802

Re: make the cursor stay still

Hello I'm using an application that when I leave the mouse cursor stopped in a place opens a window that shows information. But I can't keep the mouse still all the time. Is there any way to leave a "virtual cursor"' still while using the mouse normally? that is an option of your mouse preferences,...
by Lepes
24 Dec 2021, 12:59
Forum: Ask for Help (v1)
Topic: gui to substitute msgbox, better way possible
Replies: 3
Views: 613

Re: gui to substitute msgbox, better way possible

I'm looking for a possibility to substitute these msgbox-/inputbox-commands by much more flexible gui-solution. J.B. You need You are describing a "non intrusive interface", let me explain what I mean: A msgbox is a intrusive interface because it need user atention, stop user from what he is doing ...
by Lepes
24 Dec 2021, 07:22
Forum: Pedir Ayuda
Topic: Script arrastra la ventana del programa. Topic is solved
Replies: 1
Views: 851

Re: Script arrastra la ventana del programa. Topic is solved

Este código es sacado del foro inglés, limita el cursor al área que se le diga. Yo he usado el bloc de notas para probar. Si la ventana puede cambiarse de tamaño, tienes que hacer que el ratón no pueda llegar a esos lados, porque al cambiar el tamaño el ClipCursor se desactiva y ya el ratón se sale ...
by Lepes
22 Dec 2021, 14:57
Forum: Ask for Help (v1)
Topic: Can I simplify this script which cuts/pastes a string of words 35 times?
Replies: 12
Views: 1026

Re: Can I simplify this script which cuts/pastes a string of words 35 times?

May be You can send Ctrl + Left to jump to the previous word, 2 times or whatever you need
by Lepes
17 Dec 2021, 16:14
Forum: Scripts and Functions (v1)
Topic: AutoHotInterception (AHI): Multi-Keyboard / Multi-Mouse support for AHK. Per-device blocking!
Replies: 345
Views: 206782

Re: AutoHotInterception (AHI): Multi-Keyboard / Multi-Mouse support for AHK. Per-device blocking!

@sinakko if PowerShell gives you an error about "script are disabled in this machine" do this:
- Open PowerShell as admin
- type this: Set-ExecutionPolicy Unrestricted
- navigate to Unblocker and run, the error is gone.
by Lepes
16 Dec 2021, 22:21
Forum: Pedir Ayuda
Topic: Tooltip adherido al mouse al pausar y des-pausar. Topic is solved
Replies: 2
Views: 951

Re: Tooltip adherido al mouse al pausar y des-pausar. Topic is solved

creo esto funciona como quieres. Prueba y me cuentas. He puesto comentarios para que se entienda, no sé si lo he conseguido jejeje. #SingleInstance force #ErrorStdOut #NoEnv #Warn #Persistent SendMode Input SetWorkingDir %A_ScriptDir% ; se necesitan timers (cronometros) para que el tooltip vaya pega...

Go to advanced search