Is there a way to have different file selection commands for two menu items in the same '%mn' structure ?
E.g.
integer :: wint integer, external :: load_file_type_a, load_file_type_b
wint = winio@('%mn[Load files[Load file type a, Load file type b]]', load_file_type_a, load_file_type b)
Where to fit in the '%fs' and '%ft' commands here ? I can't insert them into the '%mn' command to apply separately to file types a and b. But if I write them both before the above line, the second one will just replace the first one and then apply to both menu items.
Thanks Rainer