Page 27 of 28

Re: Website and Help Typos

Posted: 21 Jan 2024 20:06
by jupe
I noticed you mention you are adding the regex info to the help file, so while you are making changes I thought I'd mention that in the SC get section of the help file a few of the cmds aren't in alphabetical order eg.

saveonexit/MenuCaption/previewhandler/XYCopy_pending also UsedSpace/thumbnailprovider, but since those relate to the above items I can sort of understand why they are positioned where they are.

Also I noticed that SC filetime doesn't list valid entries for the "type" param, so some users may not know what values it accepts.

Re: Website and Help Typos

Posted: 21 Jan 2024 20:11
by admin
alphabetical order: I think I already fixed that in the current version. :?

filetime: whoops :tup:

Re: Website and Help Typos

Posted: 21 Jan 2024 20:17
by jupe
whoops, looked at slightly older help ver. :oops:

Re: Show file icon on thumbnail

Posted: 20 Oct 2024 04:36
by kiwichick
The Help file says "Check to show the small file icon in the top-left corner of the thumbnail" but the icon is in the bottom-left corner of the thumbnail.

Re: Website and Help Typos

Posted: 21 Oct 2024 11:00
by admin
:tup:

Re: Website and Help Typos

Posted: 31 Oct 2024 14:14
by james8865
In the help file -- In view menu > view menu commands > for "Selected items to top" it is written as -- in one spot to easier do,which is not written correctly

Re: Website and Help Typos

Posted: 02 Nov 2024 19:16
by james8865
In help file -- For "Default to repeat action on collisions",you have written the same thing 2 times,it is -- affects Custom Copy/Move, Backup

Re: Website and Help Typos

Posted: 02 Nov 2024 20:06
by admin
:tup:

Re: Website and Help Typos

Posted: 25 Dec 2024 12:59
by PeterH
In XY help, as well in .pdf help, the section /script says (at it's very end):
Tip: see the tip below about "piping" …
But that tip is in section /feed, several pages above.

Not knowing what it's about you can need quite some time to find it.

Re: Website and Help Typos

Posted: 25 Dec 2024 17:05
by admin
:tup:

Include button background information with ctbicon

Posted: 28 Dec 2024 00:34
by kiwichick
Not a typo but a suggestion for the Help file.

Custom button backgrounds can be used with sc ctbicon, for example:

Code: Select all

ctbicon("Apple.ico*#F6F6F6,r");
It would be handy to include that information in the ctbicon section of the Help file.

Re: Website and Help Typos

Posted: 28 Dec 2024 10:09
by admin
:tup:

Re: Website and Help Typos

Posted: 23 Feb 2025 13:15
by altoclef
Following my introduction to dereferencing, I think there's a small omission in the help:idh_scripting.htm#idh_scripting_dereferenceoperator

Code: Select all

$var = '$a'; *$var = "TEST"; echo "*$var, $a!";  //TEST, TEST!
This is only true after aid 1;, which is neither the default nor is set in the fragment. Perhaps that one example, which is the only one using interpolation, could be moved to after the statement
Note that dereferencing is also supported ... aid command.
together with an aid 1; statement.

Code: Select all

aid 1; $var = '$a'; *$var = "TEST"; echo "*$var, $a!";  //TEST, TEST!

Re: Website and Help Typos

Posted: 23 Feb 2025 15:54
by admin
Oh yes, thanks!

Re: Website and Help Typos

Posted: 23 Feb 2025 22:34
by Malarki
I suggest that the Help for SC "CopyTo" mention or even better show that the "Source" can be a string variable which itself is a delimited list of "name-w-path" items. The Source examples show single and multiple name-w-path items, but not the use of such a variable.

Someone fluent in scripting might just assume that this would work, but I wasn't sure until I thought of doing it and then tried it. Great because it let me build my string via various loops and then copy everything at once.