Fix my code. Button that toggles a button press and a mouse press.

global toggle = 0 ; Create a Toggle variable

RCtrl:: ; Assign the Toggle a Hotkey toggle := !toggle ; This is the toggle command; it says to change the toggle value when you press the hotkey if (toggle = 1) ; Things under here (in the curly braces) will happen if the toggle is 1 { ; Play the audio file at this file path SoundPlay, C:\Users\nathsnow\Desktop\Project Hotkey\R2D2 Sounds\R2-d2-notification_sound-1446237.mp3
MsgBox, 48, , Work From Home Active ; Display a message box with the Active toggle setting Title
} else if (toggle = 0) ; Things under here will happen if the toggle is 0 { ; Play the audio file at this file path SoundPlay, C:\Users\nathsnow\Downloads\excitedrtwo.mp3 MsgBox, 48, , Office Mode Active ; Display a message box with the Active toggle setting Title } return

;; C:\Users<yourUserName>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup PrintScreen:: if (toggle = 1) { SoundPlay, C:\Users\nathsnow\Desktop\Project Hotkey\R2D2 Sounds\Zelda_Ringtone.mp3 Run Outlook sleep 3 Run "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" "https://app.chime.aws/rooms/3decaecc-9143-4a85-8be0-9378be03f96a" Run "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" "https://adscentral.corp.amazon.com/" "https://adscentral.corp.amazon.com/status_history" "https://corp.quip-amazon.com/c4UzAZkXAcqe#dIO9CAXE8ji" "https://mail.google.com/mail/u/0/#inbox" "https://atat.amazon.com/atat/" "https://quip-amazon.com/BPh2AhzbE9Zj" "https://wiki.labcollab.net/confluence/display/Doppler/Project+Hotkey" "https://issues.amazon.com/" "https://quip-amazon.com/WTciA6aJ7I4a" "https://mee6.xyz/dashboard/359478397342187521" "https://nadekobot.me/commands" "https://www.reddit.com/r/DiscordDungeons/" sleep 3 Run OneNote Run C:\Program Files\AutoHotkey\SciTE\SciTE.exe } if (toggle = 0) { SoundPlay, C:\Users\nathsnow\Desktop\Project Hotkey\R2D2 Sounds\Zelda_Ringtone.mp3 Run Outlook sleep 3 Run "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" "https://app.chime.aws/rooms/3decaecc-9143-4a85-8be0-9378be03f96a" Run "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" "https://adscentral.corp.amazon.com/" "https://adscentral.corp.amazon.com/status_history" "https://corp.quip-amazon.com/c4UzAZkXAcqe#dIO9CAXE8ji" "https://mail.google.com/mail/u/0/#inbox" "https://atat.amazon.com/atat/" "https://quip-amazon.com/BPh2AhzbE9Zj" "https://wiki.labcollab.net/confluence/display/Doppler/Project+Hotkey" "https://issues.amazon.com/" "https://quip-amazon.com/WTciA6aJ7I4a" "https://mee6.xyz/dashboard/359478397342187521" "https://nadekobot.me/commands" "https://www.reddit.com/r/DiscordDungeons/" sleep 3 Run OneNote Run C:\Program Files\AutoHotkey\SciTE\SciTE.exe } return

/r/AutoHotkey Thread