Search found 7 matches
- 20 Jul 2021, 11:30
- Forum: Scripts and Functions (v1)
- Topic: Vis2 - Image to Text OCR()
- Replies: 329
- Views: 173320
Re: Vis2 - Image to Text OCR()
Hi there guys, First of all thanks for this amazing script , it looks so nice . I have tried the demo and its works but unfortunatelly when I'm trying the functions in my script , it is not working. Exception thrown! what: Vis2.stdlib.toFile file: C:\dotfiles-win\ahk-scripts\Lib\Vis2.ahk line: 2566 ...
- 19 Jul 2021, 06:40
- Forum: Ask for Help (v1)
- Topic: Gui , Add, Text , with inline declaration of font-type ?
- Replies: 4
- Views: 514
Re: Gui , Add, Text , with inline declaration of font-type ?
Thank a lot , I ended up doing something like this EmbedTextIcon(CharCode , TextOptions, Font, FontOptions , PreviousFont, PreviousFontOptions){ Gui, Font, % FontOptions, % Font Gui, Add, Text, % TextOptions, % Chr(CharCode) Gui, Font, % PreviousFontOptions, % PreviousFont } So I can Gui, Font, s10 ...
- 17 Jul 2021, 08:27
- Forum: Ask for Help (v1)
- Topic: Gui , Add, Text , with inline declaration of font-type ?
- Replies: 4
- Views: 514
Re: Gui , Add, Text , with inline declaration of font-type ?
Trying to solve my problem I want to create a function that actually deals with this functionality But the function doesn't get rendered as an element of the GUI Gui, Show, % " W"A_ScreenWidth " H"A_ScreenHeight - 50 "X0 Y0" , Gui, Font, s10 cBlack Bold , Consolas Gui, Add, Text, c454545 , El coco l...
- 17 Jul 2021, 07:19
- Forum: Ask for Help (v1)
- Topic: Gui , Add, Text , with inline declaration of font-type ?
- Replies: 4
- Views: 514
Gui , Add, Text , with inline declaration of font-type ?
Hi there, Is there any way to create in-line , font type declaration alongside Gui, Add, Text ? I'm using font-awesome to add some icons so Gui, Font, s9 q5, Font Awesome 5 Free Solid Gui, Add, Text, c454545 vFontIcon, % Chr(0xf358) Then If I wanna Add some more text , but this one real-text (not ic...
- 16 Jul 2021, 14:41
- Forum: Ask for Help (v1)
- Topic: Calling powershell to get an Objects property and retrieve it in ahk Topic is solved
- Replies: 2
- Views: 1268
Re: Calling powershell to get an Objects property and retrieve it in ahk Topic is solved
Amazing thanks very muchXtra wrote: ↑15 Jul 2021, 22:49Take a look here: https://www.autohotkey.com/boards/viewtopic.php?p=341237#p341237
- 15 Jul 2021, 07:35
- Forum: Ask for Help (v1)
- Topic: Calling powershell to get an Objects property and retrieve it in ahk Topic is solved
- Replies: 2
- Views: 1268
Calling powershell to get an Objects property and retrieve it in ahk Topic is solved
Hi there, So I am doing an Installation Script for my system with ahk , and I am in need to adjust some system properties via Powershell I wanted to store in my ahk the Value of a property such as I do in PowerShell the following command (Get-MpPreference).DisableRealtimeMonitoring Which outputs tru...
- 07 Jul 2021, 07:40
- Forum: Ask for Help (v1)
- Topic: Nested hotkeys
- Replies: 1
- Views: 399
Nested hotkeys
Hi there, So I wanted to reassign the keyboard so I did some hotkeys for that such as. q::p w::w (...) Space & q::Send, j Space & w::Send, m (...) Easy code, works great, but , now I want to add a GUI picture such as it shows me the new keyboard mapping I have assigned (which I have it saved in 2 im...