Search found 1747 matches
- 08 Oct 2024, 11:36
- Forum: Ask for Help (v2)
- Topic: FileExist Function Not Working with A_Clipboard Input
- Replies: 3
- Views: 246
Re: FileExist Function Not Working with A_Clipboard Input
MRJN , I'm pretty sure Draken nailed it. This works for me, I chose a directory name to use to make sure the 'D' attribute was being returned. #Requires AutoHotkey v2.0 Path := "C:\temp\" A_Clipboard := Path ^j:: { Path:= A_Clipboard MsgBox "This is the clipboard: `n" Path tmp := StrReplace(Path, "...
- 05 Oct 2024, 08:15
- Forum: Scripts and Functions (v2)
- Topic: PDF re-arranger (Listview, Windows Runtime & QPDF )
- Replies: 11
- Views: 1360
Re: PDF re-arranger (Listview, Windows Runtime & QPDF )
MrHue , thanks again, great improvements! I was puzzled by how one might get the arrow keys working like you've done. I incorporated your new code in my version, here it is, in case it might be useful somehow. (I haven't attached the icon, DLL or exe this time.) #Requires AutoHotkey v2.0 #SingleIns...
- 04 Oct 2024, 11:02
- Forum: Scripts and Functions (v2)
- Topic: PDF re-arranger (Listview, Windows Runtime & QPDF )
- Replies: 11
- Views: 1360
Re: PDF re-arranger (Listview, Windows Runtime & QPDF )
MrHue , thank you very much for this. I would like to offer a GUI with just a few added features (preview is deleted when item is deleted, a menubar with File and Help, a minimal context menu ( not shown ), and custom icon). In one ZIP archive are the PDF icon, the EXE, and the script. The dll is i...
- 29 Aug 2024, 09:21
- Forum: Scripts and Functions (v2)
- Topic: ahk standard library like javascript and python
- Replies: 13
- Views: 2959
Re: ahk standard library like javascript and python
Thanks, I will! Much appreciated.
- 29 Aug 2024, 07:37
- Forum: Scripts and Functions (v2)
- Topic: ahk standard library like javascript and python
- Replies: 13
- Views: 2959
Re: ahk standard library like javascript and python
@Autumn, starred the repo. Sorry, should have done that yesterday. I tried the new installer - the two prompts are still in Chinese, but it still works fine.
No problems with language for the lib itself, either now or before - just the prompts for the installer.
Regards,
burque505
No problems with language for the lib itself, either now or before - just the prompts for the installer.
Regards,
burque505
- 28 Aug 2024, 11:57
- Forum: Scripts and Functions (v2)
- Topic: ahk standard library like javascript and python
- Replies: 13
- Views: 2959
Re: ahk standard library like javascript and python
Autumn , thank you very much for this. My system language is English. I used the installer to create the lib. Just FYI, the prompts were in Chinese, but I made it through okay anyway :) Just the fact that I can now create 'Dictionaries' as shown below (which was easy in v1, in v2 not so much for my...
- 24 Aug 2024, 08:25
- Forum: Tutorials (v2)
- Topic: How to remove the default auto-focus & highlight of the Edit control
- Replies: 5
- Views: 2782
Re: How to remove the default auto-focus & highlight of the Edit control
@william_ahk, thanks for the tip. Very useful for me in something I'm working on at the moment.
Regards,
burque505
Regards,
burque505
- 24 Aug 2024, 07:46
- Forum: Ask for Help (v2)
- Topic: Type(Button) - Incorrectly reported as string
- Replies: 6
- Views: 787
Re: Type(Button) - Incorrectly reported as string
@ntepa, @kiwichick , thanks for the interesting discussion. Very helpful and informative.
Regards,
burque505
Regards,
burque505
- 23 Aug 2024, 19:40
- Forum: Ask for Help (v2)
- Topic: Type(Button) - Incorrectly reported as string
- Replies: 6
- Views: 787
Re: Type(Button) - Incorrectly reported as string
@flyingDman, well, I'll be hornswoggled!
So adding the event with dot notation caused the error! Makes sense.
Thank you!
Regards,
burque505
So adding the event with dot notation caused the error! Makes sense.
Thank you!
Regards,
burque505
- 23 Aug 2024, 18:55
- Forum: Ask for Help (v2)
- Topic: Type(Button) - Incorrectly reported as string
- Replies: 6
- Views: 787
Type(Button) - Incorrectly reported as string
I've tried the code below with AHK v2.0.5 and AHK v2.0.18. "Type(Button) yields "String". Type should be "Gui.Button", no? (I found this when I was trying to use AutoXYWH for v2 and it threw this error:) Error: This value of type "String" has no property named "Gui". Test code below: MyGui := Gui(""...
- 29 Jul 2024, 06:36
- Forum: Ask for Help (v2)
- Topic: How to make Object type support [] Topic is solved
- Replies: 7
- Views: 514
Re: How to make Object type support [] Topic is solved
@Autumn, not sure if this is what you're looking for, but at least the messagebox shows "1".
Regards,
burque505
Code: Select all
Object.Prototype.__Item := ObjectBase
ObjectBase(this, key){
return this.%key%
}
o := {
a: 1,
b: 2
}
msgbox ObjectBase(o, "a")
burque505
- 19 Apr 2024, 10:40
- Forum: Scripts and Functions (v2)
- Topic: [Function] MsgBoxTBI - Display a MsgBox window with an icon in the title bar
- Replies: 14
- Views: 1663
Re: [Function] MsgBoxTBI - Display a MsgBox window with an icon in the title bar
@iPhilip, it's working great for me now too. Very nice, thank you!
Best regards,
burque505
Best regards,
burque505
- 19 Apr 2024, 06:38
- Forum: Scripts and Functions (v2)
- Topic: [Function] MsgBoxTBI - Display a MsgBox window with an icon in the title bar
- Replies: 14
- Views: 1663
Re: [Function] MsgBoxTBI - Display a MsgBox window with an icon in the title bar
Thanks for staying on top of this, iPhilip , much appreciated. I got this with your diagnostic code (no icons still): 602941234 602942390 SetTitleBarIcon 602942390 HSHELL_WINDOWCREATED 602943390 HSHELL_WINDOWDESTROYED 602943562 SetTitleBarIcon 602943578 HSHELL_WINDOWCREATED 602944562 HSHELL_WINDOWDE...
- 18 Apr 2024, 12:40
- Forum: Scripts and Functions (v2)
- Topic: [Function] MsgBoxTBI - Display a MsgBox window with an icon in the title bar
- Replies: 14
- Views: 1663
Re: [Function] MsgBoxTBI - Display a MsgBox window with an icon in the title bar
Sure, I just used the code you provided above. I'll check the vars. Back in a few. Quick and very dirty, MsgBoxes for the var values. #Requires AutoHotkey v2.0 MsgBoxTBI( , , 'T3') MsgBoxTBI( , , 'T3', A_AhkPath) MsgBoxTBI( , , 'T3', 'DDORes.dll', 2) MsgBoxTBI( , , 'T3', 'DDORes.dll', 87) ; ========...
- 18 Apr 2024, 11:29
- Forum: Scripts and Functions (v2)
- Topic: [Function] MsgBoxTBI - Display a MsgBox window with an icon in the title bar
- Replies: 14
- Views: 1663
Re: [Function] MsgBoxTBI - Display a MsgBox window with an icon in the title bar
@iPhilip, I'm having trouble with this also, AHK 2.0.12. Not getting icons in the title bars. No errors, just no icons.
Best regards,
burque505
Best regards,
burque505
- 07 Apr 2024, 07:53
- Forum: Scripts and Functions (v2)
- Topic: Easy Window Dragging KDE style, corrected for multi monitor setup
- Replies: 4
- Views: 1150
Re: Easy Window Dragging KDE style, corrected for multi monitor setup
@Cebolla, thanks very much for this. Very useful indeed.
Regards,
burque505
Regards,
burque505
- 09 Feb 2024, 08:18
- Forum: KeySharp
- Topic: Keysharp - C# port of AHK
- Replies: 22
- Views: 9030
Re: Keysharp - C# port of AHK
iseahound 's Capslock-to-modifier script from here , ported to Keysharp. Very minor mod required. ; Modded for Keysharp 2024-01-30 by burque505 ; Original script by iseahound ; is here: https://www.autohotkey.com/boards/viewtopic.php?f=96&p=556135#p556135 CapsLock:: { start := A_TickCount ; run onc...
- 09 Feb 2024, 08:16
- Forum: KeySharp
- Topic: Keysharp - C# port of AHK
- Replies: 22
- Views: 9030
Re: Keysharp - C# port of AHK
SKAN 's script to show/hide desktop icons, ported to Keysharp. ; Thanks to SKAN for this and his many other scripts! ^#!i:: { DesktopIcons() } DesktopIcons(Show:=-1, hWnd:=0) { ; By SKAN on D35D @ tiny.cc/desktopicons If ! hWnd := DllCall("GetWindow", "Ptr",WinExist("ahk_class Progman"), "UInt",5, ...
- 09 Feb 2024, 08:15
- Forum: KeySharp
- Topic: Keysharp - C# port of AHK
- Replies: 22
- Views: 9030
Re: Keysharp - C# port of AHK
CreateUUID.ks ; ============================================================================================================================================================= ; Author ........: jNizM ; Released ......: 2021-10-13 ; Modified ......: 2023-01-12 ; Tested with....: AutoHotkey v2.0.2 (x64...
- 09 Feb 2024, 08:15
- Forum: KeySharp
- Topic: Keysharp - C# port of AHK
- Replies: 22
- Views: 9030
Re: Keysharp - C# port of AHK
DNSServerList.ks ; ============================================================================================================================================================= ; Author ........: jNizM ; Released ......: 2023-01-17 ; Modified ......: 2023-01-17 ; Tested with....: AutoHotkey v2.0.2 (...