Search found 1736 matches

by burque505
10 Sep 2022, 13:08
Forum: Bug Reports
Topic: [2.0-beta.9] ArrayObject.InsertAt() bug (or doc error perhaps) Topic is solved
Replies: 2
Views: 652

[2.0-beta.9] ArrayObject.InsertAt() bug (or doc error perhaps) Topic is solved

Issue: Empty Array elements throw error if left entirely blank (e.g. 'x.InsertAt(1, , "B")'). Test code (Code copied from Array.InsertAt example : x := ["C"] x.InsertAt(1, , "B") ; => [ , "B", "C"] MsgBox(" First element is " x[1] " and second element is " x[2]) Error: Array_InsertAt.PNG Workaround:...
by burque505
01 Sep 2022, 12:38
Forum: Bug Reports
Topic: [2.0-beta.7] ListViewGetContent - Option "Count Col" fails Topic is solved
Replies: 3
Views: 806

[2.0-beta.7] ListViewGetContent - Option "Count Col" fails Topic is solved

ISSUE: All options for ListViewGetContent work for me with v2.0-beta.7 except "Count Col" STEPS TO DUPLICATE: Run code below. MyGui := Gui() LV_Label := MyGui.Add("Text", "w400 x10 y10","ListView testing") LV_Label.SetFont("cBlue s10") ; Create the ListView with two columns, Name and Size: LV := MyG...
by burque505
28 Aug 2022, 10:59
Forum: Skripte und Funktionen
Topic: StrSplitDlm() - Separator Indicator
Replies: 1
Views: 1794

Re: StrSplitDlm() - Separator Indicator

Danke, BoBo ! Eine v2 Version: colors := "red,green|blue;yellow|cyan,magenta" MyArray := StrSplit(colors,[",","|",";"]) MsgBox(StrSplitDlm(MyArray,colors)) StrSplitDlm(some_array,str) { Loop (some_array.Length) { str := StrReplace(str,some_array[A_Index],"") } str := Sort(str, "U D|") Return str } D...
by burque505
27 Aug 2022, 18:43
Forum: Scripts and Functions (v2)
Topic: CandyProgress for v2
Replies: 0
Views: 562

CandyProgress for v2

moefr01 posted a nice CandyProgress script in the German forum. It's here. . I modified it a tad, extracted the icons from the ".icl" file (I was trying at first to port it to Keysharp, which doesn't yet support grabbing icons from .icl files, but I'm not there yet :evil: ). Along the way I ended u...
by burque505
27 Aug 2022, 15:59
Forum: KeySharp
Topic: Keysharp - the resurrection of IronAHK
Replies: 216
Views: 93856

Re: Keysharp - the resurrection of IronAHK

@BoBo, thanks for the encouragement!
Regards,
burque505
by burque505
27 Aug 2022, 11:21
Forum: Other Utilities & Resources
Topic: My experience porting AHK scripts to Linux.
Replies: 42
Views: 48371

Re: My experience porting AHK scripts to Linux.

@SOTE, nice post, thank you!
by burque505
24 Aug 2022, 07:57
Forum: Scripts and Functions (v1)
Topic: DesktopIcons() : Hide / Show Desktop Icons
Replies: 27
Views: 9572

Re: DesktopIcons() : Hide / Show Desktop Icons

@SKAN , thanks once again for your great script. Works great with v2.0-beta.7 and - to my pleasant surprise - with the as-yet unreleased Keysharp.
by burque505
23 Jul 2022, 07:24
Forum: General Discussion
Topic: AHK_X11, AutoHotkey for Linux
Replies: 18
Views: 58738

Re: AHK_X11, AutoHotkey for Linux

@phil294, that's welcome news, thanks for your effort. I look forward to your progress.
Regards,
burque505
by burque505
21 May 2022, 09:48
Forum: Scripts and Functions (v1)
Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
Replies: 613
Views: 125753

Re: Rufaydium WebDriver 1.5.1 (no selenium/websocket)

@Xeo786, thanks once again for all your work on this extremely useful lib. I have a question about line 117 of v1.5.1:

Code: Select all

			chromeOptions := Se["capabilities",This.driver.options]
What does "Se" refer to?
Regards,
burque505
by burque505
11 May 2022, 17:13
Forum: Scripts and Functions (v1)
Topic: Incorporating an Excel table/range into a Gui
Replies: 1
Views: 559

Re: Incorporating an Excel table/range into a Gui

@flyingDman, thank you, works great.
Regards,
burque505
by burque505
27 Apr 2022, 07:33
Forum: Scripts and Functions (v1)
Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
Replies: 613
Views: 125753

Re: Rufaydium WebDriver (no selenium/websocket)

@Xeo786, thank you for all your hard work on this project. I'm looking forward to trying it out.
Regards,
burque505
by burque505
20 Apr 2022, 16:57
Forum: Other Utilities & Resources
Topic: CMDOW - Window Details via command line
Replies: 1
Views: 1348

Re: CMDOW - Window Details via command line

Nice, @BoBo!! Thank you.
Regards,
burque505
by burque505
20 Apr 2022, 16:29
Forum: Scripts and Functions (v1)
Topic: AHK HTML Editor test (W.I.P.)
Replies: 27
Views: 6421

Re: AHK HTML Editor test (W.I.P.)

@m3user, thanks for your input. I'll try to work on your requests this weekend.
Regards,
burque505
by burque505
15 Apr 2022, 16:21
Forum: Scripts and Functions (v1)
Topic: AHK HTML Editor test (W.I.P.)
Replies: 27
Views: 6421

Re: AHK HTML Editor test (W.I.P.)

Bug fixes and re-add 'Paste' button. April 15, 2022. Version 0.0.4 attached to first post in thread.
Regards,
burque505
by burque505
13 Apr 2022, 16:50
Forum: Scripts and Functions (v1)
Topic: AHK HTML Editor test (W.I.P.)
Replies: 27
Views: 6421

Re: AHK HTML Editor test (W.I.P.)

m3user , I have kludgy fix. The code changed is below, full new version is attached to OP. No 'Paste' button yet, though it should be *relatively* (famous last words) to add. ^x:: ButtonCut: doc.execCommand("Cut", false, null) Gui, Submit, NoHide return ^c:: ButtonCopy: doc.execCommand("Copy", fals...
by burque505
13 Apr 2022, 15:42
Forum: Scripts and Functions (v1)
Topic: AHK HTML Editor test (W.I.P.)
Replies: 27
Views: 6421

Re: AHK HTML Editor test (W.I.P.)

@m3user, it's been several years since I looked at it. I'll take a look, I seem to remember that problem.
Regards,
burque505
by burque505
08 Apr 2022, 07:57
Forum: Tutorials (v1)
Topic: Using SeleniumBasic v3.141.0.0 with AHK
Replies: 24
Views: 17403

Re: Using SeleniumBasic v3.141.0.0 with AHK

@dbgba, thanks for sharing this!
Regards,
burque505
by burque505
07 Apr 2022, 07:31
Forum: Tutorials (v1)
Topic: Using SeleniumBasic v3.141.0.0 with AHK
Replies: 24
Views: 17403

Re: Using SeleniumBasic v3.141.0.0 with AHK

@dbgba, I'd be curious to see some code where you've integrated SeleniumBasic with Chrome.ahk. Sounds interesting!
Regards,
burque505
by burque505
23 Mar 2022, 17:36
Forum: Scripts and Functions (v1)
Topic: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)
Replies: 391
Views: 244586

Re: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)

@Hellbent, that's amazing. Wow.
Regards,
burque505

Go to advanced search