Search found 4 matches

by droyo
19 Apr 2024, 14:24
Forum: Ajuda e Suporte Geral
Topic: GUI onde os botões abrem submenus para textos personalizados Topic is solved
Replies: 6
Views: 2528

Re: GUI onde os botões abrem submenus para textos personalizados Topic is solved

Não manjo muito da v1, mas na v2 eu faria assim (mantendo seu hotkey para ativação): #Requires AutoHotkey v2.0 #SingleInstance Force +WheelDown::ShowGui(Buttons) Buttons := Map( "E-mail padrão", Map( "Cotação", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. In placerat suscipit lacus non ...
by droyo
27 Mar 2024, 08:21
Forum: Scripts and Functions (v2)
Topic: Store passwords in scripts securely through Windows Credential Manager API
Replies: 9
Views: 1793

Re: Store passwords in scripts securely through Windows Credential Manager API

Some time ago I tried turning this code into a class to make it easier to manage my stored credentials. I have been using this class ever since. I recently made a GUI for this class. It is possible to create new credentials and change the stored ones (those created by the class, since I use a prefix...
by droyo
02 Oct 2023, 22:50
Forum: Ask for Help (v2)
Topic: [WinHook2] How to convert it from V1 to V2.
Replies: 2
Views: 462

Re: [WinHook2] How to convert it from V1 to V2.

I also tried converting the WinHook class to v2. It's seems to be working. If anyone wants to review or improve it, please, that would be great. I don`t know if this will work for everyone. Here It`s working, at least for the most part. In line 267 of winhook class, eventProc := Func(eventProc) For ...
by droyo
16 Sep 2023, 13:11
Forum: Ask for Help (v2)
Topic: Windows 11: How to open the tray overflow (click on arrow icon)
Replies: 1
Views: 294

Re: Windows 11: How to open the tray overflow (click on arrow icon)

You can try send Win Key+B and then send Enter Key.
Here works well...

Code: Select all

Send "#b"
Sleep 50
Send "{Enter}"

Go to advanced search