Unload Loader issues

Sup All //

Here’s the thing. I have several thumbnails in my portfolio that dynamically load a .png file into the Loader component called myLoader.

Followed the tutorial from Kirupa. Simple enough. :slight_smile:

on(release){
    myLoader.contentPath = "1-0.png";
}

Here’s where I’m having my issues. When I (user) goes to click on a different client to view different work, artwork from the current client is still loaded, or being shown. I have the same myLoader Loader spread through the frames.

I tried to put this

on(press){
unloadMovie("myLoader");
}

on each client button to clear the Loader before you go to each section, but that makes it disappear all together, than when you go to click a thumbnail, nothing happens because the Loader is gone.

Is there a way to unload the .png files w/o killing the loader?
Should I use a separate loader for each client? or will that just get messy.

Any suggestions would be well recieved. :slight_smile:

Thanks All