I am having trouble using the pick file command, in particular the filterList argument, and unfortunately, the scripting index does not cover my case.
I want to set the filter to only csv (or Text files) during selection, as I can when using Open, and tried
Names Default To Here( 1 );
mypath = Pick File(
"Select csv File",
{"Text Files|txt;csv"}
);
but when executing the script, the filter is set to *.*| All Files, which is not what I want.
Has somebody a link for me where I can find all possible valid arguments for the filterList (in the scipting index, I can only find "JMP Files|jmp;jsl;jrn", "All Files|*")?
Is there a way in JMP to get all possibilities of an argument of a function, like it's, e.g., done in the online Matlab help?