Search found 19 matches

by rx65m
27 May 2023, 11:53
Forum: Scripts and Functions (v1)
Topic: [ Class + ( Editor Tool ) ] Custom Gui Image Button
Replies: 44
Views: 12902

Re: [ Class + ( Editor Tool ) ] Custom Gui Image Button

I wonder how can we do to make the buttons created by this amazing piece of software to remain pressed until we click on them again.
Probably it is there, but I haven't found nothing so far.
by rx65m
13 Mar 2023, 13:12
Forum: Ask for Help (v1)
Topic: How to tile a background image for an AutoHotkey GUI Version 1.1.36.02 ?
Replies: 3
Views: 310

How to tile a background image for an AutoHotkey GUI Version 1.1.36.02 ?

I have tried several ways to tile my background image for my AutoHotkey GUI Version 1.1.36.02 , but always getting error messages. This is my code: Gui, -Caption +LastFound +AlwaysOnTop Gui, +Border Gui, Margin, 0, 0 Gui, Color, white Gui, Add, Picture, x0 y0 w1 h52, 1x52.png Gui, Show, x100 y600 w2...
by rx65m
29 Jan 2023, 10:04
Forum: Ask for Help (v1)
Topic: My GUI takes focus every second, not allowing me to work at all. Topic is solved
Replies: 2
Views: 201

Re: My GUI takes focus every second, not allowing me to work at all. Topic is solved

Amazing!
That was extremely simple!
Thanks a lot mikeyww ! That works charmingly!
by rx65m
29 Jan 2023, 08:29
Forum: Ask for Help (v1)
Topic: My GUI takes focus every second, not allowing me to work at all. Topic is solved
Replies: 2
Views: 201

My GUI takes focus every second, not allowing me to work at all. Topic is solved

I've created this script to notify me every 20 minutes while I'm working on my computer. It has a GUI that displays the remaining time until the next notification. However, I've encountered an issue where the GUI takes focus every time it updates the remaining time, making it impossible for me to wo...
by rx65m
23 Dec 2022, 02:13
Forum: Ask for Help (v1)
Topic: How to have each text-line of each list in its own line, instead of having all of them together in the same single line. Topic is solved
Replies: 2
Views: 264

How to have each text-line of each list in its own line, instead of having all of them together in the same single line. Topic is solved

I have this code to randomly choose one line of text from each of the three lists of text-lines within the same file, and copy them together to the clipboard. It works perfectly fine, but it is not practical to add new lines of long text to the code. So I wonder if it is possible editing it to have ...
by rx65m
22 Dec 2022, 14:24
Forum: Ask for Help (v1)
Topic: Randomly choose 1 text-line from each of 3 lists of text-lines but instead it brings 3 blank text-lines. Topic is solved
Replies: 4
Views: 329

Re: Randomly choose 1 text-line from each of 3 lists of text-lines but instead it brings 3 blank text-lines. Topic is solved

You need to make arrays first. Use StrSplit() to do so. Random, rand1, 1, 4 Random, rand2, 1, 4 Random, rand3, 1, 4 ; Definining 3 lists of text lines: list1 = 1st text line, 2nd text line, 3rd text line, 4th text line list2 = 5th text line, 6th text line, 7th text line, 8th text line list3 = 9th t...
by rx65m
22 Dec 2022, 14:09
Forum: Ask for Help (v1)
Topic: Randomly choose 1 text-line from each of 3 lists of text-lines but instead it brings 3 blank text-lines. Topic is solved
Replies: 4
Views: 329

Randomly choose 1 text-line from each of 3 lists of text-lines but instead it brings 3 blank text-lines. Topic is solved

I have this code to randomly choose one line of text from each of the three lists of text lines within the same file, and copy them together to the clipboard. It works but not properly because it brings three blank lines instead of three actual text lines . It seems to me that the issue may be in th...
by rx65m
01 Aug 2022, 13:25
Forum: Scripts and Functions (v1)
Topic: 2021.10.03 BeautifulToolTip - A highly compatible, high-performance, easy to use, multi-style, customizable ToolTip
Replies: 42
Views: 15482

Re: 2021.10.03 BeautifulToolTip - A highly compatible, high-performance, easy to use, multi-style, customizable ToolTip

Hello. I'm trying to make this code to work with BTT but no matter how hard I try it, I just can't get it. I hope someone can help me with this: LClick= RClick= ~LButton:: LClick ++ ToolTip, LClick %LClick%`nRClick %Rclick% Return ~RButton:: RClick ++ ToolTip, LClick %LClick%`nRClick %Rclick% Return
by rx65m
29 Jul 2022, 03:44
Forum: Ask for Help (v1)
Topic: Pause with one key, but use a different key to unpause. Topic is solved
Replies: 1
Views: 247

Pause with one key, but use a different key to unpause. Topic is solved

I need to pause my script with the space key, but unpause it with the y key.

I've been searching for a while without any success, not even at the old forum.
I've tried different combinations, but I never get any of them to work properly.

Is there any simple way to do this?
by rx65m
27 Dec 2021, 09:56
Forum: Scripts and Functions (v1)
Topic: 2021.10.03 BeautifulToolTip - A highly compatible, high-performance, easy to use, multi-style, customizable ToolTip
Replies: 42
Views: 15482

Re: 2021.10.03 BeautifulToolTip - A highly compatible, high-performance, easy to use, multi-style, customizable ToolTip

@rx65m try this. Ctrl:: DetectHiddenWindows, On If (A_IsPaused) { WinClose, %A_Temp%\Tooltip.ahk Pause, , 1 FileDelete %A_Temp%\*.ahk FileAppend, ( #NoTrayIcon Loop 30 { Sleep, 100 btt("UN-PAUSED",,,, "Style1") } ExitApp #include btt.ahk ), %A_Temp%\Tooltip.ahk Run %A_Temp%\Tooltip.ahk } else { Win...
by rx65m
26 Dec 2021, 05:33
Forum: Scripts and Functions (v1)
Topic: 2021.10.03 BeautifulToolTip - A highly compatible, high-performance, easy to use, multi-style, customizable ToolTip
Replies: 42
Views: 15482

Re: 2021.10.03 BeautifulToolTip - A highly compatible, high-performance, easy to use, multi-style, customizable ToolTip

ˑ Hello everyone! I have tried several ways, but none works for me. So I think it is time to ask for your kind help. How can I use btt Style1 on this code: Ctrl:: DetectHiddenWindows, On If (A_IsPaused) { WinClose, %A_Temp%\Tooltip.ahk Pause, , 1 FileDelete %A_Temp%\*.ahk FileAppend, ( #NoTrayIcon L...
by rx65m
17 Dec 2021, 01:57
Forum: Pedir Ayuda
Topic: Tooltip adherido al mouse al pausar y des-pausar. Topic is solved
Replies: 2
Views: 935

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

· ¡Hola Lepes! ¡Espectacular! ¡Funciona perfectamente! ¡Y la explicación está clarísima! ¡No se puede pedir más! Muchísimas gracias, mi hermano. ¡Un trabajo sensacional! :clap: Te agradezco infinitamente. Todo marcha de maravilla en las pruebas que he hecho. Si algo encuentro te lo haré saber, pero ...
by rx65m
16 Dec 2021, 09:38
Forum: Pedir Ayuda
Topic: Tooltip adherido al mouse al pausar y des-pausar. Topic is solved
Replies: 2
Views: 935

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

· He escrito este script para automatizar una serie de procesos que hago sobre diferentes documentos. Funciona muy bien, aunque me complica cuando encuentro errores en esos documentos, pues al pausar para corregirlos con mucha frecuencia me olvido si lo dejé pausado o lo reinicié. Por esta razón qui...
by rx65m
10 Apr 2021, 03:32
Forum: Pedir Ayuda
Topic: Imagen que representa botones que funcionen como botones activos. Topic is solved
Replies: 3
Views: 762

Re: Imagen que representa botones que funcionen como botones activos. Topic is solved

Thank you very much garry ! I appreciate a lot your kindness this code is extremely detailed! Unfortunately it is about a regular GUI with actual buttons which is exactly what I don't want to use. My wish is to use the image I posted before, in a way that once I click on each of those apparent butto...
by rx65m
09 Apr 2021, 12:26
Forum: Pedir Ayuda
Topic: Imagen que representa botones que funcionen como botones activos. Topic is solved
Replies: 3
Views: 762

Imagen que representa botones que funcionen como botones activos. Topic is solved

Saludos muy afectuosos. Tengo esta imagen representando una serie de botones que quisiera usar como botones activos. Necesito que al clicar en en estos aparentes botones, se abra un diferente script de AutoHotkey, desde cada "botón". He intentado durante un par de semanas desde diferentes enfoques p...
by rx65m
16 Mar 2018, 18:01
Forum: Pedir Ayuda
Topic: Resize con WinMove no me funciona ¿cuál es mi error? Topic is solved
Replies: 1
Views: 1029

Resize con WinMove no me funciona ¿cuál es mi error? Topic is solved

Saludos afectuosos. Tras un año de usar intensamente el AutoHotKey sin jamás haber fallado nunca, finalmente esta semana por primera vez no conseguí hacer que una expresión sencilla me logre funcionar y no sé cuál sea mi error. Tengo varios días intentando cambiar las dimensiones de una ventana del ...

Go to advanced search