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

Discussion & Support for xplorer² professional

Moderators: fgagnon, nikos, Site Mods

Post Reply
User avatar
pschroeter
Silver Member
Silver Member
Posts: 283
Joined: 2007 Jan 27, 00:46

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

Post 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.
User avatar
nikos
Site Admin
Site Admin
Posts: 15771
Joined: 2002 Feb 07, 15:57
Location: UK
Contact:

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

Post 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
Post Reply