Search found 90 matches

by Stavencross
29 Oct 2021, 10:14
Forum: Scripts and Functions (v1)
Topic: NeutronC - Run GUIs in Chrome!
Replies: 9
Views: 3765

Re: NeutronC - Run GUIs in Chrome!

@erohtar hi erohtar, i am very interesting with this project and found some useful information. 1. When the user's language is not English, the Bootstrap GUI will pop up a translation box. Unfortunately, I didn't find any command line to disable it pop up. But add <meta name="google" content="notra...
by Stavencross
29 Oct 2021, 10:12
Forum: Scripts and Functions (v1)
Topic: NeutronC - Run GUIs in Chrome!
Replies: 9
Views: 3765

Re: NeutronC - Run GUIs in Chrome!

just for your information, Chrome.ahk also uses IE/Trident based websocket I wanted to expand on this and offer some context about Neutron and Chrome.ahk. What is the point of Neutron? - Neutron is more about allowing you to have a boilerplate to create an HTML GUI as quickly as possible, however i...
by Stavencross
29 Oct 2021, 09:41
Forum: Scripts and Functions (v1)
Topic: An Alternative Menu (A Quick Access To Various Features)
Replies: 25
Views: 8445

Re: An Alternative Menu (A Quick Access To Various Features)

without reading all your code, I have no idea what this script does, and more importantly, I have no idea how to use it. Can i suggest some pics and a how to use?
by Stavencross
28 Sep 2021, 15:38
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 668
Views: 453842

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!

I don't know who needs to see this, but some of my users were reporting that their app was getting "not connected to tab" errors. Turns out, if you issue a request that takes >30ish seconds from within your main script (For instance, exporting a large PPTX to PDF), you block the keep alive, and you ...
by Stavencross
11 Sep 2021, 15:56
Forum: Scripts and Functions (v1)
Topic: Outlook COM Create email & capture email send
Replies: 0
Views: 637

Outlook COM Create email & capture email send

Wanted to share an example here of a couple things. create an email and see the on email send event create a copy of an email that is being sent use case for this is you can create an email for your users, let them modify it, and when they send it, you clone it, so you can 'forward' it else where. I...
by Stavencross
11 Sep 2021, 15:48
Forum: Ask for Help (v1)
Topic: COM Outlook Events
Replies: 26
Views: 5333

Re: COM Outlook Events

This worked!! Thank so much! One small follow-up as this only covers the recipients, how do I obtain the same for the sender (who the email is from)? Also, for the EventApp_ItemSend(Outlook_Item) [Item Send outlook event], I tried to save the email via Outlook_Item.SaveAs(Email_To_Save) but the ema...
by Stavencross
16 May 2021, 18:49
Forum: Scripts and Functions (v1)
Topic: [Library] Neutron.ahk - AutoHotkey Web GUIs on Steroids (now for v2!)
Replies: 140
Views: 59173

Re: [Library] Neutron.ahk - AutoHotkey Web GUIs on Steroids

I created the following Bootstrap 5 HTML GUI, and installed everything the same way as in the bootstrap.ahk file, but my gui comes up broken af. All i changed was to fileinstall bootstrap bundle.min.js and I replaced neutron.Load("bootstrap.html") with neutron.Load("index.html"). Is it just that I w...
by Stavencross
16 May 2021, 18:16
Forum: Scripts and Functions (v1)
Topic: [Library] Neutron.ahk - AutoHotkey Web GUIs on Steroids (now for v2!)
Replies: 140
Views: 59173

Re: [Library] Neutron.ahk - AutoHotkey Web GUIs on Steroids

Welcome to Neutron Neutron provides a powerful set of tools for build HTML-based user interfaces with AutoHotkey. It leverages the Trident engine, known for its use in Internet Explorer, because of its deep integration with the Microsoft Windows operating system and its wide availability across sys...
by Stavencross
06 Jan 2020, 11:11
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 668
Views: 453842

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!

I created a mixed JS/AHK script that you can use to confirm from the browser that you're still connected to autohotkey, and inform your users if not (so they don't get confused when things stop working. Let me know if ya'll have suggestions on how to make this better! JAVASCRIPT/JQuery var interval ...
by Stavencross
05 Jan 2020, 11:49
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 668
Views: 453842

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!

After fruther, in depth review, my previous post was wrong. I discovered that I was creating several instances of the pageInst, each with their own keep alive timers. After creating a couple of them, chromeInst would die. Within EACH function that you want to Call/Evaluate against the page, you MUST...
by Stavencross
04 Jan 2020, 18:53
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 668
Views: 453842

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!

Thanks to Tre4shunter for helping out with this! Discovered that somehow, the PageInst is loosing its reference, so we add reconnectToPage() with each callback to ensure it doesn't die. This should help solve the endless sleeps on response. (again it was because you couldn't connect to the page and ...
by Stavencross
04 Jan 2020, 16:11
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 668
Views: 453842

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!

Consider the following: HTML PAGE <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <button onclick="console.log('AHK:getState')" id="TEST">TEST ME</button> </body> </html> AUTOHOTKEY SCRIPT #Persistent #include Chrome.ahk FileCreateDir, ChromeProfile...
by Stavencross
02 Jan 2020, 13:26
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 668
Views: 453842

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!

I have actually run into that - but to be honest I'm not 100% certain what i actually did to overcome it. I make sure i trigger PageInst.WaitForLoad() after doing any sort of javascript eval which modifies the page, etc - and have the interval set to 100(Not sure if i changed it from what it is ori...
by Stavencross
02 Jan 2020, 12:13
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 668
Views: 453842

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!

Hey @Stavencross, I have no problem showing you, but there are just quite a few pieces to it. Here is the main Script. Obviously, i wrote alot of CSS/HTML for it as well. The ahk is really just displaying my HTML/CSS and using Chrome.ahk to display and attach to it so i can 'Control' Everything wit...
by Stavencross
21 Dec 2019, 12:15
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 668
Views: 453842

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!

A project ive been working on which is fully built around Geekdudes Chrome.ahk Class. Its amazing! The interface is fully designed with HTML/CSS/Javascript. I use AHK to tie in Excel - where the data is populated from, as well as other resources like internal databases, config files, and do things ...
by Stavencross
02 Sep 2019, 08:10
Forum: Scripts and Functions (v1)
Topic: read CSV to Associative Array
Replies: 3
Views: 3727

Re: read CSV to Associative Array

divanebaba wrote:
23 Aug 2019, 09:13
Hi.
Looks nice, but I prefer and recommend csv.ahk.
Yes, I use that as well! However, I use it for a few other things, in this specific instance I needed exactly to read a csv into a assoc array to work with it, and I thought others might benifit in the future =)
by Stavencross
21 Aug 2019, 15:58
Forum: Scripts and Functions (v1)
Topic: read CSV to Associative Array
Replies: 3
Views: 3727

read CSV to Associative Array

Needed to read a bunch of info from a CSV to an assoc. array. Found https://www.autohotkey.com/boards/viewtopic.php?t=5251 but it didn't handle commas very well so I updated it and reposted it. ;CSVtoDict(file) takes a csv and outputs a dictionary. Took ages as i didn't understand that array.Insert(...
by Stavencross
31 May 2019, 14:37
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 668
Views: 453842

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!

Today I figured out how to exit the script when you exit the browser, useful for running cleanup functions, or if you wanted to run another script when you close the browser. See below. This also shows you how to run chrome.ahk with callbacks & in app mode. It also shows you how you can call AHK fun...
by Stavencross
31 May 2019, 14:24
Forum: Ask for Help (v1)
Topic: ChromeInst.GetPage seems to be failing (Chrome.ahk)
Replies: 13
Views: 4347

Re: ChromeInst.GetPage seems to be failing (Chrome.ahk)

Hello! I am trying to use g33kDude's Chrome.ahk library and I can't seem to instantize the page. Here is my code: #Persistent #SingleInstance, force #NoEnv SetBatchLines, -1 SetTitleMatchMode, 2 SetWorkingDir, %A_ScriptDir% #Include Chrome.ahk SetTimer, createChromeObj, 1000 SetTimer, waitForClose,...
by Stavencross
09 May 2019, 07:03
Forum: Ask for Help (v1)
Topic: Goto meeting automation
Replies: 14
Views: 2882

Re: Goto meeting automation

You need to describe a little better what you want help with. (is "goto meeting" a program or...) Is the invite on the computer or on internet or.. Do you want to make a AHK-script to write an email and send it automatically? Gotomeeting is a video conferencing system. When you install, you can cli...

Go to advanced search