One option is to use Web() command for that
Names Default To Here(1);
nw = New Window("",
Button Box("Open",
Web("$SAMPLE_IMPORT_DATA/Team Results.xlsx")
)
);
nw << journal;
nw << close window;
Run Program() is a good other option but it is more complicated to use
-Jarmo