• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

gotoAndPlay on hover... What's missing?

Community Beginner ,
Feb 21, 2020 Feb 21, 2020

Copy link to clipboard

Copied

I have a symbol that I want to scale using the timeline when it's hovered. I can't figure it out.

 

Please check out the screenshot >>  https://i.stack.imgur.com/ar02p.jpg

 

var frequency = 3;
stage.enableMouseOver(frequency);
this.bitez_main.addEventListener("mouseover", fl_MouseOverHandler_1);

function fl_MouseOverHandler_1()
{
this.bitez_main.bitez_over.gotoAndPlay(2);
}

 

 

TOPICS
ActionScript , Code , How to , Timeline

Views

436

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Beginner , Feb 22, 2020 Feb 22, 2020

I have used Animate's code wizard and it worked!

This is the code that's generated

 

var _this = this;
/*
Mousing over the specified symbol instance executes a function.
'3' is the number of the times event should be triggered.
*/stage.enableMouseOver(3);_this.main_mc_bitez.on('mouseover', function(){
/*
Moves the playhead to the specified frame number in the timeline and continues playback from that frame.
Can be used on the main timeline or on movie clip timelines.
*/_this.main_mc_bitez.gotoAndPl
...

Votes

Translate

Translate
LEGEND ,
Feb 21, 2020 Feb 21, 2020

Copy link to clipboard

Copied

When things aren't working, always re-examine your assumptions. Put this in your mouseover handler:

alert(this.bitez_main);

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Feb 22, 2020 Feb 22, 2020

Copy link to clipboard

Copied

I removed that line for the sake of this question. The alert comes fine. The movieclip doesn't run.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Feb 22, 2020 Feb 22, 2020

Copy link to clipboard

Copied

LATEST

I have used Animate's code wizard and it worked!

This is the code that's generated

 

var _this = this;
/*
Mousing over the specified symbol instance executes a function.
'3' is the number of the times event should be triggered.
*/stage.enableMouseOver(3);_this.main_mc_bitez.on('mouseover', function(){
/*
Moves the playhead to the specified frame number in the timeline and continues playback from that frame.
Can be used on the main timeline or on movie clip timelines.
*/_this.main_mc_bitez.gotoAndPlay(2);
});

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines