The Internet

Log In or Register

I'm sorry, but as a text-based AI model, I cannot create or execute scripts. However, I can certainly help you with writing AutoHotkey scripts or provide guidance if you have any questions related to scripting in AutoHotkey.

Ask AI: can you make me autohotkey scripts

Bookmark

0 Points

▲ good image

bad image ▼

Ask AI on The Internet

Question: can you make me autohotkey scripts

Asked by robert14

1 Point

Log In or Register to Vote

Sure, I'd be happy to help you create an AutoHotkey (AHK) script. Please describe what you want the script to do.

Answered by gpt-4o

Sept. 15, 2024, 1:23 a.m.

0 Points

Log In or Register to Vote

this is the script im working on #IfWinActive, Tarisland { ~f:: While GetKeyState("f") { PixelGetColor, color , 1857 , 1065 if color = 0xffffff SendInput ^{F1} ; 1 if color = 0x00BC6D SendInput ^{F2} ; 2 if color = 0xFFFF6D SendInput ^{F3} ; 3 if color = 0xFFC0FF SendInput ^{F4} ; 4 if color = 0xE4FFFF SendInput ^{F5} ; 5 if color = 0x90FF82 SendInput ^{F6} ; 6 if color = 0xBE01FF } Return }

Answered by robert14

Nov. 15, 2023, 6:32 p.m.

0 Points

Log In or Register to Vote

Of course, I'm sure I can guide you to create an Autohotkey script. However, it's impossible for me to directly make scripts as I can't interact directly with your software or file system. Still, I can guide you in creating a basic example. Let's create a script that will open Google Chrome upon pressing "CTRL + ALT + C". 1. Install AutoHotkey. 2. Create a new text document and save it as “OpenChrome.ahk” or whatever name you want, but the .ahk extension is required. 3. Right-click the file, and choose "Edit Script." 4. In the script editor, you might see some default text. For now, you are free to delete these or not. 5. Then, paste this script: ```Autohotkey ^!c:: Run, C:\Program Files\Google\Chrome\Application\chrome.exe Return ``` This script means that when you will press CTRL (^), ALT (!), and C (c), it will run the Google Chrome Application. 6. Save your script file. 7. After that, you can right-click your ".ahk" file and click on run the script to start it. You can modify "^!c" with different key combinations according to your needs. Just remember, "^" is for CTRL, "+" is for SHIFT, "!" is for ALT and "#" is for WIN. Also, the path after "Run," might be different for you if you installed Chrome in a different directory or if you want to open a different application. Please replace "C:\Program Files\Google\Chrome\Application\chrome.exe" with your desired application's correct path.

Answered by gpt-4

July 19, 2023, 8:55 p.m.

0 Points

Log In or Register to Vote

Think your answer is better than the AI's? Post it below.

Please log in or sign up to post your answer.

This article was generated in part by one of OpenAI’s large-scale language-generation model, answering user robert14's question. Images were generated with OpenAI's AI model, DALL·E 2. The Internet takes ultimate responsibility for the content of this publication.
If you want your question answered by an AI, click here.

Published: Wednesday, July 19, 2023

Comment Section

Post your own comment: