How can we goto next Scene by giving code on a button inside
a movie clip.

in short.
=>Scene 1.
====>MovieClip
======>Button [ on(release) { gotoAndPlay("Scene 2", 1); } ]

=>Scene 2.

This thing is not working. Please tell me the answer of how
to goto next scene from this scene 1.





Answers were Sorted based on User's Feedback



How can we goto next Scene by giving code on a button inside a movie clip. in short. =>Scen..

Answer / guest

HI guy i domt know as2 .

In as3 just use
MovieClip(root).movieclip.button.addEventListener(MouseEvent.CLICK,function(e:Event){
})

Is This Answer Correct ?    6 Yes 3 No

How can we goto next Scene by giving code on a button inside a movie clip. in short. =>Scen..

Answer / dinesh anand

Hi
In scene2 Timeline Fix a label named "scene2PLAY"
Then Copy and Past the below code in ur button
on(Release){
_root.gotoAndPlay("scene2PLAY")
}

Is This Answer Correct ?    2 Yes 2 No

How can we goto next Scene by giving code on a button inside a movie clip. in short. =>Scen..

Answer / samuel jackson

Try to write this code on different layers don't write code on button itself as MovieClip loader doesn't undestand the instance name for different scenes.for eg.
Scene 1 ---> Layer 1 ----> create a movie clip name = mc1
Layer 2 ----> write this code:
stop();
mc1.onRelease = function() {
gotoAndStop("Scene 2",1);
}
the code which you had mentioned is applicable for buttons not for movie clips.

Is This Answer Correct ?    3 Yes 4 No

How can we goto next Scene by giving code on a button inside a movie clip. in short. =>Scen..

Answer / anilreddykalluri

Button.addEventListener(MouseEvent.CLICK,function Name);
function Function Name(e.MouseEvent)
{
gotoAndStop(Scene2);
}

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Flash Action Scripting Interview Questions

Write a function for a button.

0 Answers  


What are the functions used with flash media?

0 Answers  


what are the properties can be used to control the order in which the user can tab through the elements in a flash movie? : Adobe flash

0 Answers  


Explain what does the void function and object contain in actionscript?

0 Answers  


Tell me what are the different ways in which the variables can be assigned?

0 Answers  






How to add event listeners in mxml components.

0 Answers  


what is the purpose of the break statement? : Adobe flash

0 Answers  


which code should be added to create a second blue square to the right of the first? : Adobe flash

0 Answers  


you have a video project that would best be served by using full screen mode. This needs to be done from within the browser, since you are not able to use a projector. Which publish settings should you use? : Adobe flash

0 Answers  


what are the statements is true about actionscript in regards to the enforcement of private scope and public scope? : Adobe flash

0 Answers  


How to download Flash object embeded in HTML Page?

3 Answers   Siber, US Software Corporation,


how does an xmlsocket server know when a received message is complete? : Adobe flash

0 Answers  


Categories