Search found 1376 matches

by Masonjar13
26 Oct 2018, 20:12
Forum: Ask for Help (v1)
Topic: Copy Lab Data to Medical Note
Replies: 7
Views: 1561

Re: Copy Lab Data to Medical Note

Assuming this is actual medical data, automating it in this way may indict a HIPAA violation. Could get you fired, or worse, so make sure your supervisor/manager allows for you to do so. If you don't, well, you assume all liability. Depending on the type of interface, you might be able to grab the i...
by Masonjar13
17 Oct 2018, 00:23
Forum: Ask for Help (v1)
Topic: Illegal character error with Run command
Replies: 5
Views: 1879

Re: Illegal character error with Run command

Expression syntax > traditional syntax

Code: Select all

Run,% """C:\Program Files (x86)\Youtube-dl\youtube-dl.exe"" -f ""best[height=720]"" -o ""C:/Storage/%(title)s.%(ext)s"" URL"
If that also doesn't work, try running it through comspec.
by Masonjar13
15 Oct 2018, 23:41
Forum: Scripts and Functions (v1)
Topic: Masonjar13's Library List
Replies: 40
Views: 22231

Re: Masonjar13's Library List

CyL0N wrote:
15 Oct 2018, 23:05
Sup dude,Awesome lib.
Thanks, glad you like it!
CyL0N wrote:
15 Oct 2018, 23:05
externalIP() returns ipInfo instead of ipInfoList,just thought you'd want to fix that...
:eh: Strange.. My local copy is correct. Thanks for pointing that out, fixed :thumbup:
by Masonjar13
21 Sep 2018, 13:46
Forum: Off-topic Discussion
Topic: Thank you for the music
Replies: 305
Views: 224297

Re: Thank you for the music

My dude dropped a new single under a side-project band: https://soundcloud.com/leavenothingtolu ... ingle-2018
by Masonjar13
16 Sep 2018, 20:33
Forum: Ask for Help (v1)
Topic: Imagesearch between computers and resolutions
Replies: 2
Views: 985

Re: Imagesearch between computers and resolutions

Resolutions don't scale the image, unless whatever it is you're searching scales for some reason. The only time I've encountered this issue is when it's on W10 with DPI scaling. You could scale the image with GDI+ prior to searching, based on the DPI scale, or you could create another set of images ...
by Masonjar13
15 Sep 2018, 21:22
Forum: Notepad++
Topic: Notepad++ Function List
Replies: 2
Views: 8257

Notepad++ Function List

I know there is already a function list available , but it's buggy and over-the-top. This one supports just functions and classes, giving just the names (not parameters or extended classes), and properly ignores comments (at least for what I've tested). As noted as a bug on the other thread, the clo...
by Masonjar13
13 Sep 2018, 12:22
Forum: Scripts and Functions (v1)
Topic: ScriptUp - Many scripts, One process
Replies: 36
Views: 11096

Re: ScriptUp - Many scripts, One process

If it were any of the aforementioned issues, it would also fail on my host and other computers I've tried it on. It works fine everywhere else though, just not in the VM. I didn't write or modify _MemoryLibrary or _Struct, those are both written by HotKeyIt. He's actually going to be the guest host ...
by Masonjar13
11 Sep 2018, 15:37
Forum: Scripts and Functions (v1)
Topic: ScriptUp - Many scripts, One process
Replies: 36
Views: 11096

Re: ScriptUp - Many scripts, One process

So I was making a new W7 VM to run tests with and I got a curious error in _MemoryLibrary/_Struct: ERROR: BuildImportTable failed Here's the last page of ran lines. ---- C:\Users\t\Desktop\data\_Struct.ahk 422: if (_key_="") 424: if !(idx:=p.MaxIndex()) 425: _field_:=_key_,opt:="~" 432: if this[" "]...
by Masonjar13
11 Sep 2018, 11:57
Forum: Ask for Help (v1)
Topic: Hotstring ending character Topic is solved
Replies: 8
Views: 2203

Re: Hotstring ending character Topic is solved

By default, the ending character is included with the hotkey. That is, if you exclude send. ::btw::by the way works as you want.
by Masonjar13
11 Sep 2018, 11:47
Forum: Ask for Help (v1)
Topic: How to I create gaussian blur image?
Replies: 3
Views: 903

Re: How to I create gaussian blur image?

GIMP has a command-line interface, open-source and free.
by Masonjar13
10 Sep 2018, 13:08
Forum: Ask for Help (v1)
Topic: Keyboard filter for Toddlers
Replies: 7
Views: 1176

Re: Keyboard filter for Toddlers

You're right, I missed that. You could try setBatchLines -1 to speed things up, as well as using SendInput . The most effective method would be to list all keys in an array (can be on the same line), then loop through them to create a hotkey for each, then direct them towards a label that sends ente...
by Masonjar13
10 Sep 2018, 12:37
Forum: Ask for Help (v1)
Topic: Keyboard filter for Toddlers
Replies: 7
Views: 1176

Re: Keyboard filter for Toddlers

Not sure I understand the point; what value does this have for a toddler? Remove the timeout completely and use the limit option. Set the limit to 1, and you should be good to go. Note that this does not pick up every key pressed, only keys that output characters (F-keys, arrow keys, etc. will be mi...
by Masonjar13
10 Sep 2018, 09:05
Forum: About This Community
Topic: Donation offered
Replies: 11
Views: 17758

Re: Donation offered

You certainly can! Note that AutoHotkey Foundation is a non-profit, so any donations go exclusively to business costs. See the contributions section of the foundation page. Thanks for the interest :)
(Came late, still posting ;))
by Masonjar13
07 Sep 2018, 21:47
Forum: Ask for Help (v1)
Topic: Program Changes Class Names on each instance
Replies: 6
Views: 1491

Re: Program Changes Class Names on each instance

Interesting, haven't seen the class name change like that before. You could also use the process/executable name: #if winActive("ahk_exe Ableton.exe")
by Masonjar13
07 Sep 2018, 21:21
Forum: Ask for Help (v1)
Topic: Program Changes Class Names on each instance
Replies: 6
Views: 1491

Re: Program Changes Class Names on each instance

So, first off, you don't need to dynamically get the class. If you're going to do that, might as well just use the window name. Window classes are static, so grab it with the (AHK install) included WindowSpy script. You can bypass the weirdness with #IfWinActive by not using it at all. Instead, use ...
by Masonjar13
24 Aug 2018, 13:55
Forum: AutoHotkey_H
Topic: ahk[Post]Function parameters bug
Replies: 2
Views: 1772

Re: ahk[Post]Function parameters bug

That's what I thought. Though, what you suggested is pretty much perfect for my use case, so I'll try doing that. Thank you!
by Masonjar13
24 Aug 2018, 10:20
Forum: AutoHotkey_H
Topic: ahk[Post]Function parameters bug
Replies: 2
Views: 1772

ahk[Post]Function parameters bug

I didn't thoroughly check the forums, but I didn't see anything about it in the _H forum anyway. Originally, I had tried sending varadic parameters via DllCall, which didn't work, and I'm assuming there's not a way to get that working. But, I just noticed that you can't use ahkPostFunction on a func...
by Masonjar13
22 Aug 2018, 20:38
Forum: Scripts and Functions (v1)
Topic: ScriptUp - Many scripts, One process
Replies: 36
Views: 11096

Re: ScriptUp - Many scripts, One process

Update: v1 has been released! Huge thanks to HotkeyIt! Special thanks to GitKraken ;) Binaries will be released with each significant update and can always be found on the releases page . Functionality hasn't changed very much, which is what I was going for. It does seem to be performing noticeably ...
by Masonjar13
21 Aug 2018, 12:44
Forum: AutoHotkey_H
Topic: Error using _Struct Topic is solved
Replies: 6
Views: 3330

Re: Error using _Struct Topic is solved

Ahh, didn't realize ahkThread() was AHK code. Seems to work perfectly, thanks HotKeyIt! Now I can get back to work :thumbup: Doing it this way makes the worker thread significantly lighter, library wise, which is a huge plus as well. Less management on my part :)
by Masonjar13
19 Aug 2018, 19:04
Forum: AutoHotkey_H
Topic: Error using _Struct Topic is solved
Replies: 6
Views: 3330

Re: Error using _Struct Topic is solved

Raises hand I have a problem. The main script is still going to be _L, where the threads need to be ran from a thread created with a DLL. Seems like the DLL doesn't support AhkThread(), keeps saying that it's a non-existent function. Puts me back where I started. Based off the structure I'm going f...

Go to advanced search