How can I turn the navigation pane on and off in Windows using a hotkey (Autohotkey)?

I would like to turn the navigation pane in Windows on and off automatically, i.e. by pressing a hotkey. Unfortunately, I can't manage that. Since I don't have admin rights on my computer, I'm unfortunately dependent on the ribbon view in File Explorer. Unfortunately, I can't define a shortcut that does the job – not…

How do I send {Alt} via AutoHotKey (AHK)?

I actually have a simple task in Windows 11. Using CTRL+O, AutoHotkey is supposed to first press and release ALT, then send the RIGHT ARROW. Unfortunately, it doesn't work for me. ^o:: Send, {LAlt} Send, {Right} return The following also doesn’t work for me: ^o:: Send, {Alt down} Sleep, 50 Send, {Alt up} Send, {Right}…