FileSelectFolder - Navigation Problem

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
WantToKnow
Posts: 64
Joined: 28 Mar 2020, 08:46

FileSelectFolder - Navigation Problem

Post by WantToKnow » 01 Dec 2021, 09:12

Hello,

Code: Select all

FileSelectFolder , outputvar, % A_ScriptDir  ; Navigation impossible, but comfortable
FileSelectFolder , outputvar ; Navigation possible, but uncomfortable
If I choose a preselected folder for this AHK-Command,
it's virtually impossible to navigate through other folders.

What can I do?
Thanks

User avatar
boiler
Posts: 17039
Joined: 21 Dec 2014, 02:44

Re: FileSelectFolder - Navigation Problem

Post by boiler » 01 Dec 2021, 09:39

Try a * preceding the path which allows you to navigate upward from the starting folder as described in the documentation. Like this with the forced expression:

Code: Select all

FileSelectFolder , outputvar, % "*" A_ScriptDir

Post Reply

Return to “Ask for Help (v1)”