well here is my problem and if you go to my site you will be able to see my prob... when you click on solutions my little pic comes up. then when you click on gallery the next pic comes up, but when you go back to solutions you cannot see it, it is behind the gallery pic.. how do i fix this?
There are a couple ways to fix this. The best way would be to use variables. I'm guessing that each of your pics are movie clips. Create a blank frame in each MC, and label it "blank". Give the MCs an instance name, and create variables for each. Your button script would look something like this:
on(release){
_root.gallery=visible;
if (_root.solutions==visible){
_root.solutions.gotoAndStop("blank")
}
}
Make sure you define your variables at the start of the movie:
_root.gallery==blank
_root.solutions==blank