Search found 32 matches

by bl33pingcomputer
27 Feb 2023, 03:52
Forum: Ask for Help (v2)
Topic: Scroll bar by AutoHotkey
Replies: 3
Views: 351

Re: Scroll bar by AutoHotkey

You can use Send("{left}") to scroll left
You can use Send("{right}") to scroll right

You can use Send("{up") to scroll up
You can use Send("{down}") to scroll down
by bl33pingcomputer
27 Feb 2023, 03:28
Forum: Ask for Help (v2)
Topic: [V2.02] MouseMove Doesn't Work As Expected In Dual Monitor Setup
Replies: 4
Views: 1023

Re: [V2.02] MouseMove Doesn't Work As Expected In Dual Monitor Setup

If that is the case, why does the client area fall outside of the active window on the secondary monitor and not the primary? Shouldn't they be the same (i.e. MouseMove(0,0) should take the mouse position to the top left corner of the active window, regardless of which monitor it is on? When I enter...
by bl33pingcomputer
23 Feb 2023, 17:20
Forum: Ask for Help (v2)
Topic: How to make only part of a Window Transparent?
Replies: 3
Views: 383

Re: How to make only part of a Window Transparent?

Thank you boiler, I'll have to see if I can come up with a workaround.
by bl33pingcomputer
21 Feb 2023, 01:21
Forum: Ask for Help (v2)
Topic: How to make only part of a Window Transparent?
Replies: 3
Views: 383

How to make only part of a Window Transparent?

Hello gents, When adjusting the transparency of a window using WinSetTransparent, I would like to be able to specify an area of the active window that will stay visible (i.e. so that I can fade the areas of the window that I don't want to see.) Below is my approach and its not working. I would appre...
by bl33pingcomputer
18 Feb 2023, 08:28
Forum: Ask for Help (v2)
Topic: Strange result from PixelGetColr and Movemouse Topic is solved
Replies: 7
Views: 631

Re: Strange result from PixelGetColr and Movemouse Topic is solved

I believe there is some some type of bug with MouseMove (and similar functions) in AHK V2: I had a dual monitor setup and the MouseMove behaviour was only working correctly on the non-main monitor.
by bl33pingcomputer
16 Feb 2023, 08:43
Forum: Ask for Help (v2)
Topic: Store WinWaitActive Return Value in Variable Topic is solved
Replies: 2
Views: 495

Re: Store WinWaitActive Return Value in Variable Topic is solved

I don't know what I would do without you. Thank you, I will give that a try.
by bl33pingcomputer
16 Feb 2023, 05:38
Forum: Ask for Help (v2)
Topic: Store WinWaitActive Return Value in Variable Topic is solved
Replies: 2
Views: 495

Store WinWaitActive Return Value in Variable Topic is solved

Greetings my fellow automators, I am using WinWaitActive to wait for a window created by the run command. In the documentation, it says that WinWaitActive will return the HWND of the specified window if it becomes active. How do I access and store that return value in a way that I can assign it to a...
by bl33pingcomputer
16 Feb 2023, 05:27
Forum: Ask for Help (v1)
Topic: Transition from AHK 1 to AHK 2.
Replies: 2
Views: 339

Re: Transition from AHK 1 to AHK 2.

Will AHK 1 scripts stop working after the transition? I have a number of clients with AHK 1 scripts. Will there be a tool that can convert v1 scripts to v2 scripts? Will AHK installation update automatically? Will we still be able to access the old AHK? Perhaps someone with more experience can chim...
by bl33pingcomputer
29 Jan 2023, 03:31
Forum: Ask for Help (v2)
Topic: [V2.02] MouseMove Doesn't Work As Expected In Dual Monitor Setup
Replies: 4
Views: 1023

[V2.02] MouseMove Doesn't Work As Expected In Dual Monitor Setup

[Moderator's note: Topic moved from Bug Reports.] Hello gents, I have a dual monitor setup consisting of a 4K monitor connected to a 1080p laptop via HDMI cable. The hotkey below only works as expected for the monitor that is set to the main display. For a window that is not on the main display, it...
by bl33pingcomputer
29 Jan 2023, 02:51
Forum: Ask for Help (v2)
Topic: Unable To Access global xPos & yPos from MouseGetPos
Replies: 1
Views: 314

Unable To Access global xPos & yPos from MouseGetPos

Greetings my fellow AHK compatriots. I am trying to access the x and y coordinates stored as variables xpos & ypos from MouseGetPos in a Hotkey of mine. Unfortunately, despite making xpos and ypos global, I am not able to access them outside of my hotkey function. My code: #SingleInstance Force glob...
by bl33pingcomputer
18 Jan 2023, 07:18
Forum: Scripts and Functions (v1)
Topic: Auto Trade On Any Trade Platform With AHK More Easy
Replies: 8
Views: 8014

Re: Auto Trade On Any Trade Platform With AHK More Easy

nelkovich87 I thought you could trigger market orders simply by setting an order for a certain price? I don't believe you need OCR to get the tickers, I believe you could just access them through an API or webscraping in python (e.g. https://www.geeksforgeeks.org/get-real-time-crypto-price-using-py...
by bl33pingcomputer
17 Jan 2023, 19:41
Forum: Gaming Help (v1)
Topic: help with sleep
Replies: 7
Views: 739

Re: help with sleep

digitalerr0r wrote:
17 Jan 2023, 08:04
ty fixed (=
No problem :superhappy:
by bl33pingcomputer
17 Jan 2023, 07:19
Forum: Gaming Help (v1)
Topic: help with sleep
Replies: 7
Views: 739

Re: help with sleep

I do not know the answer to your question (I wish I did) but I will add that if you enclose your code inside code brackets, it will make it more readable: { $6:: While GetKeyState("6","p"){ PixelGetColor, color, 742, 1341, If (color = 0x6C4C6E) { Send, {q} Sleep 20 } PixelGetColor, color, 741, 1341,...
by bl33pingcomputer
17 Jan 2023, 02:56
Forum: Ask for Help (v2)
Topic: Unable To Send Ascii Codes with Send "{Asc ##}"
Replies: 11
Views: 1895

Re: Unable To Send Ascii Codes with Send "{Asc ##}"

I currently have the space key configured as a hotkey and I wanted to be able to send a space without triggering that hotkey. Use the $ modifier your space hotkey: $Space:: { Msgbox "space pressed" } F3::Send Chr(32) Hotstring is also not triggered by send: :*?: :: { Msgbox "pressed space" } That l...
by bl33pingcomputer
15 Jan 2023, 22:33
Forum: Ask for Help (v2)
Topic: Unable To Send Ascii Codes with Send "{Asc ##}"
Replies: 11
Views: 1895

Re: Unable To Send Ascii Codes with Send "{Asc ##}"

Should this be brought to someone's attention? I'm new to AHK and unfamiliar (but would love to become familiar) with the bug submissions process.
by bl33pingcomputer
15 Jan 2023, 22:29
Forum: Ask for Help (v2)
Topic: Unable To Send Ascii Codes with Send "{Asc ##}"
Replies: 11
Views: 1895

Re: Unable To Send Ascii Codes with Send "{Asc ##}"

I can't get it to work too. Maybe try this: F3::Send Chr(32) That's a really good workaround to know, thank you for sharing. It did work but not quite the way I wanted it to. I currently have the space key configured as a hotkey and I wanted to be able to send a space without triggering that hotkey...
by bl33pingcomputer
15 Jan 2023, 03:43
Forum: Ask for Help (v2)
Topic: Unable To Send Ascii Codes with Send "{Asc ##}"
Replies: 11
Views: 1895

Unable To Send Ascii Codes with Send "{Asc ##}"

Hi there, unfortunately I have been having trouble figuring out how to send ascii codes. Here's my code: F3::Send "{Asc 32}" At the moment it isn't sending anything. I've tried multiple different ascii codes. I reviewed the documentation and it seems like it should work: https://i.imgur.com/YAAV4sP....

Go to advanced search