Search found 125 matches

by Thoughtfu1Tux
23 Sep 2023, 13:02
Forum: Scripts and Functions (v2)
Topic: Snipper - Window Snipping Tool
Replies: 125
Views: 25999

Re: Snipper - Window Snipping Tool

Anyone else run into the following code error randomly when trying to take a snip? I can't seem to figure out the cause of it. Error: This variable has not been assigned a value. Specifically: static W 346: Return { X: X, Y: Y, W: W, H: H, X2: X + W, Y2: Y + H } 349: { ▶ 350: If GetKeyState('Shift',...
by Thoughtfu1Tux
28 Aug 2023, 20:19
Forum: Scripts and Functions (v2)
Topic: [v2-Beta] - QuickLinks
Replies: 16
Views: 4685

Re: [v2-Beta] - QuickLinks

Darkmode menus can be used by adding the followin code on top: ;https://stackoverflow.com/a/58547831/894589 uxtheme := DllCall("GetModuleHandle", "str", "uxtheme", "ptr") SetPreferredAppMode := DllCall("GetProcAddress", "ptr", uxtheme, "ptr", 135, "ptr") FlushMenuThemes := DllCall("GetProcAddress",...
by Thoughtfu1Tux
21 Oct 2021, 20:47
Forum: Scripts and Functions (v1)
Topic: An Alternative Menu (A Quick Access To Various Features)
Replies: 25
Views: 8413

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

You should attach an image/video of what the script does. There's a much higher barrier for people to try out your script when they don't see what it looks like/what it's capable of.
by Thoughtfu1Tux
07 Sep 2021, 22:43
Forum: Scripts and Functions (v1)
Topic: iswitchw mod - Fast window and browser tab switching - Updated Oct 1st, 2023!
Replies: 17
Views: 4311

Re: iswitchw mod - Fast window and browser tab switching

Loving this script! But Firefox got broken by a recent update as well.
by Thoughtfu1Tux
26 Aug 2021, 12:59
Forum: Scripts and Functions (v1)
Topic: Pomodoro
Replies: 2
Views: 1820

Re: Pomodoro

Franktic I like the idea! But having a ticking clock in the foreground of your screen is a bit distracting. An improvement would be minimize the script to the toolbar and have it popup a msgbox when the 25 minutes are up. And maybe when a user hovers over the toolbar icon you can show a tooltip tha...
by Thoughtfu1Tux
17 Jul 2021, 00:52
Forum: Scripts and Functions (v1)
Topic: [Library] Neutron.ahk - AutoHotkey Web GUIs on Steroids (now for v2!)
Replies: 140
Views: 58772

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

Newbie question, but how do i go about appending a checkbox item to the bottom of a checklist with the DOM generation method? I've been playing around with it for about an hour now, have not been able to figure it out. I'm using the SIMPLE example.With no changes. When i click the "Submit" button un...
by Thoughtfu1Tux
11 Jun 2021, 01:53
Forum: Scripts and Functions (v1)
Topic: RunCMD() v0.97 : Capture stdout to variable. Non-blocking version. Pre-process/omit individual lines.
Replies: 247
Views: 87320

Re: RunCMD() v0.94

Hi Skan, thank you very much! This solved my issue. I ran into another one though that i can't seem to figure out. I'm trying to send a POST request with a json object. The command works in powershell itself, but the json object gets ignored when i try it through RunCMD. token = 1725945266:AAG80jx5...
by Thoughtfu1Tux
05 Jun 2021, 08:53
Forum: Tutorials (v1)
Topic: Using Selenium with AutoHotkey- Cross browser automation!
Replies: 172
Views: 169580

Re: Using Selenium with AutoHotkey- Cross browser automation!

I'm having a ton of issues with Chrome 91 as well. I can send to a page, but i cannot read the contents from a page half the time, be it with name,id, or xpath.

Anyone else having this issue?
by Thoughtfu1Tux
30 May 2021, 00:08
Forum: Scripts and Functions (v1)
Topic: RunCMD() v0.97 : Capture stdout to variable. Non-blocking version. Pre-process/omit individual lines.
Replies: 247
Views: 87320

Re: RunCMD() v0.94 : Capture stdout to variable. Non-blocking version. Pre-process/omit individual lines.

Loving this as a replacement to StdOutToVar! Thank you very much. I'm having an issue with passing a filepath with a space to powershell: The command i'm running is: Command = powershell (Get-Item "C:\Program Files\Chromium\Application\chrome.exe").VersionInfo | Select-Object ProductVersion Msgbox %...
by Thoughtfu1Tux
08 Apr 2021, 11:18
Forum: Ask for Help (v1)
Topic: Selenium Chrome - Translating Python Argument into AHK
Replies: 2
Views: 1749

Re: Selenium Chrome - Translating Python Argument into AHK

burque505 wrote:
23 Mar 2021, 15:44
Very very cool! Looking forward to playing around with this, thanks for the share!
by Thoughtfu1Tux
30 Jan 2021, 10:49
Forum: Ask for Help (v1)
Topic: Upload Image to Discord through Webhook API (Will Pay $20)
Replies: 9
Views: 3322

Re: Upload Image to Discord through Webhook API (Will Pay $20)

I don't have any experience with objects at all. How would I convert the following variable into an object?

Given

Code: Select all

InputBox, SelectedFilepath, Filepath, Please Input Filepath

by Thoughtfu1Tux
30 Jan 2021, 10:23
Forum: Ask for Help (v1)
Topic: Upload Image to Discord through Webhook API (Will Pay $20)
Replies: 9
Views: 3322

Re: Upload Image to Discord through Webhook API (Will Pay $20)

This works perfectly, Thank you! How do i pass in the two arguments as variables? I'm missing some important piece here, as passing them in literally doesn't seem to work. Also what do I need to look up to understand the "objParam := {file:...." line? I thought that having a := meant that everythin...
by Thoughtfu1Tux
29 Jan 2021, 23:40
Forum: Ask for Help (v1)
Topic: Upload Image to Discord through Webhook API (Will Pay $20)
Replies: 9
Views: 3322

Upload Image to Discord through Webhook API (Will Pay $20)

Hello, I've spent the last 5 hours banging my head against the wall trying to figure out how to upload an image to the discord API through a webhook. Here is a code sample that show how to embed/attach a image URL to a post I know i have to use multipart/form-data, and i found a sample script that w...
by Thoughtfu1Tux
06 Jan 2021, 13:00
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 170080

Re: Radial menu scripts

@Voidraizer
Thank you so much!! I've made a bunch of internal code changes to RM itself to suit my needs and I would have had to spend hours and hours copying them over to a fresh RM download.
by Thoughtfu1Tux
04 Jan 2021, 17:41
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 170080

Re: Radial menu scripts

Anyone else having RadialMenu crash on them as soon as it starts up? It only started happening in 2021 for me.
by Thoughtfu1Tux
07 Nov 2020, 17:06
Forum: Tutorials (v1)
Topic: Using Selenium with AutoHotkey- Cross browser automation!
Replies: 172
Views: 169580

Re: Using Selenium with AutoHotkey- Cross browser automation!

@burque505
Do you know of away to make schrome_get connect to a second chrome window? Like open up a new window/instance of chrome and connect to that window instead of the first window? They would both be using the same profile.
by Thoughtfu1Tux
01 Nov 2020, 22:36
Forum: Tips and Tricks (v1)
Topic: AHK with Chrome extension (No Selenium, no debug mode, no web connectors)
Replies: 31
Views: 14620

Re: AHK with Chrome extension (No Selenium, no debug mode, no web connectors)

@tadamm

How would i pass variables to the javascript when using your way? I use selenium for billing automation, and i grab a bunch of data from an excel spreadsheet and input it into an online billing form.
by Thoughtfu1Tux
24 Oct 2020, 14:01
Forum: Tutorials (v1)
Topic: Using Selenium with AutoHotkey- Cross browser automation!
Replies: 172
Views: 169580

Re: Using Selenium with AutoHotkey- Cross browser automation!

Figured it out! Needed to replace autohotkey's newline strings with the HTML/universal ones. FileEncoding, UTF-8-RAW ; Needed for special symbols FileRead, Var, C:\Software\Syncthing\AutoHotKey\testing\description.txt ; file contains the "🔴" emoji ; File Contents are 2 lines: ; 🔴 Bitchute: bitchute....

Go to advanced search