Open/T with multiple file types

I've used Open/D/R/T quite extensively, and read all the info about it I can find, but I'm still confused about how it reacts to multiple file types.

Consider Open/D/R/T=".txt.bin". What I would expect is that all the .txt and .bin files will be selectable when the file dialog first opens. On Mac, the dialog does open with the "All Readable Files" option selected, but in fact none of the files are enabled, regardless of type or extension. In order to enable any files I have to select one specific type. On windows it opens with files of the first listed type enabled, but I still can only enable files of one type at a time. Is there a way to make All Readable Files actually show all readable files?

I'm running 6.05A on Mac, 6.04 on XP. I see from the 6.1 release notes that there have been some improvements to Open, but I can't tell if this is one of them. Maybe my next step should be to upgrade.

Cheers,
David
In Igor Pro 6, it looks like the "All Readable Files" works only with file types ("TEXTIGsU" for text and packed experiment files), not with extensions (".txt.pxp").

In Igor Pro 6.1, there is no "All Readable Files" menu item, just ".txt Files", ".pxp Files" and "All Documents".

In Igor Pro 6.1 you can use the new /F flag, like this:

Function Test()
    String fileFilters = "My Files (*.txt,*.pxp):.txt,.pxp;"
    fileFilters += "All Files:.*;"
    Open /D/R/F=fileFilters refNum
    Print S_fileName
End


For details, in Igor Pro 6.1, execute this:

DisplayHelpTopic "Open File Dialog File Filters"