Page 5 of 27

Re: Website and Help Typos

Posted: 17 Apr 2015 12:22
by zer0
Not a typo, but a glitch nonetheless. Spot the difference:

http://www.xyplorer.com/product.php

Image

http://www.xyplorer.com/highlights.php

Image

Re: Website and Help Typos

Posted: 17 Apr 2015 14:51
by bdeshi
Also the tour page can [and should] have it's own tab here: http://www.xyplorer.com/support.htm . Right now this has no tab (like highlights) and opens as a sibling tab of products/featurelist.

Re: Website and Help Typos

Posted: 17 Apr 2015 18:01
by admin
It's on purpose: I half-buried those pages because they have so many old screenshots. :whistle:

A major site relaunch is in the making...

Re: Website and Help Typos

Posted: 18 Apr 2015 08:24
by bdeshi
:kidding:
admin wrote:A major site relaunch is in the making...
That's good news.

Re: Website and Help Typos

Posted: 20 Apr 2015 14:01
by bdeshi
::help 'idh_scripting_comref.htm#idh_sc_confirm';

"Pops message box with OK/Cancel, returns result." -- is no longer true. Perhaps: "Pops message box with specified buttons, returns an integer identifying pressed button."

"return 1 on OK, 0 on Cancel; exceptions see Buttons above." -- is redundant now. Perhaps just: "return See Buttons above."

Also: ~ "Default button index of initially focused button, counting from left/1: [Default] First button/2: Second button, and so on."

Re: Website and Help Typos

Posted: 28 Apr 2015 10:21
by calude
Preview v13.00: http://www.xyplorer.com/release_13.00.htm

the release date is copy/pasted wrong

XYplorer 13.00 has been released on 26-Sep-2013. Here's a quick introduction to the main new features:

Re: Website and Help Typos

Posted: 28 Apr 2015 10:31
by admin
:? I don't see it.

Re: Website and Help Typos

Posted: 28 Apr 2015 11:26
by calude
I see it

Re: Website and Help Typos

Posted: 28 Apr 2015 11:52
by admin
Yes, but the date is correct.

Re: Website and Help Typos

Posted: 06 May 2015 10:31
by highend
return

Used only in a Custom Column script: Defines the cell data and ends the script.

Syntax

return data

data Data to show in the cell.

Example

Displays the first 12 characters of the content (!) of each file:
return readfile(<cc_item> , , 12);
Should be reworded to include it's use case in functions.

Re: Website and Help Typos

Posted: 13 May 2015 14:24
by TheQwerty
It would be nice if help's index included "tab sets" as an alternative keyword for "tabsets".

Re: Website and Help Typos

Posted: 13 May 2015 16:20
by admin
OK. :)

Re: Website and Help Typos

Posted: 08 Jun 2015 14:09
by highend
Syntax

savethumb(file="<curitem>, thumbnail_file="*_thumb", widthbox, heightbox, format="jpg", border_width)
Shouldn't each param be enclosed in square brackets because they're all optional?

file="<curitem> is missing the closing quotation mark.

Re: Website and Help Typos

Posted: 08 Jun 2015 15:11
by Stef123
I also have problems understanding where width and height come into the picture, not physically but syntax-wise, the help manual says they're "variables of the thumbnail_file argument". However, so are widthbox and heightbox and yet they are listed in the overall scheme of things *headscratch* :?

Re: Website and Help Typos

Posted: 15 Jun 2015 11:05
by admin
Stef123 wrote:I also have problems understanding where width and height come into the picture, not physically but syntax-wise, the help manual says they're "variables of the thumbnail_file argument". However, so are widthbox and heightbox and yet they are listed in the overall scheme of things *headscratch* :?
Like this:

Code: Select all

savethumb(, "*-<width>x<height>", 400, 400, "jpg");