Search found 183 matches

by ositoMalvado
18 Apr 2024, 06:30
Forum: Scripts and Functions (v1)
Topic: NeutronC - Run GUIs in Chrome!
Replies: 10
Views: 3948

Re: NeutronC - Run GUIs in Chrome!

Can some one help me?
image.png
(40.51 KiB) Downloaded 88 times

Solved!!! Changed every 9222 port to 8080, because my main chrome has already used that port.
by ositoMalvado
04 Apr 2024, 06:41
Forum: Ask for Help (v2)
Topic: AHK and Node JS, communication possible?
Replies: 0
Views: 64

AHK and Node JS, communication possible?

I want to run my index.js file and have it open an .ahk file. With different hotkeys in the .ahk file, I should be able to call my running Node.js script (while it's running). For example, if I press the 'H' key, it should console.log("Pressed h from ahk, showing on JavaScript"). I need your help wi...
by ositoMalvado
29 Mar 2024, 06:27
Forum: Pedir Ayuda
Topic: script para autorrellenar campos en un formulario Topic is solved
Replies: 1
Views: 67

Re: script para autorrellenar campos en un formulario Topic is solved

Code: Select all

usuario := "admin"
clave := "abcd1234"

#g::{
    Send usuario . "{Tab}" . clave . "{Enter}"
}
by ositoMalvado
26 Mar 2024, 12:00
Forum: Ask for Help (v1)
Topic: Script Request
Replies: 1
Views: 91

Re: Script Request

You should paste some screenshots or a simple video with your steps
by ositoMalvado
26 Mar 2024, 08:45
Forum: Ask for Help (v2)
Topic: ChatGPT AutoHotkey Utility
Replies: 2
Views: 181

Re: ChatGPT AutoHotkey Utility

I have not an API KEY to test, but i think it will work #Requires AutoHotkey v2.0.2 #SingleInstance #Include "_jxon.ahk" Persistent /* ==================================================== Script Tray Menu ==================================================== */ ; TraySetIcon("Icon.ico") A_TrayMenu.De...
by ositoMalvado
26 Mar 2024, 08:29
Forum: Ajuda e Suporte Geral
Topic: Ajuda com algo simples pf
Replies: 2
Views: 281

Re: Ajuda com algo simples pf

#Requires AutoHotkey v2.0 toSend := "{LButton}" ; LButton = Left mouse button ; Existem algumas maneiras de enviar chaves. Experimente de F1 a F4. ; Se alguma chave funcionar, exclua as outras. Finalmente substitua seu "*F#" por "*P" *F1::Send(toSend) *F2::SendEvent(toSend) *F3::SendInput(toSend) *...
by ositoMalvado
26 Mar 2024, 08:18
Forum: Gaming Help (v1)
Topic: I'm new and need help: fighting game
Replies: 1
Views: 122

Re: I'm new and need help: fighting game

Maybe naming the game, or some screenshot help us to help you
by ositoMalvado
25 Mar 2024, 12:57
Forum: Ask for Help (v1)
Topic: Extracting a specified line from a textfile
Replies: 5
Views: 133

Re: Extracting a specified line from a textfile

Maybe it can be better, but it works xd example1 := "red`ngreen`nblue" MsgBox, % getLine(example1, 2) example2 := "red`r`ngreen`r`nblue" MsgBox, % getLine(example2, 3) getLine(text, line:=1, delim:="`n"){ Loop, parse, % text, % delim { If (A_Index == line) Return A_LoopField } Return "Can't find, ch...
by ositoMalvado
25 Mar 2024, 10:14
Forum: Gaming
Topic: Pokedex with Neutron and Requests (from AHK)
Replies: 3
Views: 275

Re: Pokedex with Neutron and Requests (from AHK)

boiler wrote:
24 Mar 2024, 20:42
@ositoMalvado — I apologize. In moving the thread to the Gaming section, one of your files was dropped. Could you please attach it again? Sorry for the inconvenience.
Don't worry! :mrgreen:

You gave me an excuse to improve it a little
by ositoMalvado
24 Mar 2024, 19:33
Forum: Pedir Ayuda
Topic: Function LCtrl=Home & Home=LCtr Topic is solved
Replies: 1
Views: 208

Re: solved Topic is solved

Hola! Aquí te presento dos soluciones posibles, una lenta (F1) y otra rápida (F2) ; Cada cuánto enviar en al presionar "F2" las teclas "A" y "D" ; Colocar 0 puede producir lag global esperar := 1 ; Optimizar el script para la máxima velocidad, si no quieres optimzar pon ";" antes de optimizar() opti...
by ositoMalvado
24 Mar 2024, 19:18
Forum: Pedir Ayuda
Topic: Gui Oculta Topic is solved
Replies: 2
Views: 144

Re: Gui Oculta Topic is solved

Deberías explicar un poco mejor lo que quieres lograr!
by ositoMalvado
24 Mar 2024, 18:39
Forum: Ask for Help (v2)
Topic: Help with ComObject("Msxml2.XMLHTTP") Topic is solved
Replies: 5
Views: 153

Re: Help with ComObject("Msxml2.XMLHTTP") Topic is solved

@teadrinker
it returns Error 404, can you make it work ? Can't understand what's going on
by ositoMalvado
24 Mar 2024, 18:35
Forum: Gaming
Topic: Pokedex with Neutron and Requests (from AHK)
Replies: 3
Views: 275

Pokedex with Neutron and Requests (from AHK)

An AHK-built Pokédex app. Features direct requests for Pokémon info, sprites, and GIFs. Feedback welcome! Video example: https://i.imgur.com/lt17cCd.gif Main code (uploaded full code and exe in attachments): #Requires AutoHotkey v2.0 #Include Neutron.ahk #Include skeletor_requests.ahk html := " ( ;...
by ositoMalvado
24 Mar 2024, 17:43
Forum: Ask for Help (v2)
Topic: Help with ComObject("Msxml2.XMLHTTP") Topic is solved
Replies: 5
Views: 153

Re: Help with ComObject("Msxml2.XMLHTTP") Topic is solved

#Requires AutoHotkey v2.0 Persistent requests().get("https://pokeapi.co/api/v2/pokemon/1") class requests { __New() { this.req := ComObject("Msxml2.XMLHTTP") } get(url) { this.req.onreadystatechange := ObjBindMethod(this, 'ready') this.req.open("GET", url, true) this.req.send() } ready() { if this....
by ositoMalvado
24 Mar 2024, 15:47
Forum: Ask for Help (v2)
Topic: Help with ComObject("Msxml2.XMLHTTP") Topic is solved
Replies: 5
Views: 153

Help with ComObject("Msxml2.XMLHTTP") Topic is solved

Hi guys! Why the function "myfunc" or "this.ready" is not called by "this.req.onreadystatechange := myfunc" when the response is done? If "ready" is outside of the class then will work! Any solution for my issue? #Requires AutoHotkey v2.0 CoordMode "Mouse", "Screen" class requests { __New() { this.r...
by ositoMalvado
17 Oct 2023, 12:02
Forum: Pedir Ayuda
Topic: Presionar tecla cada cierto tiempo.
Replies: 1
Views: 698

Re: Presionar tecla cada cierto tiempo.

F12:: toggle := !toggle ;encender / apagar if toggle ;si esta apagado SetTimer, presionar1, % 1000 * 120 ;encender timer. (120 segundos pasados a milisegundos) else ;sino SetTimer, presionar1, Off ;apagar timer return ;label de nuestro timer presionar1: Send, 1 ;enviamos 1 return ;chau
by ositoMalvado
25 Sep 2023, 10:51
Forum: Pedir Ayuda
Topic: Ventana Acerca De con Imagen Topic is solved
Replies: 2
Views: 977

Re: Ventana Acerca De con Imagen Topic is solved

#SingleInstance Force UrlDownloadToFile, https://i.imgur.com/ifjvRYG.png, % A_ScriptDir "/miImagen.png" ;descargamos una imagen Gui acercaDeMi: New ;creamos un GUI Gui acercaDeMi: Add, Picture,, % A_ScriptDir "/miImagen.png" ;agregamos la imagen al GUI Gui acercaDeMi: Add, Text,,Bienvenido a mi scr...
by ositoMalvado
12 Sep 2023, 08:45
Forum: Pedir Ayuda
Topic: Abrir el archivo seleccionado en el explorador de windows en una ventana existente en un monitor determinado
Replies: 3
Views: 784

Re: Abrir el archivo seleccionado en el explorador de windows en una ventana existente en un monitor determinado

pishagwann Hice este código para que puedas utilizarlo tú, asegurate de entenderlo bien! Cuando uses para tu AutoCad revisa que las acciones no harána lo que deseas, lo hice en base a notepad para corroborar su función, y sí, es funcional. Saludos, espero que te sirva ; ; ; ESTE CÓDIGO PERMITE GUAR...
by ositoMalvado
07 Sep 2023, 13:35
Forum: Ask for Help (v1)
Topic: Mute and Hide Current Active Window
Replies: 1
Views: 234

Re: Mute and Hide Current Active Window

I found this. i haven't tried yet

Image

Librarry

Example

Go to advanced search