A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: This is about the buttons at my site....

Hybrid View

  1. #1
    Junior Member
    Join Date
    Dec 2000
    Posts
    18

    Post This is about the buttons at my site....

    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?


    by the way my site is

    http://codedesign.20m.com

  2. #2
    Senior Member
    Join Date
    May 2001
    Posts
    169
    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

    This should get you going in the right direction!

    nice design...

  3. #3
    Junior Member
    Join Date
    Dec 2000
    Posts
    18

    thanks....

    thanks for the help

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center