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

Animation does not function after the button linked to the scene.

Guest
Dec 09, 2015 Dec 09, 2015

Hi. I have problem regarding my buttons in my Adobe Flash project. The button was linked to this one page, but once the user click the button, nothing happen on the scene which was supposedly to have animations. It just happen to few parts of the project not the whole project. Anyone know how to solve this? Thank you so much.

TOPICS
ActionScript
1.3K
Translate
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 Expert ,
Dec 09, 2015 Dec 09, 2015

if you have a button that changes the current frame to frame 100, all movieclips that are in a keyframe at frame 100 will play from their start.  all movieclips that are in a non-keyframe at frame 100 will not necessarily play.

Translate
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
Guest
Dec 09, 2015 Dec 09, 2015

i am sorry but can you explain it more simpler? i dont understand. sorry. thank you.

Translate
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 Expert ,
Dec 09, 2015 Dec 09, 2015

make sure the problematic frame contains a keyframe in the layer that holds the problematic movieclip.

Translate
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
New Here ,
Jul 19, 2016 Jul 19, 2016

I have the same problem and my buttons does not change anything, simply sends to the next scene. and yet it doesn't work. The program stays in the first frame and does not move.

Translate
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 Expert ,
Jul 19, 2016 Jul 19, 2016

create a test fla with a button.  can you get the button to respond to input?

Translate
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
New Here ,
Nov 15, 2016 Nov 15, 2016

Hi kglad​

I have the same problem with the persons above. I would like to make my button to move to the previous scene but it doesn't works.

stop();

var HomeC:HomeCa = new HomeCa();

HomeC.addEventListener(MouseEvent.CLICK, prvscene);

function prvscene(event:MouseEvent):void {

gotoAndPlay(1,"cover");

}

Could you please take a look at my coding and tell me what is wrong with it?

Translate
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 Expert ,
Nov 16, 2016 Nov 16, 2016
LATEST

use the trace function to confirm prvscene is being called.

if it is, you don't have a scene named 'cover' or your code is working correctly and you don't recognize that.

Translate
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