Search found 30 matches

by ozzynotwood
29 Apr 2023, 22:43
Forum: Other Utilities & Resources
Topic: How to create FTP server for URLDownloadToFile?
Replies: 2
Views: 1542

How to create FTP server for URLDownloadToFile?

Hello! I would like to create a script that uses URLDownloadToFile to download updates for scripts that are loaded to PC's at multiple locations (Home, Laptop, Work). The idea is to have a separate update script on each PC that overwrites the main script. The good news is I can already do this howev...
by ozzynotwood
01 Apr 2023, 19:37
Forum: Ask for Help (v1)
Topic: Online text editor for use with UrlDownloadToFile Topic is solved
Replies: 9
Views: 793

Re: Online text editor for use with UrlDownloadToFile Topic is solved

You can do something similar on Box & Dropbox, though Box may require a premium account. On Dropbox, you can upload & download your INI file at will. You can also create a link to the file such that it will be downloaded. The URL is like the following. https://dl.dropboxusercontent.com/s/[fileID]/t...
by ozzynotwood
01 Apr 2023, 18:50
Forum: Ask for Help (v1)
Topic: Online text editor for use with UrlDownloadToFile Topic is solved
Replies: 9
Views: 793

Re: Online text editor for use with UrlDownloadToFile Topic is solved

I don't think that is the issue. The question is whether an online editing service hosts text files and also provides a URL for downloading the hosted files. Of course, if you have a file server, then you can just use FTP. This is the correct context, thanks for clarifying for other readers. FTP wo...
by ozzynotwood
01 Apr 2023, 02:38
Forum: Ask for Help (v1)
Topic: Online text editor for use with UrlDownloadToFile Topic is solved
Replies: 9
Views: 793

Online text editor for use with UrlDownloadToFile Topic is solved

Hello! I want to create an AHK project where AHK uses "UrlDownloadToFile" to download INI files. The idea is my script (on multiple PC's) can receive updates on INI file information without having to do manual updates on each PC. This update would be a complete file overwrite at the point of downloa...
by ozzynotwood
25 Oct 2021, 01:58
Forum: Ask for Help (v1)
Topic: Trimming the left & right sides of a string Topic is solved
Replies: 9
Views: 1308

Re: Trimming the left & right sides of a string Topic is solved

flyingDman wrote:
24 Oct 2021, 12:34
@ozzynotwood note, your selected solution only works if there is " - " within the text to be captured.
I will keep this in mind as I learn this, thanks for the tip!
by ozzynotwood
24 Oct 2021, 02:17
Forum: Ask for Help (v1)
Topic: Trimming the left & right sides of a string Topic is solved
Replies: 9
Views: 1308

Re: Trimming the left & right sides of a string Topic is solved

winTitle := "Cin7 | Edit Sales Order - Stop Slow Traffic - SSLO620-81 - Google Chrome" Parts := StrSplit(winTitle, " - ") MsgBox, % Format("{2} - {3}", Parts*) ;Stop Slow Traffic - SSLO620-81 Thankyou, I went with this version as it was the smallest. It worked & I'll go to the docs to find out what...
by ozzynotwood
23 Oct 2021, 17:08
Forum: Ask for Help (v1)
Topic: Trimming the left & right sides of a string Topic is solved
Replies: 9
Views: 1308

Trimming the left & right sides of a string Topic is solved

Hello! Been working on this for a while & not getting anywhere. For use in other things, I need to get & modify a WinTitle for use in an emails subject line so the subject line makes sense to the receiver. I need to remove the first 26 characters & last 16 characters of the Win Title. I can remove t...
by ozzynotwood
10 Sep 2021, 03:53
Forum: Ask for Help (v1)
Topic: Executing labels based on contents of a array Topic is solved
Replies: 2
Views: 329

Executing labels based on contents of a array Topic is solved

Hello everyone, I've been working on this for a while & have taken it as far as I can. I've gone through the docs & while I have tried some things, I haven't found a specific article on executing labels based on the contents of an array. Friend plays a poker game & runs an external card analyser cal...
by ozzynotwood
31 Jul 2019, 05:16
Forum: Ask for Help (v1)
Topic: Using PostMessage with Spotify.exe
Replies: 4
Views: 1766

Using PostMessage with Spotify.exe

Hello. The following code works to control Spotify (Downloaded from the Spotify Website, not the Microsoft store). I can't find any information about finding the other values that will let me control volume & anything else. Can somebody please educate me on how to find these values so I can expand o...
by ozzynotwood
13 Jul 2019, 05:38
Forum: Ask for Help (v1)
Topic: trying to make a word replacer script
Replies: 2
Views: 643

Re: trying to make a word replacer script

I don't think you can create hotstrings dynamically the way you have tried. But you could look at the Hotstring() function (AHK v1.1.28+): "Creates, modifies, enables, or disables a hotstring while the script is running." Perhaps the example script "Hotstring Helper" can be useful for you, too... h...
by ozzynotwood
13 Jul 2019, 05:13
Forum: Ask for Help (v1)
Topic: trying to make a word replacer script
Replies: 2
Views: 643

trying to make a word replacer script

Hello I'm trying to make a word replacer script that allows me to type a hotstring & replacement text into a GUI. Storing the data works but the hot-string is unresponsive. I've tried a few variations of the script below, all of which I didn't save but I've been at it for a few hours now & all my at...
by ozzynotwood
08 May 2019, 06:18
Forum: Ask for Help (v1)
Topic: Check for active window
Replies: 2
Views: 1958

Re: Check for active window

Close, it activates discord but does not select the text field, so no text is sent. It ok though, my requirements have changed, will come up with a new script & post any issues soon. I don't have discord in this pc, should fix yours at home this afternoon. Meanwhile, I'd not use #ifWinActive this ti...
by ozzynotwood
08 May 2019, 03:23
Forum: Ask for Help (v1)
Topic: Check for active window
Replies: 2
Views: 1958

Check for active window

Hi everyone I'm having trouble with this script. I want to trigger the compiled EXE with Touch Portal ( https://www.touch-portal.com ). For those who don't know what this is, it is a software version of a Stream Deck. This software has it's own features but I am using it to launch EXE files. I want ...
by ozzynotwood
05 Apr 2019, 21:43
Forum: Ask for Help (v1)
Topic: Code works with notepad, not worth Opera
Replies: 1
Views: 503

Code works with notepad, not worth Opera

Hi everyone! This works...... #SingleInstance, force SetWorkingDir %A_ScriptDir% CoordMode, Mouse, Screen SetTitleMatchMode, 2 Run, notepad.exe,,, MyBrowser1 WinWait, ahk_pid %MyBrowser1% WinMove, ahk_pid %MyBrowser1%,, 0, 0, 750, 750 This doesn't move the Opera window..... #SingleInstance, force Se...
by ozzynotwood
05 Apr 2019, 16:50
Forum: Forum Issues
Topic: Not getting email notifications
Replies: 10
Views: 5298

Not getting email notifications

Hello,

I'm not getting email notifications when people reply to my posts. I have my profile set up to receive notification when some replies but I don't receive anything. I also have my inbox set to not filter emails.

Any ideas?

Mod edit: Added a title to the post
by ozzynotwood
05 Apr 2019, 09:35
Forum: Ask for Help (v1)
Topic: delete the subfolders within "New Folder" Topic is solved
Replies: 1
Views: 559

delete the subfolders within "New Folder" Topic is solved

Hi everyone, I had a look at the docs, googled & used discord but couldn't get an answer on this one. What needs to be changed here so this script will delete the subfolders within "New Folder". I don't want to delete the "New Folder" itself, just the files & subfolders within it. The current code o...
by ozzynotwood
28 Mar 2019, 04:18
Forum: Ask for Help (v1)
Topic: Hotkey not sending data from INI (previously worked)
Replies: 0
Views: 479

Hotkey not sending data from INI (previously worked)

Hi everyone! I'm an beginner user of AHK creating a some automation for a specific IT helpdesk. My script previously worked however after many updates the "Mouse Hotkeys" (MButton & Letter) have stopped sending the data shown in the GUI. I don't know at which point this happened. The code will no do...
by ozzynotwood
25 Jan 2019, 20:03
Forum: Ask for Help (v1)
Topic: I need help writing the EPIC DISCORD PINGING MACHINE
Replies: 2
Views: 1187

Re: I need help writing the EPIC DISCORD PINGING MACHINE

Is this so you can be a pest on Discord?

Go to advanced search