Search found 141 matches

by Lepes
14 Nov 2022, 04:41
Forum: Pedir Ayuda
Topic: Operaciones con Archivos Topic is solved
Replies: 11
Views: 1692

Re: Operaciones con Archivos Topic is solved

En la ayuda de LoopFile tienes varios ejemplos: FileList := "" ; Initialize to be blank. Loop, C:\*.* FileList .= A_LoopFileName "`n" ; TRUCO: le añade un salto de linea a cada fichero encontrado, para después poder usar "Loop, parse" y cortar por los saltos de línea añadidos. Sort, FileList, R ; Th...
by Lepes
06 Nov 2022, 12:52
Forum: Automatización de Juegos
Topic: Necesito ayuda para cerrar un emulador
Replies: 3
Views: 4475

Re: Necesito ayuda para cerrar un emulador

Otra cosa más:

Si con Alt + Intro pasas a pantalla completa, si pulsas esas mismas teclas tú, pasas a modo ventana y ya cierras con la X de toda ventana.
by Lepes
03 Nov 2022, 13:38
Forum: Ask for Help (v1)
Topic: How to get cursor position?
Replies: 8
Views: 983

Re: How to get cursor position?

guest3456 wrote:
03 Nov 2022, 11:56
skyth540 wrote:
03 Nov 2022, 10:24
Do you know how to find the 0x???? code?
google:

"em_getsel hex value"
"em_getsel constant definition"
google for: "Constantine - Windows API Constants Explorer"
by Lepes
03 Nov 2022, 10:45
Forum: Ask for Help (v1)
Topic: Ayuda con este scrip de movimiento de mouse
Replies: 3
Views: 294

Re: Ayuda con este scrip de movimiento de mouse

Yo he sacado en claro esto, si me equivoco, corríjanme por favor. Creo lo que quieres se hace con las dos últimas opciones, teclas t y e ; Source: https://www.autohotkey.com/boards/viewtopic.php?f=76&t=110069 CoordMode, Mouse, Screen r:: MouseClickDrag, L, 100, 200, 400, 400, 100 ; el 100 es lento, ...
by Lepes
03 Nov 2022, 03:16
Forum: Ask for Help (v1)
Topic: Script oftens fails to respond to key press
Replies: 4
Views: 815

Re: Script oftens fails to respond to key press

I use this one and it works, you can compare the code if you want: viewtopic.php?t=62611
by Lepes
02 Nov 2022, 08:56
Forum: Pedir Ayuda
Topic: Click sostenido de ratón
Replies: 4
Views: 1392

Re: Click sostenido de ratón

Yo para no complicarme con esas cosas hice lo siguiente: - Shift + Lbutton : inicia la tarea (pone a true una variable global y se repite el bucle mientras esa variable es true) - Ctrl + Lbutton : cancela la tarea (pone a false esa variable global) Lo mismo tengo hecho con el botón derecho del ratón...
by Lepes
31 Oct 2022, 17:15
Forum: General
Topic: ¿Qué utilidades usais para el foro y AHK? Empiezo yo.
Replies: 9
Views: 3365

Re: ¿Qué utilidades usais para el foro y AHK? Empiezo yo.

Una opción muy a tener en cuenta, no la conocía, Asias!
by Lepes
31 Oct 2022, 12:20
Forum: General
Topic: ¿Qué utilidades usais para el foro y AHK? Empiezo yo.
Replies: 9
Views: 3365

Re: ¿Qué utilidades usais para el foro y AHK? Empiezo yo.

No importa que etiquetas BBcode uses. Simplemente si usas uno dentro, en el exterior tienes que poner el opuesto para que el software del foro no haga cosas raras. No es un problema normal, da la casualidad que estas intentando hacer algo poco común. Lo sé, lo entiendo, pero no veas la que he forma...
by Lepes
31 Oct 2022, 12:04
Forum: Forum Issues
Topic: is there a noparse tag for the forum? Topic is solved
Replies: 8
Views: 2005

Re: is there a noparse tag for the forum? Topic is solved

Thank you @sofista , I will take a look!
by Lepes
31 Oct 2022, 10:14
Forum: Forum Issues
Topic: is there a noparse tag for the forum? Topic is solved
Replies: 8
Views: 2005

Re: is there a noparse tag for the forum? Topic is solved

I am not the one to answer that question, I really don't know, I don't even know if that pluging support something as "autodetect language". Anyways I got the point, Thanks. It seems I am a bit rough, It is not my intention, I can not express on English as best I would like, I'm sorry for that. The ...
by Lepes
31 Oct 2022, 07:13
Forum: Forum Issues
Topic: is there a noparse tag for the forum? Topic is solved
Replies: 8
Views: 2005

Re: is there a noparse tag for the forum? Topic is solved

Since we are in an AutoHotkey forum, I think the default option should be "AutoHotkey code". Please don't take me wrong, it is just a noob opinion (mine opinion). I understand it is a rare study case, and maybe it doesn't need time and effort to fix it. I used other forum and it exists a noparse tag...
by Lepes
31 Oct 2022, 06:52
Forum: General
Topic: ¿Qué utilidades usais para el foro y AHK? Empiezo yo.
Replies: 9
Views: 3365

¿Qué utilidades usais para el foro y AHK? Empiezo yo.

Me gustaría consultar y a la misma vez compartir qué utilidades usamos a diario con el foro. Yo soy relativamente nuevo y seguro que los más antiguos usan mejores métodos que yo, la experiencia es un grado. Por ejemplo: - suelo testear mucho código del foro inglés, para ello suelo dar a "Select All"...
by Lepes
31 Oct 2022, 06:27
Forum: Forum Issues
Topic: is there a noparse tag for the forum? Topic is solved
Replies: 8
Views: 2005

Re: is there a noparse tag for the forum? Topic is solved

OMG, Thank you very much. It should be the default option on de code toolbar button. testing.... and It's perfect now: ::tagcode:: ; escribo tagcode se anaden las etiquetas del foro y el código que tenga en el portapapeles Send, {text} [code] SendInput, ^v Send, {text}[/code] return ::tagkbd:: ; esc...
by Lepes
30 Oct 2022, 08:00
Forum: Forum Issues
Topic: is there a noparse tag for the forum? Topic is solved
Replies: 8
Views: 2005

is there a noparse tag for the forum? Topic is solved

I was trying to paste a AHK hotstrings code that include some tags as text like [code] and [/code] , it fails , of course. If I disable BBCode in the post forum options, it only show plain text, I'm sure someone will recomend to use tag on that thread and... to be honest, it looks horrible. I did a ...
by Lepes
28 Oct 2022, 05:33
Forum: Ask for Help (v1)
Topic: Display large texts in a GUI? Topic is solved
Replies: 11
Views: 814

Re: Display large texts in a GUI? Topic is solved

You said it is not what you are looking at, but... give it a try maybe something like this? #NoEnv #MaxHotkeysPerInterval 99000000 #HotkeyInterval 99000000 #KeyHistory 0 ListLines Off Process, Priority, , A SetBatchLines, -1 SetKeyDelay, -1, -1 SetMouseDelay, -1 SetDefaultMouseSpeed, 0 SetWinDelay, ...
by Lepes
28 Oct 2022, 04:05
Forum: Ask for Help (v1)
Topic: Return values from function without using global Topic is solved
Replies: 7
Views: 715

Re: Return values from function without using global Topic is solved

To me, the best programming practice is using "byRef", because you know the function needs two parameters that are modified inside the function, and when you are calling the function you even know those parameters names. If a function returns an array or associated array, the name of the function sh...
by Lepes
26 Oct 2022, 06:20
Forum: Ask for Help (v1)
Topic: Renaming Files w/ Loop Files
Replies: 6
Views: 680

Re: Renaming Files w/ Loop Files

If you don’t want to change how they are to be named, a way around this is to use two loops. One loop gets all the file names and stores them in an array, then the next loop renames those files. That way the file list doesn’t change as they’re being looped through. That makes sense. It seems my cod...
by Lepes
26 Oct 2022, 05:15
Forum: Ask for Help (v1)
Topic: Renaming Files w/ Loop Files
Replies: 6
Views: 680

Re: Renaming Files w/ Loop Files

interesting "bug", solved formatting the "A_index" padding with zero

Code: Select all

		
Edited: I was wrong
by Lepes
25 Oct 2022, 03:58
Forum: Ask for Help (v1)
Topic: contex menu
Replies: 3
Views: 276

Re: contex menu

Maybe?:

Code: Select all

f2::
  Send, {AppsKey}
  sleep 200
  Send, {Down 6}{Right}{Down 2}    ;  test before adding:    {Enter}
  return
by Lepes
22 Oct 2022, 11:02
Forum: Ask for Help (v1)
Topic: Can AHK run CMD silent? Topic is solved
Replies: 10
Views: 1279

Re: Can AHK run CMD silent? Topic is solved

I hate FileSelectFolder. The folder I want to open is just too far away. How many folders Do you use frecuently? I gues 20, 30; it doesn't count those folders that are one level of distance from another one. I use FreeCommander with 5 preconfigured design (a design can contain multiples file folder ...

Go to advanced search