Search found 72 matches

by skyth540
20 Jun 2023, 11:51
Forum: Ask for Help (v2)
Topic: Quickbooks macro
Replies: 0
Views: 196

Quickbooks macro

I am building an autohotkey macro to automate creating paychecks. I am wondering if anyone knows a way to use the keyboard and tab over from each of the areas with input boxes. The tab key just advances along the same region. Ctl Tab doesn't do anything. Pg up and down just scroll I really don't wan...
by skyth540
18 Jun 2023, 22:48
Forum: Ask for Help (v2)
Topic: (literally) Print out a test page every few days to keep printer juicy?
Replies: 3
Views: 412

(literally) Print out a test page every few days to keep printer juicy?

Can AHK natively print paper? I rarely ever use my printer, and I want to "keep it in use" so to say... So I am looking for an app or program on my computer that will print out a test page on a schedule to maintain it My janky solution is to have AHK open up word, paste the test page into it, and th...
by skyth540
09 Jun 2023, 11:58
Forum: Off-topic Discussion
Topic: meme: editors
Replies: 1
Views: 3468

meme: editors

by skyth540
13 Feb 2023, 20:20
Forum: Ask for Help (v1)
Topic: How to get information from a telegram bot? Topic is solved
Replies: 3
Views: 622

Re: How to get information from a telegram bot? Topic is solved

swagfag wrote:
31 Dec 2022, 04:15
can u not spam the forum with babbys first chatgpt prompts?
hey it worked
by skyth540
24 Jan 2023, 23:52
Forum: Ask for Help (v1)
Topic: How to copy a newly made file immediately when it is created?
Replies: 3
Views: 310

Re: How to copy a newly made file immediately when it is created?

#persistent settimer, lbl, 50 lbl: loop, files, %A_ScriptDir%\*.* mt := A_LoopFileTimeModified, max := (mt > max) ? (mt, mostrecent := A_LoopFileName) : max if !(mostrecent = previous) { FileCopy, C:\Users\Skyth\Desktop\squares\blackground copy.jpg, C:\Users\Skyth\Desktop\new return } else { return...
by skyth540
24 Jan 2023, 23:27
Forum: Ask for Help (v1)
Topic: How to copy a newly made file immediately when it is created?
Replies: 3
Views: 310

How to copy a newly made file immediately when it is created?

I have a program that is doing a batch for me, but it is bad at saving so the files it is batching overwrite each other as they are being created. I am looking for a way to watch a specific folder and back up the files dropped in and copy them into another folder, as soon as they are made. its about...
by skyth540
31 Dec 2022, 04:10
Forum: Ask for Help (v1)
Topic: Change Touchpad Sensitivity with AHK?
Replies: 1
Views: 319

Re: Change Touchpad Sensitivity with AHK?

Moderator note: This post’s content (now in a Spoiler) was generated by an AI engine and can safely be ignored. To the poster who posted it: Consider this another warning to stop posting AI-generated content. Continuing to do so will result in the loss of posting privileges. Yes, it is possible to ...
by skyth540
31 Dec 2022, 04:01
Forum: Other Programming Languages
Topic: System tray button count
Replies: 26
Views: 10401

Re: System tray button count

Here is a sample VisualBasic script that displays the count of icons in the system tray by using the TB_BUTTONCOUNT message: Imports System.Runtime.InteropServices Public Class Form1 Private Const TB_BUTTONCOUNT As Integer = WM_USER + 24 Private Const WM_USER As Integer = &H400 Private Const TB_GETB...
by skyth540
31 Dec 2022, 03:56
Forum: Ask for Help (v1)
Topic: Help with a script
Replies: 2
Views: 275

Re: Help with a script

How's this

Code: Select all

#PageDown::

Toggle := !Toggle

If (Toggle)
{
SetTimer, PressKeys, -80
return
}
else
{
SetTimer, PressKeys, Off
return
}

PressKeys:
Send 2
Send ^f
Sleep, 500
Send ^f
Send {D down}
Sleep, 6000
Send {D up}
Send 3
return
[Mod edit: [code][/code] tags added.]
by skyth540
31 Dec 2022, 03:33
Forum: Ask for Help (v1)
Topic: Pls help: Loop Run URLs click an send text
Replies: 2
Views: 285

Re: Pls help: Loop Run URLs click an send text

I'm doing a research project on ChatGPT. I gave it your question and it said: This script will open each URL in the input file in Google Chrome, wait 5 seconds, then click the button with the CSS class "jss243" to open the chat window. It will then focus on the input line, enter the text "This is my...
by skyth540
31 Dec 2022, 03:28
Forum: Ask for Help (v1)
Topic: Hotkeys for RDP focus change
Replies: 1
Views: 495

Re: Hotkeys for RDP focus change

[Mod edit: Moved another part of a ChatGPt experiment behind a spoiler:] I'm doing a research project on ChatGPT. I gave it your question and it said: " It's possible that the issue you are experiencing is due to the way that Remote Desktop handles keyboard input. In general, most keyboard shortcut...
by skyth540
15 Dec 2022, 20:17
Forum: Scripts and Functions (v1)
Topic: Autocorrect anywhere
Replies: 1
Views: 604

Autocorrect anywhere

First of all, total credit goes to aaston86 for the idea and most of the code from this post https://www.autohotkey.com/board/topic/100293-autocorrect-anything/ here is my take on his idea, it seems to work well with most words and phrases I've tried. One thing I wish it did was be faster, any tips?...
by skyth540
15 Dec 2022, 16:42
Forum: Ask for Help (v1)
Topic: How to fix my hotstring? Topic is solved
Replies: 1
Views: 205

How to fix my hotstring? Topic is solved

I don't know how else to have this... I want to have auto correct for a / an for vowels. Ex: "an egg" instead of "a egg" :C?*:a a::an a :C?*:a e::an e :C?*:a i::an i :C?*:a o::an o :C?*:a u::an u But if a word ends with an "a", and the next word starts with a vowel it will trigger. "hypothermia and ...
by skyth540
08 Dec 2022, 17:45
Forum: Ask for Help (v1)
Topic: Why are my variables getting deleted?? Topic is solved
Replies: 3
Views: 391

Re: Why are my variables getting deleted?? Topic is solved

flyingDman wrote:
08 Dec 2022, 12:37
try:

Code: Select all

buhpi := 123
if (buhpi !:= "")
	msgbox % buhpi
then try:

Code: Select all

buhpi := 123
if (buhpi != "")
	msgbox % buhpi


weird. The one without the : makes it work. Why is that?
by skyth540
08 Dec 2022, 12:30
Forum: Ask for Help (v1)
Topic: Why are my variables getting deleted?? Topic is solved
Replies: 3
Views: 391

Why are my variables getting deleted?? Topic is solved

This isn't working anymore, I have no idea what's wrong with it. It checks to see what the text in a fragile text box is, and saves it if it is open and something is in it. #Persistent SetTimer, hpiback, 10000 hpiback: ControlGetText, buhpi, Edit1, Progress Note ;msgbox here tested to have the corre...
by skyth540
17 Nov 2022, 15:56
Forum: Ask for Help (v1)
Topic: Hotstring bug when overwriting highlighted text
Replies: 1
Views: 190

Hotstring bug when overwriting highlighted text

I have been having some problems when I go to type in an abbreviation hotstring while I have text highlighted and I'm writing over (a situation I am in very frequently). It has been random on whether or not it works the way I want. Any tips?
by skyth540
10 Nov 2022, 18:58
Forum: Ask for Help (v1)
Topic: Fast Typing or Invisible Typing Status
Replies: 3
Views: 371

Re: Fast Typing or Invisible Typing Status

Just type in notepad or something and then paste it in


If that's too hard, figure out a way to have a pop up gui that you can type in and then paste from that
by skyth540
10 Nov 2022, 14:28
Forum: Ask for Help (v1)
Topic: Any tips for navigating a list of links?
Replies: 2
Views: 278

Re: Any tips for navigating a list of links?

No idea. It's off the product page for it, though. I have nothing to do with that person if it is
by skyth540
10 Nov 2022, 12:33
Forum: Ask for Help (v1)
Topic: Any tips for navigating a list of links?
Replies: 2
Views: 278

Any tips for navigating a list of links?

I am trying to work around some medical notations software (GEMMS One) https://gdm-catalog-fmapi-prod.imgix.net/ProductScreenshot/262d0860-e45c-40e6-8f34-cdf42f360d01.jpg similar to that screenshot. I think it uses an "internet explorer server" as a back end if that means anything. What I have been ...

Go to advanced search