Page 1 of 1

A simple way to toggle Tree > "Keep Synchronized With Folder In Active View Pane"

Posted: 2021 Apr 14, 17:25
by pschroeter
I would like a simple way to toggle Tree > "Keep Synchronized With Folder In Active View Pane" that doesn't require going into the Options dialog. I tried to create a macro to toggle it but I have a problem reaching the right tab in the Options dialog, plus I can't get it to accept OK and close the dialog. I want a keyboard command that toggles it that I could attach to a toolbar button.

I was thinking it would be nice if the Folder Tree had a little thumbtack (like the Preview Pane) or some other icon that does this.

Re: A simple way to toggle Tree > "Keep Synchronized With Folder In Active View Pane"

Posted: 2021 Apr 15, 05:59
by nikos
the tricky bit is operating the tab control, which isn't handled by the macro recorder

Code: Select all

COMMAND 32974 # options
WAITWND
findclass SysTabControl32
select 2 # page2
FINDWND "keep synchroni&zed"
SETCHECK 2 # flip
OK