Search found 143 matches

by need4speed
21 Jun 2021, 15:02
Forum: Scripts and Functions (v1)
Topic: MicroCalculator
Replies: 3
Views: 1079

Re: MicroCalculator

I guess you could create a variable at the beginning holding "Calculator v1.3", using the variable could help you when updating the script. If you don't mind add a screenshot of the GUI, I can't run the script atm on my android phone. :D
by need4speed
08 Jun 2021, 15:24
Forum: Ask for Help (v1)
Topic: Cursor not visible when video recording ahk movements
Replies: 5
Views: 509

Re: Cursor not visible when video recording ahk movements

Hey Brad,

afaik most screen recording software like OBS use the ffmpeg library which has certain limitations.
Post some code to show how you use the OMove function, maybe someone can reproduce the issue or provide a work-around.
by need4speed
28 May 2021, 10:37
Forum: Ask for Help (v1)
Topic: Each CheckBox code works but not when both are ticked, why? Topic is solved
Replies: 2
Views: 307

Re: Each CheckBox code works but not when both are ticked, why? Topic is solved

thanks rommmcek, it works now!

I swear I tried

Code: Select all

gosub
before, maybe I had some other scripts interfering.
by need4speed
28 May 2021, 09:46
Forum: Ask for Help (v1)
Topic: Each CheckBox code works but not when both are ticked, why? Topic is solved
Replies: 2
Views: 307

Each CheckBox code works but not when both are ticked, why? Topic is solved

I copy & pasted this code somewhere, when both checkboxes are selected only the first works. why? How to improve it? Cheers ; #SingleInstance, Force Gui, Destroy Gui, Add, GroupBox, % " x" 010 " y" 15 " w" 258 " h" 128, % "Select Options" Gui, Add, Checkbox, x023 y40 vCheck1, Taskbar [On/Off] Gui, A...
by need4speed
01 Mar 2021, 17:51
Forum: Ask for Help (v1)
Topic: how to pass a variable to batch
Replies: 5
Views: 1055

Re: how to pass a variable to batch

thanks for taking the time to answer, your solution did not work (or maybe I don't understand...) the work-around by creating the batch file via FileAppend then run it, works for me. thanks anyway. vComputer := "Samantha" FileAppend, ( @echo off TITLE Computer used by cls mode 400,35 color 5 query u...
by need4speed
01 Mar 2021, 10:56
Forum: Ask for Help (v1)
Topic: how to pass a variable to batch
Replies: 5
Views: 1055

how to pass a variable to batch

I have a batch file, where I check if a computer is used, now I want to pass a variable vComputer in AHK when I run the batch file. Run, %comspec% /k test1.cmd, %A_WorkingDir% the batch file is: @echo off TITLE Computer used by cls mode 400,35 color 5 query user /server:vComputer | findstr "Active" ...
by need4speed
14 Feb 2021, 20:24
Forum: Scripts and Functions (v1)
Topic: Vis2 - Image to Text OCR()
Replies: 329
Views: 158016

Re: Vis2 - Image to Text OCR()

Wow, I was looking for a replacement for Capture2Text and I found this pearl. thanks
I noticed a minor issue where the OCR works on my second monitor, but the selection rectangle is not shown.
by need4speed
09 Feb 2021, 11:19
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 568067

Re: FindText - Capture screen image into text and then find it Topic is solved

i don't run into the critical error, running the code on a different computer. I don't understand what's wrong with my loop definition, why this would lead to a critical issue.
by need4speed
06 Feb 2021, 21:43
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 568067

Re: FindText - Capture screen image into text and then find it Topic is solved

I use more or less this simple code (only censored the text) #Include FindText.ahk #SingleInstance, Force Loop { Sleep 1000 Text.="|<OK>*93$44.zzzzzzzzzzzzzzCensoredzzzzzzzzzzzzzzs" if (ok:=FindText(952, 660, 1070, 696, 0, 0, Text)) { CoordMode, Mouse X:=ok.1.x, Y:=ok.1.y, Comment:=ok.1.id Click, %X...
by need4speed
27 Jan 2021, 07:17
Forum: Suggestions on Documentation Improvements
Topic: Windows messages hexidecimal code lenght Topic is solved
Replies: 2
Views: 908

Windows messages hexidecimal code lenght Topic is solved

I believe in List of Windows Messages Help Section, hexidecimal code should be 4 digits rather than 2-4. for instance WM_SETTEXT := 0x0C should rather be WM_SETTEXT := 0x000C the reason is consistency with Microsoft, see https://docs.microsoft.com/en-us/windows/win32/winmsg/wm-settext To quote Skan ...
by need4speed
25 Jan 2021, 20:20
Forum: Ask for Help (v1)
Topic: automate software installation
Replies: 0
Views: 253

automate software installation

meant as a public reply to @SOTE remarks regarding PDQ's AHK video here ... I like to automate a (silent) software installation, nothing fancy, selecting stuff and pressing buttons using a standard graphical deployment software like NSIS. I want to make it robust; successful actions as well as error...
by need4speed
26 Oct 2020, 19:28
Forum: Tooltime
Topic: RIAA blockiert youtube-dl.exe
Replies: 4
Views: 4602

Re: RIAA blockiert youtube-dl.exe

Download-Tools gibt es wie Sand am Meer. Bin gespannt ob dagegen ebenfalls vorgegangen wird. Eines der bekannteren ist NewPipe, läuft auf Android.
by need4speed
26 Oct 2020, 18:30
Forum: Ask for Help (v1)
Topic: Map ALT+Backspace as Delete Topic is solved
Replies: 6
Views: 1272

Re: Map ALT+Backspace as Delete Topic is solved

I noticed in:

Code: Select all

!BS::Send, {Del}
BS links to ABS, while in

Code: Select all

!Backspace::Send, {Del}
Backspace opens up dr. google and pressing Del leads to FileDelete

is this known?
by need4speed
24 Oct 2020, 05:15
Forum: Ask for Help (v1)
Topic: How to toggle W10 Mouse Pointer size and style (control panel)
Replies: 7
Views: 1434

Re: How to toggle W10 Mouse Pointer size and style (control panel)

Thank you SKAN, you're the man! impressive like always. I gave it a quick shot and it seems to work as expected. While your script is very useful, I was referring to the new win10 pointer. The color can be changed and the pointer can be scaled very big without aliasing. https://i.postimg.cc/8GKPbkk5...
by need4speed
21 Oct 2020, 09:52
Forum: Ask for Help (v1)
Topic: How to toggle W10 Mouse Pointer size and style (control panel)
Replies: 7
Views: 1434

Re: How to toggle W10 Mouse Pointer size and style (control panel)

thanks, I knew about the link. Unfortunatelly this is not what I want to achieve. when I have time I try to figure out where this "new" mouse icons reside and how to manipulate em. not sure where MS is heading to, windows store, apps, tablett mode, x-box tools, cortana and a lot of more stuff I don'...
by need4speed
20 Oct 2020, 20:28
Forum: Ask for Help (v1)
Topic: How to toggle W10 Mouse Pointer size and style (control panel)
Replies: 7
Views: 1434

How to toggle W10 Mouse Pointer size and style (control panel)

I added custom mouse cursors and saved a scheme in the Mouse Properties Windows, I use this code to toggle schemes, here e.g. I set the default scheme. ^F11:: ; Select Windows Default Theme Run %A_WinDir%\system32\control.exe main.cpl`,`,1 ControlGet, cList, List, , ComboBox1, Mouse Properties Loop,...
by need4speed
28 Aug 2020, 20:25
Forum: Scripts and Functions (v1)
Topic: ScriptGuard: Helps Protect Compiled Scripts from Decompilation
Replies: 54
Views: 18999

Re: ScriptGuard: Helps Protect Compiled Scripts from Decompilation

In addition, if the compiled executable is compressed with MPRESS or UPX before distribution, the script embedded in the executable will not be visible before execution. Therefore there will be only a small time-window in which the included script is visible; after the executable has been de-compre...
by need4speed
28 Aug 2020, 17:29
Forum: Scripts and Functions (v1)
Topic: MoveWindowUnderMouseCursor() with a hotkey
Replies: 10
Views: 2536

Re: MoveWindowUnderMouseCursor() with a hotkey

for me the implementation of the move command in Windows is a complete failure (bug). In Linux after selecting move, a window can be moved. for years, already in Win3 (i guess) - Win10, invoking the move command changes only the mouse icon, the window does not follow the mouse movement. https://i.po...
by need4speed
03 Aug 2020, 07:35
Forum: Suggestions on Documentation Improvements
Topic: Save file as UTF-8
Replies: 5
Views: 5151

Re: Save file as UTF-8

"AutoHotkey does not exclusively run on the latest Windows 10 builds" is true, but as Win7 development ceased and support has been discontinued, Win10 will be sooner or later the dominant desktop OS. I think the statement in v2 Help Be sure to save the file as UTF-8 with BOM if it will contain non-...

Go to advanced search