Skip to main content
Known Participant
December 14, 2009
Question

Navigation wont work

  • December 14, 2009
  • 1 reply
  • 561 views

Hi. Im trying to figure out why the navigation is not working in this file. No errors are found and still the external SWF files are not loading. Can  somebody help me find what could be the problem?

This topic has been closed for replies.

1 reply

kglad
Community Expert
Community Expert
December 14, 2009

show the code you're using for one of your buttons.

juanddiazAuthor
Known Participant
December 14, 2009

this.over = false;

btmenu.onRollOver = function ()

{

    if (this._parent.over != true)

    {

        this._parent.over = true;

        this._parent.play();

    } // end if

};

btmenu.onRollOut = function ()

{

    this._parent.over = false;

    this._parent.play();

};

btmenu.onRelease = function ()

{

    _root.moteur.getMenu(6);

};

kglad
Community Expert
Community Expert
December 14, 2009

do your rollovers/rollouts work as expected?

if no, you have a path/reference problem.  if yes, what's _root.moteur.getMenu(6)?