- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Pick File FilterList Argument Options
Can someone help me understand the Pick File options and syntax?
1. How can I find the options available for the filter list for Pick File? The Scripting Index shows {"JMP Files|jmp;jsl;jrn", "All Files|*"}, but I've also found {"Excel Files|csv;xlsx;xls", "All Files|*"}. How do I find what options are available?
2. What does the "All Files|*" do? I get the same window with and without it.
Thanks!
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Pick File FilterList Argument Options
I think you can use whatever you want in there. The syntax is (and * seems to be wild card for all file types):
Label|suffix1;suffix2....
You can try and add different combinations to see what you could do:
Names Default To Here(1);
Pick File(
"Select JMP File",
"$DOCUMENTS",
{"JMP Files|jmp;jsl;jrn", "All Files|*", "Minitab|MAC;mtb", "Text|txt;csv;yml;xml;html",
"My custom files|asdad;qwerty;verylongfile"
},
1,
0,
"newJmpFile.jmp"
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Pick File FilterList Argument Options
I think you can use whatever you want in there. The syntax is (and * seems to be wild card for all file types):
Label|suffix1;suffix2....
You can try and add different combinations to see what you could do:
Names Default To Here(1);
Pick File(
"Select JMP File",
"$DOCUMENTS",
{"JMP Files|jmp;jsl;jrn", "All Files|*", "Minitab|MAC;mtb", "Text|txt;csv;yml;xml;html",
"My custom files|asdad;qwerty;verylongfile"
},
1,
0,
"newJmpFile.jmp"
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content