question on folder view settings

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
neutrox
Posts: 194
Joined: 05 Mar 2012 15:23

question on folder view settings

Post by neutrox »

Is it possible to control folder view settings using sc setting?

F.V.S. is very useful but gets annoying whn one can't have control over it on a script execution. :eh:

Stefan
Posts: 1360
Joined: 18 Nov 2008 21:47
Location: Europe

Re: question on folder view settings

Post by Stefan »

I don't know.
But if it is possible you would find something in the help

Scripting Commands Reference
> get view
> setting

and

Scripting
> Scripting by Numbers

(Get that Numbers from menu "Tools > Customize Keyboard Shortcuts..." > Category "View"
or from menu "Help > List All Commands...")




1111

.

neutrox
Posts: 194
Joined: 05 Mar 2012 15:23

Re: question on folder view settings

Post by neutrox »

I tried echo get("#471"); so i could grab a return i could use to check the current state of the toggle. There's no such a thing, unfortunately. :roll:

admin
Site Admin
Posts: 66366
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: question on folder view settings

Post by admin »

Comes with next version.

neutrox
Posts: 194
Joined: 05 Mar 2012 15:23

Re: question on folder view settings

Post by neutrox »

I suppose the expected corresponding sc setting FolderViewSettings is still missing...? :roll:

Code: Select all

"FolderViewSettings" is not a known parameter of command "setting".
setting
folderviewsettings

admin
Site Admin
Posts: 66366
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: question on folder view settings

Post by admin »

Ok... :)

neutrox
Posts: 194
Joined: 05 Mar 2012 15:23

Re: question on folder view settings

Post by neutrox »

The setting FVS is not working.

admin
Site Admin
Posts: 66366
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: question on folder view settings

Post by admin »

neutrox wrote:The setting FVS is not working.
In what way it is not working?

neutrox
Posts: 194
Joined: 05 Mar 2012 15:23

Re: question on folder view settings

Post by neutrox »

Not changing FVS in any way. Tested everything. Manually changing changes echo get("#471");, changing by script command does not do anything at all.

admin
Site Admin
Posts: 66366
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: question on folder view settings

Post by admin »

Works fine here:

Code: Select all

//
  echo get("#471"); // 1
  setting "enablefolderviewsettings", 0;
  echo get("#471"); // 0

neutrox
Posts: 194
Joined: 05 Mar 2012 15:23

Re: question on folder view settings

Post by neutrox »

actually the setting is being changed, admin. Only thing it's not being updated on the GUI nor perceived by the get command if it's ran from the addy bar.

admin
Site Admin
Posts: 66366
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: question on folder view settings

Post by admin »

neutrox wrote:actually the setting is being changed, admin. Only thing it's not being updated on the GUI nor perceived by the get command if it's ran from the addy bar.
To change it permanently use command settingp.

neutrox
Posts: 194
Joined: 05 Mar 2012 15:23

Re: question on folder view settings

Post by neutrox »

admin wrote:
neutrox wrote:actually the setting is being changed, admin. Only thing it's not being updated on the GUI nor perceived by the get command if it's ran from the addy bar.
To change it permanently use command settingp.
Now I see the difference. Thanks!

Post Reply