Menu Back Help

  • Hi,

    I am currently using this : http://ffiles.com/view_listing.php?sid=76&cat=4 for the links on my flash website. That Menu Back system works great linking to other HTML pages, but i cannot figure out how to get to point to different frames of my movie once the buttons are clicked. here is the current AS :

    // config name
    name.nomme = "HOME";
    link = "index.html";
    // config but
    this.stop();
    this.onEnterFrame = function() {
    if (voltar == true) {
    this.prevFrame();
    }
    }
    this.onRollOver = function() {
    voltar = false;
    this.play();
    }
    this.onRollOut = function() {
    voltar = true;
    }
    this.onRelease = function() {
    getURL(link);
    }



    Any help would be very appreciated


  • Thank you so much Pablo!


  • Okay, I dont know what is wrong, but even that script doesnt work. :*(


  • I have tried using that new script on the original file I downloaded and it wont work.


  • Just replace the getURL function with a gotoAndPlay method.


  • // config name
    name.nomme = "HOME";
    link = "home.swf";
    // config but
    this.stop();
    this.onEnterFrame = function() {
    if (voltar == true) {
    this.prevFrame();
    }
    }
    this.onRollOver = function() {
    voltar = false;
    this.play();
    }
    this.onRollOut = function() {
    voltar = true;
    }
    this.onRelease = function() {
    loadMovie(link, _root.container);
    }

    or

    // config name
    name.nomme = "HOME";
    // config but
    this.stop();
    this.onEnterFrame = function() {
    if (voltar == true) {
    this.prevFrame();
    }
    }
    this.onRollOver = function() {
    voltar = false;
    this.play();
    }
    this.onRollOut = function() {
    voltar = true;
    }
    this.onRelease = function() {
    gotoAndPlay("Scene 2", 1);
    }







  • #If you have any other info about this subject , Please add it free.#
    Your name:
    E-mail:
    Telphone:

    Your comments:


    If you have any other info about Menu Back Help , Please add it free.

    7 January 2009 | cameltoepants.com | edit