Skip to main content
December 7, 2007
Question

what am i doing wrong? (fla included)

  • December 7, 2007
  • 2 replies
  • 218 views
Hi

i made a flash with a rollover button (the first green arrow on the left) and a callout image.

When i move my mouse down, all is well.
When i move up to the callout, an ugly loop appears. How do i fix this?

fla link: http://www.legendid.ee/anim.fla

The only script i used besides stop(); :

on (rollOver) {
this.gotoAndPlay (2);
}

on (rollOut) {
this.gotoAndPlay (10);
}


This topic has been closed for replies.

2 replies

December 7, 2007
will try it! thnx
December 7, 2007
You're getting that loop, because your "speech bubble" is acting as your button aswell.

As the speech bubble closes, it hits your mouse pointer, which tells it to open, when it opens, it moves off your mouse pointer which tells it to close.. and so on...

change your layout... get your speech bubble to open outside your button's timeline.