Search found 89 matches

by jly
18 Apr 2021, 20:31
Forum: Ask for Help (v1)
Topic: [Solved]Why IconEx.ahk failed to generate Icon Topic is solved
Replies: 3
Views: 426

Re: Why IconEx.ahk failed to generate Icon Topic is solved

@just me @BoBo Thank you very much , now the picture can be displayed normally .
by jly
16 Apr 2021, 22:46
Forum: Ask for Help (v1)
Topic: [Solved]Why IconEx.ahk failed to generate Icon Topic is solved
Replies: 3
Views: 426

[Solved]Why IconEx.ahk failed to generate Icon Topic is solved

Why IconEx.ahk failed to generate Icon ? I execute the script IconEx.ahk but the corresponding icon is not displayed. Check the 222 line of the script. The hIcon got 0. Is there something wrong? IconEx_Failed.png 222.png /* ____________________________________________________________________________...
by jly
15 Apr 2021, 23:33
Forum: Ask for Help (v1)
Topic: How to set the theme of Listview?
Replies: 1
Views: 204

Re: How to set the theme of Listview?

Any idea?
by jly
15 Apr 2021, 22:33
Forum: Tips and Tricks (v1)
Topic: 'Explorer' theme for ListViews & TreeViews on Vista+
Replies: 7
Views: 12293

Re: 'Explorer' theme for ListViews & TreeViews on Vista+

Can the parameters of SetWindowTheme be set to something other than Explorer? Execute the following command in powershell , and you will see another style of Listview. Is it possible to set Listview to that style through AutoHotkey? gp 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Folder...
by jly
15 Apr 2021, 12:07
Forum: Ask for Help (v1)
Topic: How to set the theme of Listview?
Replies: 1
Views: 204

How to set the theme of Listview?

How to set the theme of Listview? Execute the following command in powershell , and you will see another style of Listview. Is it possible to set Listview to that style through AutoHotkey? gp 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\*' | select PSChildName, Name |...
by jly
15 Apr 2021, 02:36
Forum: Ask for Help (v1)
Topic: How to get File Location of Apps in Applications Folder??
Replies: 2
Views: 473

Re: How to get File Location of Apps in Applications Folder??

#NoEnv KFI := "{7C5A40EF-A0FB-4BFC-874A-C0F2E0B9FA8E}" MsgBox, % SHGetKnownFolderPath(KFI) ExitApp SHGetKnownFolderPath(KnownFolderID) { Path := "" VarSetCapacity(GUID, 16, 0) If !DllCall("Ole32.dll\CLSIDFromString", "WStr", KnownFolderID, "Ptr", &GUID, "Int") && !DllCall("Shell32.dll\SHGetKnownFol...
by jly
14 Apr 2021, 03:22
Forum: Ask for Help (v1)
Topic: How to get File Location of Apps in Applications Folder??
Replies: 2
Views: 473

How to get File Location of Apps in Applications Folder??

I want to traverse the Applications Folder (AppsFolder) to get all apps inside, and then get File Location if there is an item named " Open file location " in right-menu . In my current script, I can only get the name and path (APPUserModelId) of an app. I don’t know how to get the File Location ("O...
by jly
07 Apr 2021, 21:35
Forum: Ask for Help (v1)
Topic: How to append multiple values ​​to the clipboard? Topic is solved
Replies: 6
Views: 371

Re: How to append multiple values ​​to the clipboard? Topic is solved

Perhaps you can describe what you are trying to do. I want to append multiple values to the clipboard, and each value is displayed in a different item, You can take a closer look at the difference between my first two screenshots. Mikeyww thank you very much and I found the solution now.: #SingleIn...
by jly
07 Apr 2021, 21:04
Forum: Ask for Help (v1)
Topic: How to append multiple values ​​to the clipboard? Topic is solved
Replies: 6
Views: 371

Re: How to append multiple values ​​to the clipboard? Topic is solved

#SingleInstance Force Clipboard := "hello 1`n" clipAppend("hello 2`n"), clipAppend("hello 3`n"), clipAppend("hello 4`n"), clipAppend("hello 5`n") MsgBox, 64, Clipboard, %Clipboard% clipAppend(text) { oldClip := Clipboard, Clipboard := "", Clipboard := oldClip text ClipWait, 0 If ErrorLevel MsgBox, ...
by jly
07 Apr 2021, 11:38
Forum: Ask for Help (v1)
Topic: How to append multiple values ​​to the clipboard? Topic is solved
Replies: 6
Views: 371

How to append multiple values ​​to the clipboard? Topic is solved

How to append multiple values ​​to the clipboard?

Code: Select all


#SingleInstance Force
Clipboard := "hello 1"
Clipboard := "hello 2"
Clipboard := "hello 3"
Clipboard := "hello 4"
Clipboard := "hello 5"
esc::ExitApp

My desired result is:
clip2.png
clip2.png (30.2 KiB) Viewed 371 times
The actual result is:
clip1.png
clip1.png (32.15 KiB) Viewed 371 times
by jly
04 Apr 2021, 11:21
Forum: Ask for Help (v1)
Topic: How to show Mouse Icon in ScreenMagnifier
Replies: 0
Views: 151

How to show Mouse Icon in ScreenMagnifier

How can I make it display the Mouse arrow in the GUI, when using holomind's ScreenMagnifier script? https://autohotkey.com/board/topic/10660-screenmagnifier/ #SingleInstance Force OnExit handle_exit Gui, +AlwaysOnTop +Owner +Resize +ToolWindow ; window for the dock Gui, Show, NoActivate w400 h400 x3...
by jly
01 Apr 2021, 00:16
Forum: Ask for Help (v1)
Topic: Why LButton and RButton affect each other??
Replies: 21
Views: 1004

Re: Why LButton and RButton affect each other??

Xtra, thank you very much for your inspiration. I need time to think about how to do it.
by jly
31 Mar 2021, 12:03
Forum: Ask for Help (v1)
Topic: Why LButton and RButton affect each other??
Replies: 21
Views: 1004

Re: Why LButton and RButton affect each other??

boiler wrote:
31 Mar 2021, 11:58
OK. Thanks for clarifying what the effect is. It is a strange effect. I don't know why.
Still thank you very much!!
by jly
31 Mar 2021, 12:00
Forum: Ask for Help (v1)
Topic: Why LButton and RButton affect each other??
Replies: 21
Views: 1004

Re: Why LButton and RButton affect each other??

I'm testing it now, and the left button has no effect on the right button. And there is nothing in the script that would make it do so (unless you leave the return out). Test sequence: 1 Start the script s1 . And press the hot key F1 to dynamically start the hot key RButton . Press RButton, it will...
by jly
31 Mar 2021, 11:52
Forum: Ask for Help (v1)
Topic: Why LButton and RButton affect each other??
Replies: 21
Views: 1004

Re: Why LButton and RButton affect each other??

So you’re saying when you uncomment both the ~LButton:: line and the return line that follows it, pressing the left mouse button somehow affects the right mouse button. Have you tried it again to confirm that? If uncomment ~LButton:: and return two lines. F1 can no longer turn on the hotkey of RBut...
by jly
31 Mar 2021, 11:46
Forum: Ask for Help (v1)
Topic: Why LButton and RButton affect each other??
Replies: 21
Views: 1004

Re: Why LButton and RButton affect each other??

boiler wrote:
31 Mar 2021, 11:39
So you’re saying when you uncomment both the ~LButton:: line and the return line that follows it, pressing the left mouse button somehow affects the right mouse button. Have you tried it again to confirm that?
hello boiler:
I have tested it many times. I am very sure about it。
by jly
31 Mar 2021, 11:42
Forum: Ask for Help (v1)
Topic: Why LButton and RButton affect each other??
Replies: 21
Views: 1004

Re: Why LButton and RButton affect each other??

;;s1.ahk #SingleInstance, Force ;~LButton:: ;~WheelDown/~WheelUp are the same ;return F1:: if(!flag) { Hotkey, RButton, RButton, Off Hotkey, RButton, OnKeyPressed, On } else { Hotkey, RButton, OnKeyPressed, Off Hotkey, RButton, RButton, On } flag := !flag return OnKeyPressed: ToolTip % "s1: " A_Tic...
by jly
31 Mar 2021, 11:37
Forum: Ask for Help (v1)
Topic: Why LButton and RButton affect each other??
Replies: 21
Views: 1004

Re: Why LButton and RButton affect each other??

So the script in the first post is now different than what we originally were considering. So describe what happens when you use the script as modified. Would be best if you posted the script as run, with comments removed and everything. Post it in a new post instead of editing the first post becau...
by jly
31 Mar 2021, 11:19
Forum: Ask for Help (v1)
Topic: Why LButton and RButton affect each other??
Replies: 21
Views: 1004

Re: Why LButton and RButton affect each other??

boiler wrote:
31 Mar 2021, 11:16
And when you did that, it didn’t just disable the function of the left mouse button?

I used ~LButton:: to test, and I forgot to add ~ in the answer above.

Go to advanced search