Search found 1030 matches

by TheArkive
17 Apr 2023, 04:25
Forum: Scripts and Functions (v2)
Topic: (M)ArkDown - 2023/04/20 - AHK v2.0.2
Replies: 18
Views: 4060

Re: (M)ArkDown - 2023/04/17 - AHK v2.0.2

2023/04/17 fixed parsing of *inline **markdown*** added true escaping with \ added line_height property to input options obj for custom text size (must be specified) cleand up and condensed code replaced some instances of stepping in with only calling inline_code() updated index.md example updated e...
by TheArkive
14 Apr 2023, 03:37
Forum: Tips and Tricks
Topic: DarkMode (Force or Toggle)
Replies: 7
Views: 3681

Re: DarkMode (Force or Toggle)

This looks really cool. I've been messing around with OwnerDrawn and NVCUSTOMDRAW stuff. I've had a lot of success so far, but I'm really getting stumped with certain parts of certain controls. This takes care of most of the "big stuff". Nicely done. I'll try this out and see if I can add/suggest an...
by TheArkive
14 Apr 2023, 03:30
Forum: Scripts and Functions (v2)
Topic: GuiControl_Ex - Extending GuiControls - 2023/04/03 - v2.0.2
Replies: 54
Views: 16696

Re: GuiControl_Ex - Extending GuiControls - 2023/04/03 - v2.0.2

@jNizM

I took a closer look finally. Thanks for posting that link. That looks like a good method to include in this lib. I'll see what I can do.
by TheArkive
13 Apr 2023, 14:54
Forum: Scripts and Functions (v2)
Topic: (M)ArkDown - 2023/04/20 - AHK v2.0.2
Replies: 18
Views: 4060

Re: (M)ArkDown - 2022/09/08 - beta.8

I honestly can't remember the details about that commit :P

The order of operations for parsing all this stuff properly is unfortunately quite tricky.

I've reviewed this script today and I'm planning some changes, mostly to be more inline with the GitHub specs for markdown.
by TheArkive
13 Apr 2023, 14:42
Forum: Scripts and Functions (v2)
Topic: GuiControl_Ex - Extending GuiControls - 2023/04/03 - v2.0.2
Replies: 54
Views: 16696

Re: GuiControl_Ex - Extending GuiControls - 2023/04/03 - v2.0.2

Depending on what you need, this might work: ctl.Opt("cRed BackgroundBlue") cColor = text color, and Color can be RRGGBB BackgroundColor = the background Works for edit boxes and the edit box of a ComboBox. It does not apply though to the drop-down part of a ComboBox. jNizM's solution is certainly m...
by TheArkive
13 Apr 2023, 00:29
Forum: Scripts and Functions (v2)
Topic: (M)ArkDown - 2023/04/20 - AHK v2.0.2
Replies: 18
Views: 4060

Re: (M)ArkDown - 2022/09/08 - beta.8

One can't display a literal < or > and it needs to be written as it's corresponding entity:

https://www.w3schools.com/html/html_entities.asp

That is what ltgt() is for.

I just need to fix the parsing so that <strong> is properly written. Your fix certainly makes sense in the short term.
by TheArkive
12 Apr 2023, 07:42
Forum: Scripts and Functions (v2)
Topic: (M)ArkDown - 2023/04/20 - AHK v2.0.2
Replies: 18
Views: 4060

Re: (M)ArkDown - 2022/09/08 - beta.8

As for the empty <tr></tr> , I wouldn't say I intended that. I'll have to investigate. I'm pretty sure I intended for usage of \ to allow escaping, but I don't recall how comprehensive I made this to be honest. I'll have to take another look at it and fix some things. I re-ran my test script and end...
by TheArkive
07 Apr 2023, 16:21
Forum: Ask for Help (v2)
Topic: Gui.BackColor not initialized - intended? Topic is solved
Replies: 2
Views: 167

Re: Gui.BackColor not initialized - intended? Topic is solved

My bad, read too fast.

EDIT: And of course, thanks. Maybe it's time for a break :roll: :facepalm:
by TheArkive
07 Apr 2023, 15:54
Forum: Ask for Help (v2)
Topic: Gui.BackColor not initialized - intended? Topic is solved
Replies: 2
Views: 167

Gui.BackColor not initialized - intended? Topic is solved

Just wondering if Gui.BackColor is meant to not be initialized?

It actually returns an empty string, unless previously set.

I haven't noticed any other errors or issues related to this. Only this quirk.
by TheArkive
05 Apr 2023, 13:48
Forum: Scripts and Functions (v2)
Topic: [AHK v2] RichEdit Class
Replies: 5
Views: 2037

Re: [AHK v2] RichEdit Class

I've thought of doing this, but lately I've been focusing on the Scintilla control (haven't posted latest changes yet). Having said that I've thought about going for this one, but I'm not making it a priority at the moment though.
by TheArkive
03 Apr 2023, 08:09
Forum: Scripts and Functions (v2)
Topic: GuiControl_Ex - Extending GuiControls - 2023/04/03 - v2.0.2
Replies: 54
Views: 16696

Re: GuiControl_Ex - Extending GuiControls - 2023/04/03 - v2.0.2

Update 2023/04/03
  • improved structure keeping items that belong together in a single class
  • simplified code for ComboBox auto-complete
  • added several properties / methods (see docs)
  • updated docs
by TheArkive
28 Mar 2023, 03:20
Forum: Scripts and Functions (v2)
Topic: GuiControl_Ex - Extending GuiControls - 2023/04/03 - v2.0.2
Replies: 54
Views: 16696

Re: GuiControl_Ex - Extending GuiControls - 2023/03/27 - v2.0.2

Yes I was aware that it is not possible to bring the control back with Destroy(). So in that manner it is not "the same". But the handle for the destroyed control still exists (at least in my tests, that is what happened). It seems that the only real difference is that the control still exists and i...
by TheArkive
27 Mar 2023, 09:57
Forum: Scripts and Functions (v2)
Topic: GuiControl_Ex - Extending GuiControls - 2023/04/03 - v2.0.2
Replies: 54
Views: 16696

Re: GuiControl_Ex - Extending GuiControls - 2023/03/27 - v2.0.2

Update 2023/03/27 commented out GuiCtl_Ext class, not currently needed moved methods in GuiCtl_Ext to proper controls, keeping everything self contained per control Added tab props/methods: GetCount(), GetIcon(), GetItems(), GetName(), Insert(), RowCount, SetIcon(), SetName(), SetImageList() Added G...
by TheArkive
19 Mar 2023, 18:31
Forum: Scripts and Functions (v2)
Topic: WinClip v2 - 2023/07/22 - v2.0.4
Replies: 12
Views: 4663

Re: WinClip v2 - 2021/06/21 - beta.1

@JoeSchmoe

Thanks. Done.
by TheArkive
19 Mar 2023, 09:56
Forum: Scripts and Functions (v2)
Topic: IconPicker - 2021/06/21 - a137
Replies: 13
Views: 2369

Re: IconPicker - 2021/06/21 - a137

correction: uncomment all 5 lines, or keep all 5 lines commented
by TheArkive
19 Mar 2023, 09:55
Forum: Scripts and Functions (v2)
Topic: IconPicker - 2021/06/21 - a137
Replies: 13
Views: 2369

Re: IconPicker - 2021/06/21 - a137

i was wondering about that, either uncomment the entire 4 lines of that IF statement, or comment them all out.
by TheArkive
19 Mar 2023, 09:49
Forum: Scripts and Functions (v2)
Topic: IconPicker - 2021/06/21 - a137
Replies: 13
Views: 2369

Re: IconPicker - 2021/06/21 - a137

Ok, just checking. (and yes, the docs are very light).

If you have the example uncommented, it should be working. It works for me.
by TheArkive
19 Mar 2023, 09:38
Forum: Scripts and Functions (v2)
Topic: IconPicker - 2021/06/21 - a137
Replies: 13
Views: 2369

Re: IconPicker - 2021/06/21 - a137

Did you try opening the script and reading the example / docs?
by TheArkive
09 Mar 2023, 18:48
Forum: Scripts and Functions (v2)
Topic: Socket Class - 2022/09/07 - beta.8
Replies: 32
Views: 9229

Re: Socket Class - 2022/09/07 - beta.8

You probably "need" the msgbox because of timing issues. Use the events properly and check err codes. That should fix the root of this issue.
by TheArkive
09 Mar 2023, 18:35
Forum: Scripts and Functions (v2)
Topic: Socket Class - 2022/09/07 - beta.8
Replies: 32
Views: 9229

Re: Socket Class - 2022/09/07 - beta.8

Read up on the async events. At a minimum, if you are only sending, you will have 2 events. See the original example for event handling. Read up here: WSAAsyncSelect - FD_CONNECT On return from connect command. Err code will indicate success or reason for fail. - FD_WRITE Socket is ready to write, n...

Go to advanced search