u/Queenofdragons6

What's the line for having a script run only when Microsoft Edge is the active window?

I know the basic line (#HotIf WinActive("[x]", )), but I'm not sure what I should put to have Microsoft Edge be that window.

reddit.com
u/Queenofdragons6 — 10 days ago

Looking for games where you must regularly avoid deadly sunlight

Doesn't matter whether the sunlight is deadly to everyone or to just you, or whether you can't go out at all or just have to be careful if you do.

V Rising is a good example, I think; The Alters would technically count but isn't really what I'm looking for; No, I'm Not a Human wouldn't count as hiding from the sun is more of a narrative thing than a gameplay mechanic.

reddit.com
u/Queenofdragons6 — 29 days ago

Looking for games about digging up and assembling dinosaur skeletons

Reviving them is optional. Mainly looking for PC games, though I'll hear out ones playable on the 3DS or Vita, as long as it's fun.

(The Fossil Fighters series is fun, but you're not really assembling the fossils and I'm looking for something without combat. And Dinosaur Fossil Hunter, while technically fitting the criteria, isn't all that fun.)

reddit.com
u/Queenofdragons6 — 2 months ago

Need help fixing script that scrolls mouse wheel up and down

I'm trying to edit a v1 script for v2 that will, when a certain window is active, begin endlessly scrolling the mouse wheel up and down at the press of a button and stop scrolling at the press of the same button. I managed to edit the script so that it activates only when that particular window is active and scrolls the mouse wheel when I press the button...but it doesn't stop scrolling when I press the button again.

I can't put in a function to pause the script as it has another function in it that needs to operate independently of the other.

Here's what I currently have:

#Requires AutoHotkey 2.0
#HotIf WinActive("[Window]", )

s::
{ 
static Toggle := 0
Loop
{
Click("WheelUp")
Click("WheelDown")
Sleep(50)
}
return
} 

(The sleep function is so that it's not scrolling too quickly.)

reddit.com
u/Queenofdragons6 — 3 months ago

Need help with making script to click mouse and press key every some seconds

I would like to make a script that, upon a button press, clicks the mouse once every second and presses the "d" key once every five seconds. However, it's been over two years since I made a script for Auto Hotkey, and that was with v1, so I'd like some help with making a script for v2.

reddit.com
u/Queenofdragons6 — 3 months ago