Search found 4 matches

by shendaowu
24 Mar 2024, 04:47
Forum: 请求帮助
Topic: 更改名称为什么用 Run 可以,用 FileMove 就不行?
Replies: 2
Views: 439

Re: 更改名称为什么用 Run 可以,用 FileMove 就不行?

自己大概解决了,大概是换行惹的祸。 #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a ...
by shendaowu
24 Mar 2024, 00:55
Forum: 请求帮助
Topic: 更改名称为什么用 Run 可以,用 FileMove 就不行?
Replies: 2
Views: 439

更改名称为什么用 Run 可以,用 FileMove 就不行?

功能是先将脚本所在路径下面的 files 文件夹里的文件读入到一个文本文件。然后对这个文件文件进行手动排序,然后根据排序的结果进行重命名。 比如文件夹里有 001.a.mp3 002.b.mp3 003.c.mp3。然后修改文本文件中的内容为 002.b.mp3 003.c.mp3 001.a.mp3,然后继续执行会将文件重命名为 001.b.mp3 002.c.mp3 003.a.mp3。 #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enab...
by shendaowu
01 Mar 2023, 06:43
Forum: Ask for Help (v1)
Topic: How to show gui window on taskbar in windows 11?
Replies: 0
Views: 222

How to show gui window on taskbar in windows 11?

This is working in windows 10 but not working in windows 11: WinGetPos, taskbar_x, taskbar_y, taskbar_w, taskbar_h, ahk_class Shell_TrayWnd overlay_height := 36 overlay_width := 36 ;overlay_x := taskbar_w - 172 overlay_x := 1200 overlay_y := 2 Gui, Margin, 0, 0 Gui, -Caption +ToolWindow +LastFound G...
by shendaowu
01 Mar 2023, 06:27
Forum: 请求帮助
Topic: Windows 11 怎么将 gui 窗口显示在任务栏上?
Replies: 0
Views: 844

Windows 11 怎么将 gui 窗口显示在任务栏上?

之前用 Windows 10 的时候用在这个论坛里找到的代码改的代码可以将 gui 窗口显示在任务栏上,后来换了 Windows 11 发现我的那个 gui 窗口显示得很淡,然后将“设置 > 个性化 > 颜色 > 选择模式”设置为深色就能正常显示了。然后最近安装了一个可选更新后深色模式和浅色模式都彻底看不到那个 gui 窗口了。 代码: WinGetPos, taskbar_x, taskbar_y, taskbar_w, taskbar_h, ahk_class Shell_TrayWnd overlay_height := 36 overlay_width := 36 ;overlay_x...

Go to advanced search