Search found 16 matches

by jim7181812
14 Feb 2018, 10:11
Forum: Ask for Help (v1)
Topic: Sending and receiving JSON objects from Tampermonkey
Replies: 3
Views: 3937

Re: Sending and receiving JSON objects from Tampermonkey

I can save them to the localstorage if I wanted to. I was kind of hoping there was an easy way to send them back and forth to an AHK script. These json libraries are a bit much and that is where I'm getting lost in the process. I'm the script author and I can edit the script as needed. I'm not sure ...
by jim7181812
14 Feb 2018, 08:43
Forum: Ask for Help (v1)
Topic: Sending and receiving JSON objects from Tampermonkey
Replies: 3
Views: 3937

Sending and receiving JSON objects from Tampermonkey

I've got a Tampermonkey script with multiple json objects. I'm wondering what the easiest way is to send them back and forth to my AHK is? All I'm seeing is rather complex libraries that dont discuss how to import and export them from the Tampermonkey user-script.
by jim7181812
07 Oct 2017, 12:38
Forum: Ask for Help (v1)
Topic: Javascript to ahk
Replies: 3
Views: 1195

Re: Javascript to ahk

Thanks guys.
by jim7181812
07 Oct 2017, 08:00
Forum: Ask for Help (v1)
Topic: Javascript to ahk
Replies: 3
Views: 1195

Javascript to ahk

I built an array in javascript, in a greasemonkey extension, in a browser that does not use COM. I'm trying to directly import it into AHK. Is there any way this can be done?
by jim7181812
23 Sep 2017, 11:56
Forum: Ask for Help (v1)
Topic: Adobe Flash script
Replies: 1
Views: 941

Re: Adobe Flash script

Anyone?
by jim7181812
20 Sep 2017, 16:58
Forum: Scripts and Functions (v1)
Topic: Vis2 - Image to Text OCR()
Replies: 329
Views: 159086

Re: Vis2 - Simple OCR

Small Update: Bugfix. The only thing this script does is wrap actual OCR utilities in a manner that makes it accessible to AutoHotkey users. It does not perform computationally expensive neural net operations; those need to be compiled in a lower level language and are included in the download. So ...
by jim7181812
20 Sep 2017, 14:38
Forum: Scripts and Functions (v1)
Topic: Vis2 - Image to Text OCR()
Replies: 329
Views: 159086

Re: Vis2 - Simple OCR

Is there any way I can get someone to explain this, I could use OCR. I would need someone to explain it the way you would to an unintelligent newbie in order to make it simple enough for me to understand. Is that possible?
by jim7181812
20 Sep 2017, 13:36
Forum: Ask for Help (v1)
Topic: Adobe Flash script
Replies: 1
Views: 941

Adobe Flash script

So I'm running a webpage on the user side which has multiple video's played in flash. I'm wondering if there is any way I can make AHK control the multiple instances of flash. Specifically I would like to get the video's to load automatically without me having hit the play button. I would like AHK t...
by jim7181812
06 Aug 2017, 13:50
Forum: Ask for Help (v1)
Topic: autohotkey script as a toggle for DNS? Topic is solved
Replies: 3
Views: 1226

Re: autohotkey script as a toggle for DNS? Topic is solved

AHA!!!

It didnt work when I tried to paste your code snippet into my script, but as a standalone script it worked perfectly. You sir (or ma'am) are the effing man (or woman)!!!!
by jim7181812
06 Aug 2017, 12:56
Forum: Ask for Help (v1)
Topic: autohotkey script as a toggle for DNS? Topic is solved
Replies: 3
Views: 1226

autohotkey script as a toggle for DNS? Topic is solved

I'm trying to toggle Dragon Naturally Speaking's Recognition mode back and forth between spell mode and Dictation & Commands mode with a single keypress. Is there anyway I can do this with AHK? I cant find a keyboard shortcut for it.
by jim7181812
10 Oct 2016, 20:52
Forum: Ask for Help (v1)
Topic: Video game controller Topic is solved
Replies: 1
Views: 974

Video game controller Topic is solved

I'd like to get a game controller for my pc and hook up a few scripts with hotkeys on each of the buttons. Is there a specific controller that would be best for this with AHK? Is any generic controller remappable?
by jim7181812
12 Aug 2016, 12:39
Forum: Ask for Help (v1)
Topic: Help With Webscraping Script
Replies: 3
Views: 1502

Re: Help With Webscraping Script

You could parse the HTML and use if's to filter out the js if it's in script tags . Other than that, It's hard to say blindly because js can be placed inline as an attribute, in <code> tags and or in <script> tags etc. Please paste an example of the HTML you're trying to parse so we can take a clos...
by jim7181812
12 Aug 2016, 11:34
Forum: Ask for Help (v1)
Topic: Help With Webscraping Script
Replies: 3
Views: 1502

Help With Webscraping Script

I'm still learning AHK and learned most of how to do this through Joe Glines' youtube vid's. If the script looks familiar, thats why. What I'm trying to do here is grab all the text's and links only from a website and place them into a GUI. For now I'm just looking for help with the text portion. Th...
by jim7181812
28 Jun 2016, 13:15
Forum: Ask for Help (v1)
Topic: convert text first letter of multiple words to upper case
Replies: 12
Views: 4508

Re: convert text first letter of multiple words to upper case

!^k:: ; Sentence case
StringLower, Clipboard, Clipboard
Clipboard := RegExReplace(Clipboard, "((?:^|[.!?]\s+)[a-z])", "$u1")
Send %Clipboard%
RETURN

thats what i was looking for, thank you guest
by jim7181812
28 Jun 2016, 11:10
Forum: Ask for Help (v1)
Topic: Capitalization script
Replies: 2
Views: 1073

Capitalization script

anyone have a script that will make the first letter of every sentence capitalize? Say I type out a bunch of private notes into notepad then want to make it public so I want to properly edit it and capitalize. Is there a script that will do this for me? I posted this in another thread but I'm not su...
by jim7181812
28 Jun 2016, 10:20
Forum: Ask for Help (v1)
Topic: convert text first letter of multiple words to upper case
Replies: 12
Views: 4508

Re: convert text first letter of multiple words to upper case

Anyone have a script that will make the first letter of every sentence capitalize? Say I type out a bunch of private notes into notepad then want to make it public so I want to properly edit it and capitalize. Is there a script that will do this for me?

Go to advanced search