Page 1 of 1

question on folder view settings

Posted: 07 Apr 2012 19:00
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:

Re: question on folder view settings

Posted: 07 Apr 2012 19:24
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

.

Re: question on folder view settings

Posted: 09 Apr 2012 21:42
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:

Re: question on folder view settings

Posted: 13 Apr 2012 11:12
by admin
Comes with next version.

Re: question on folder view settings

Posted: 13 Apr 2012 22:59
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

Re: question on folder view settings

Posted: 14 Apr 2012 10:30
by admin
Ok... :)

Re: question on folder view settings

Posted: 14 Apr 2012 17:27
by neutrox
The setting FVS is not working.

Re: question on folder view settings

Posted: 14 Apr 2012 17:34
by admin
neutrox wrote:The setting FVS is not working.
In what way it is not working?

Re: question on folder view settings

Posted: 14 Apr 2012 17:52
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.

Re: question on folder view settings

Posted: 14 Apr 2012 18:13
by admin
Works fine here:

Code: Select all

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

Re: question on folder view settings

Posted: 14 Apr 2012 18:15
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.

Re: question on folder view settings

Posted: 14 Apr 2012 18:56
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.

Re: question on folder view settings

Posted: 15 Apr 2012 20:29
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!