Search found 9 matches

by hced
23 Sep 2023, 09:06
Forum: Ask for Help (v1)
Topic: Windows version
Replies: 8
Views: 1427

Re: Windows version

Does anyone know a method to output this information (per winver) ?
Snipaste_20230923160256.png
Snipaste_20230923160256.png (52.26 KiB) Viewed 569 times

[Mod edit: Removed duplicate image (original had link to online image as well as attached image).]
by hced
14 Sep 2023, 14:35
Forum: Ask for Help (v1)
Topic: Run command to trigger screensaver?
Replies: 6
Views: 812

Re: Run command to trigger screensaver?

Another method: SendMessage, 0x112, 0xF140, 0,, Program Manager ; 0x112 is WM_SYSCOMMAND -- 0xF140 is SC_SCREENSAVE I couldn't get this to work with V2: #Requires AutoHotkey v2.0 #SingleInstance #NoTrayIcon ; https://www.autohotkey.com/boards/viewtopic.php?p=518847&sid=a4146d6d8b33dcc3c0414d5ca98aa...
by hced
24 Aug 2023, 09:31
Forum: Ask for Help (v2)
Topic: Play a single random sound from this folder Topic is solved
Replies: 4
Views: 282

Re: Play a single random sound from this folder Topic is solved

Thank you SKAN, that did the trick! :wave: Note. For anyone wanting the exact functionality per my first post, I added A_ScriptDir (to search the current folder of the script) and #NoTrayIcon to get rid of the systray icon popup. ; Play a single random sound from this folder #Requires AutoHotkey v2...
by hced
24 Aug 2023, 06:55
Forum: Ask for Help (v2)
Topic: Play a single random sound from this folder Topic is solved
Replies: 4
Views: 282

Re: Play a single random sound from this folder Topic is solved

@gregster That worked as far as playback goes, thank you. Now, I'm not particularly great at coding and just realize I've made it to play ALL files in a LOOP. I wish to just play ONE single file once. How should I adjust this script accordingly?
by hced
24 Aug 2023, 06:32
Forum: Ask for Help (v2)
Topic: Play a single random sound from this folder Topic is solved
Replies: 4
Views: 282

Play a single random sound from this folder Topic is solved

Hi, I'm trying to cobble together a script that should reside in folders containing sound files. https://i.ibb.co/R0PQcZT/20230824132257.png Here's what I got so far: ; Play a single random sound from this folder path := A_ScriptDir Loop Files, path "\*.wav" lst .= A_LoopFilePath "`n" lst := Sort(ls...
by hced
27 Sep 2020, 19:11
Forum: Old Topics
Topic: AutoGUI - Script Editor, GUI Designer, Debugger and Tools
Replies: 423
Views: 421377

Re: AutoGUI - Script Editor, GUI Designer, Debugger and Tools

Alguimist How do you get font size to stick? When I set size to 10 in AutoGUI.ini, it resets back to some higher size when opening files. Secondary question, how do I debug files. When choosing Start Debugging, it asks for an exe file? Third question, or suggestion: When debugging in SciTE, I have ...
by hced
04 Sep 2020, 07:56
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 171236

Re: Radial menu scripts

gregster wrote:
04 Sep 2020, 06:47
hced wrote:
04 Sep 2020, 06:02
Why does it tell me there's a newer AHK version when I already have the newest version installed?
Sure? What does Msgbox % A_AhkVersion say?
1.1.33.02, the newest
by hced
04 Sep 2020, 06:02
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 171236

Re: Radial menu scripts

Why does it tell me there's a newer AHK version when I already have the newest version installed?

Image Broken Link for safety

EDIT: Seems image links gets broken here so here's the image url: https i.imgur.com /Qus3EQm.png Broken Link for safety Broken Link for safety
by hced
22 Aug 2020, 18:13
Forum: Ask for Help (v1)
Topic: Why does hotkey with Reload command break code execution?
Replies: 1
Views: 582

Why does hotkey with Reload command break code execution?

Why does this display the MsgBox : ; ------------------------- ; _INIT.ahk - Master script ; ------------------------- #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory #Include %A_ScriptDir% ;...

Go to advanced search