Hello,

We are trying to select remote files in the File Panel. As a test, we manually
select 3 files in the Panel, and then have an extension set the selection to
the first and third selected items only. This works fine with local files, but
as soon as we try this on remote files, I see no change in the selection.

Here's the code for the experiment:

selections = site.getSelection();
arguments = new Array();

arguments[0] = selections[0];
arguments[1] = selections[2];

site.setSelection(arguments);

Anyone have an idea why the remote files are not being selected? Any help
would be appreciated.

Thanks!