idk how to script this: every time I press spacebar, both spacebar and o would be pressed at the same time

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
PhorKroniX
Posts: 1
Joined: 27 Jan 2023, 00:01

idk how to script this: every time I press spacebar, both spacebar and o would be pressed at the same time

Post by PhorKroniX » 27 Jan 2023, 00:04

so i was trying to script something to where every time id press spacebar both spacebar and o would be pressed at the exact same time, i know it must be simple but i need the script for it. Thank you!!
Last edited by gregster on 27 Jan 2023, 01:10, edited 1 time in total.
Reason: Topic moved from 'Forum Issues'.


User avatar
mikeyww
Posts: 26891
Joined: 09 Sep 2014, 18:38

Re: idk how to script this: every time I press spacebar, both spacebar and o would be pressed at the same time

Post by mikeyww » 27 Jan 2023, 07:10

Code: Select all

#Requires AutoHotkey v1.1.33
$Space::Send {Space down}o{Space up}

Code: Select all

#Requires AutoHotkey v2.0
$Space::Send '{Space down}o{Space up}'

Post Reply

Return to “Ask for Help (v1)”