Hi Paul,

Thank you for your input. I need to review a very large database and want to minimize the user interaction with GUI and also reduce the amount of time needed to to do this task.
Any advice is really appreciated.

Thanks you!

On Tue, Nov 17, 2015 at 4:53 AM, paul mccarthy <[log in to unmask]> wrote:
Hi Mahmoud,

Unfortunately this is not possible in FSLView, and is not a common feature in any GUI application.

Why do you want to do this? There might be other ways to accomplish what you want.

Cheers,

Paul

On 16 November 2015 at 19:46, / Mahmoud / <[log in to unmask]> wrote:
Dear experts,

I want to open and instance of FSLview and then load a sequence of images into it through a bash script. How can I close the currently loaded dataset (i.e. what is the equivalent of Ctrl+w) and then load another dataset without trying to kill and open FSLView inside a loop ?

Below is the pseudo-code I tried to describe:

fslview

for i in name_list; do

         load ${i} into FSLView
         wait for user input # This is something I know how to do
         close ${i} in FSLView
done

Thank you,