FileselectFolder, Folder,*%A_AppData%\, 3

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
cgx5871
Posts: 315
Joined: 26 Jul 2018, 14:02

FileselectFolder, Folder,*%A_AppData%\, 3

Post by cgx5871 » 30 Sep 2022, 07:51

The currently folder must be scroll bar drop down for a long time to find it in tree.
Is there a way to focus on this folder appear

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

Re: FileselectFolder, Folder,*%A_AppData%\, 3

Post by mikeyww » 30 Sep 2022, 08:41

Code: Select all

SetTimer, Enlarge, -250
FileSelectFolder, dir,*%A_AppData%, 3
Return

Enlarge:
WinWaitActive, Browse For Folder,, 4
If !ErrorLevel
 WinMove,,, 150, 150, 1500, 900
Return

cgx5871
Posts: 315
Joined: 26 Jul 2018, 14:02

Re: FileselectFolder, Folder,*%A_AppData%\, 3

Post by cgx5871 » 30 Sep 2022, 16:13

1500, 900
too Large.....
is there anyway. like Sendmessage

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

Re: FileselectFolder, Folder,*%A_AppData%\, 3

Post by mikeyww » 30 Sep 2022, 16:19

Others here may know, or you could alter the numbers to fit what you need, right?

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

Re: FileselectFolder, Folder,*%A_AppData%\, 3

Post by boiler » 30 Sep 2022, 17:15

Try FileSelectFolderEx() or this inelegant method that I posted (if inelegant works, I'm not too proud to use it :D).

Post Reply

Return to “Ask for Help (v1)”