Search found 43 matches

by l6908lay
22 May 2024, 11:56
Forum: Ask for Help (v1)
Topic: A_GuiEvent
Replies: 2
Views: 689

Re: A_GuiEvent

I don't believe there is a way to set a A_GuiEvent Timer (internally set by ahk/windows) so that it works to a particular amount of time. Which is what it looks like you're actually requesting. The internal function of A_GuiEvent is timed by the user input if you are slower than the internal time th...
by l6908lay
12 Jan 2024, 12:26
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

I saved the script as "C:\Users\HP\Documents\Editor.ahk" I received error message when run editor.ahk When i checked "C:\Users\HP\Documents\Cache" folder, there is no descriptions.txt file created Simply create a file in the Cache\ file named "descriptions.txt" it can be used with almost anything. ...
by l6908lay
02 Jan 2024, 17:52
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

Adding in new feature "Window Set." using this feature provides a "quick" list to winSet. Plus it provides an output codestring. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; ...
by l6908lay
29 Dec 2023, 07:43
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

after a lot of rechecking and redoing this is probably the best updated version from previous versions. there were some issues in the logical array, clipboard function, hotkey in ctrl, autoedit, get function, variables, mostly because of renamed keys and forgotten parts from copy and paste between p...
by l6908lay
26 Dec 2023, 07:04
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

Have you ever been in the middle of working on something have to leave and then find where you were? Me too.... So I have added Profiles. This new feature will allow you to add the current window and all it's settings. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey rel...
by l6908lay
24 Dec 2023, 09:02
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

Finally settings all in one logical space. #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. ; Ensures a con...
by l6908lay
23 Dec 2023, 00:58
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

Finally functional "Get tools" are added. #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. ; Ensures a cons...
by l6908lay
20 Dec 2023, 03:21
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

A bit more easier said than done... After ironing out a few more issues I found and getting the window to behave as I mentioned... My eyes hurt because of the color tones of the window. I had to change that. It seem a little less painful on the eyes now. #NoEnv ; Recommended for performance and comp...
by l6908lay
18 Dec 2023, 17:25
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

Well a few more functions have been added. A few extra bugs have been found and some minor forgotten edits... Those have been since fixed. I have also noticed the lock to window sometimes "chooses :think: " to just go with a blank window as not like the active window... (IDK really but I have added ...
by l6908lay
17 Dec 2023, 19:51
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

Control functions have been completely fixed now. The Ahk test creation works nicely however, depending on how code is written (rewritten comment splits, not using tabs, continuation sentences, Particular ways a project might be written...) are not accounted for. The control key now has {Ctrl}vv and...
by l6908lay
16 Dec 2023, 18:16
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

So far I have been able to make the {LCtrl} hotkey function almost completely normal (we no longer have to lift our finger off control for autosend, it also doesn't loop, And keeps clipboards in {Ctrl} loop). The test file actually works out pretty nice on the first run. However future runs come wit...
by l6908lay
16 Dec 2023, 01:50
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

So, after days of running through various different ways to simplify I did figure a much smaller way to do it... However, this also came with a serious slowdown of the process :headwall: . Basically I placed line breakers to split at each location of the editbox. This made the array much easier to w...
by l6908lay
11 Dec 2023, 11:59
Forum: Tips and Tricks (v1)
Topic: Edit box skips empty lines
Replies: 1
Views: 629

Re: Edit box skips empty lines

I have figured out a simple solution... Simply put in a if statement.

Code: Select all

if (rowtext == "")
{
	; this line is now empty and we all know it.
}
by l6908lay
11 Dec 2023, 11:14
Forum: Tips and Tricks (v1)
Topic: Edit box skips empty lines
Replies: 1
Views: 629

Edit box skips empty lines

In the below image you'll notice at the moment z == 2 which is a dependent on the ControlGet, , Line, N feature...This line in the editbox is blank however, the fact it is blank still provides text. Instead of returning a value of line 2 it gives line one.. But, even more curious is it skips all bla...
by l6908lay
10 Dec 2023, 10:27
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

there is a hotkey on the {LCtrl} button... a Input() is inside it. What it does is captures the keys pressed after the {LCtrl} button is pressed on a 0.75 timer (that feels a little natural for me however you may need to adjust to your own personal liking). Everything else (like Ctrl-c, v, s and so ...
by l6908lay
09 Dec 2023, 20:24
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

I next plan to add 3 clipboards... I have personally been stuck in the situation of needing to paste 2 maybe three things over and over and over again... And honestly that just well bites (for lack of better words). I now decided to embed the variable/filter on the main Gui for easier usage. I also ...
by l6908lay
09 Dec 2023, 09:09
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

I did notice that the updated variable extractor obtained a large number of different variables so now I have added a "filter" feature. If you are having issues first make sure the file is in the <path> (folder) of the ahk file you want to extract from. Second the "Start" Remove special characters a...
by l6908lay
08 Dec 2023, 22:33
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

I got to thinking... Here I am trying to make it run faster when in truth I'm doing it from the perspective of over 200k characters and over 2000 lines. The truth is, most people probably would never edit to that length. So basically I will opt to leave the last update as the default. That being sai...
by l6908lay
06 Dec 2023, 20:32
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

This update comes with logical array involvement and far less read/write... The difference between the two is speed vs. computer memory integrity. As a process writes and reads and writes and read... the physical location of that read and write is being degraded and overtime will fail (but almost al...
by l6908lay
04 Dec 2023, 01:03
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4109

Re: A helpful editing tool.

This now will save updated information using the hash codes previously spokey about. I believe I have found a use for backspace... It is likely a user will delete a return feed. if a user does that it dynamically changes how the cache responds. A Save on backspace in the event of a line change for t...

Go to advanced search