ActionScript 2.0 :: If Statement - Goto A Random Frame Which Will Play A Movie When The Button "one" Or The Button "two" Is Pressed
Jul 20, 2006
its a gambling game of chance and I want it to go to a random frame which will play a movie when the button "one" or the button "two" is pressed. so on each button, I have the code:
[Code]....
View 7 Replies
Similar Posts:
Jan 29, 2006
I need help with the 'If' statement I want it so when i click a button till the socre gets to 5 I want it to go to another frame.
View 8 Replies
Jan 9, 2006
I'm new to Flash and am looking to use the following tutorial to create an advanced button. I know it is probably a very simple fix, I just cannot figure it out. [URL] In the tutorial the rollover and onrelease has the following script this.onRollOut = function(){ rewind = true;} this.onRelease = function(){getURL [URL]); } I have tried to change the on.Release command to go to and play another frame in to movie instead of opening a new url. But I'm not getting it to work correctly.
View 4 Replies
Aug 27, 2005
What im trying to do is play a movie clip between frames. So say we have two menus, when you are on menu 1 and you click the button for menu 2, a short movie clip plays and then you stop on menu 2. I realise I can do this by putting the movie clip on the main scene timeline, but is there anyway i can put it on the button? I think the action script would be something along the lines of "On release play MovieClip and goto frame X" As i said i want the movie to play as an almost filmic transition between menus, with a fade up and then out (Have got that bit sussed using the alpha controls)
View 3 Replies
May 12, 2011
Soo this is a simple problem, i have a 60 frames movie in a Layer, and another layer with 2 buttons.I want the movie to play foward while one button keeps PRESSED, and to play backward when we keep pressing the other button.i tryed this simple code but it didnt work out.on (press) {nextFrame();}
I used this code in the button that plays foward but it only moves 1 frame. I am realy new a this,
View 6 Replies
Jan 7, 2003
I have a 30-frames mc,each frame has a logo of my client. I want visitors see 30 logos randomly and each logo will pause 2 seconds for viewing.
View 14 Replies
Feb 10, 2011
i am doing a simple project in which i have 2 frames in the main time line and a movieclip in the first frame and a button.i have something else in the second frame.when i click the button the movieclip should start after it ends the timeline should move to second frame and stop.
View 7 Replies
Apr 16, 2011
I have a dial that can be rotated and scrolls between 40 and 210. At the moment, this works all the time. Is there a way of getting this to work only when a button remains depressed?
I've set up a movie clip containing a button that jumps to frame two when pressed, and back to frame one when pressed again. SO the dial needs to work when the movie clip (containing the button) is stopped on frame two, but not on frame 1.
View 7 Replies
Jan 17, 2011
I have a button, labeled "Main1," in a scene, "Main." When I click said button, I want an animation to start. Said animation is a movie clip named "ArrowAnim."Now, I have done something similar before in another project, using a code which I thought would have worked with this movie clip as well. The code I used before (and which worked flawlessly) was:
Code:
on(release)
{
[code]......
View 4 Replies
Dec 16, 2009
I am trying to make a little animation, where when the button is pressed it would take you to a random scene or Keyframe on the animation.
View 3 Replies
Jan 29, 2009
I want to change a variable when a button is pressed. lingo: if this button is pressed then check varexample what number it has if it has a number then gotoAndPlay("example") and add 1 to varexample else, do nothing I'm sure if I get this kind of example down, I'll be able to figure the rest out by myself. =S
View 5 Replies
Feb 12, 2002
anyway to write a piece of code telling a movie to goto a random frame label?
View 4 Replies
Jul 3, 2010
how to code this on a button
onrelease
gotoandplay(10); // i need delay here before activating the next code below//
gotoandplay(80);
the trick is.. i want the button to play frame 10 to 40 then after playing from frame 10-40 the movie stops and then play frame 80 to 100
View 4 Replies
Apr 17, 2004
I have a movie with 4 or 5 scenes. How can i make the movie jump from scene 1 to another scene by clicking on a button?
View 5 Replies
Nov 17, 2009
I have a Flash movie that uses three scenes. In scene one I have a button with some actionscript to take it to a frame label in that first scene and play the movie from that point on. It works fine. The problem is, in the third scene, I am trying the same action with a different button, going to a different frame label in that third scene. I am getting an error saying the frame label does not exist in that scene. Even though it does! I've checked for typos and everything looks fine. I've copied and pasted the simple actionscript from the third scene below. Is there a line I need to add to make this work in a scene that is not the first scene?
rocketstart_btn.addEventListener(MouseEvent.CLICK, rocketbutton);
function rocketbutton(event:MouseEvent):void {
gotoAndPlay("rocket");
}
View 7 Replies
Mar 14, 2003
I have this action on my buttons:
on (press) {
_root.nPage = "company";
AnimationMC.play();
} on (press) {
gotoAndPlay(3);
}
I am trying to have a button change frames on the main timeline (gotoAndPlay X) and also load a MC on the same click. I think what is happening is because the on(press) is separate it is causing my pages to load at different times when I click real fast when AnimationMC is playing. However if I wait for the animation to load first it works %99 of the time.
View 4 Replies
Apr 13, 2006
How I can make a button goto and play a frame of a movie clip. Basically the first frame is blank and when the button is clicked the movie clip will go to frame 2 and play. I'm also going to have some other buttons make it go to other frames.
View 2 Replies
May 18, 2005
What is the actionscript if i want to go to a frame in a movie clip from another movieclip? And also for future reference, how do you go to a frame from a movieclip/button to a frame in the main scene? Is it something to do with root?
View 5 Replies
Oct 8, 2010
I have a car that is a movieclip with 2 frames looping in scene 1 and I want the car to switch to another movieclip when I press the space button and go back to the oroginal car clip when space is released and if possible add a sound when space is pressed.
View 4 Replies
Oct 8, 2010
I have a car that is a movieclip with 2 frames looping in scene 1 and I want the car to switch to another movieclip when I press the space button and go back to the oroginal car clip when space is released and if possible add a sound when space is pressed.
View 1 Replies
Jan 3, 2010
im creating a website, and i have scene 1, which is an enter page to the website, with a button set to 'goto and play scene 2' but it doesnt, it plays scene 3, and then i cant get a button to goto and play scene 2 either.
View 6 Replies
Feb 9, 2010
I have a menu bar at the top and and when i click the different buttons i want to play different movies from the start i.e different pages, and where i used to just type goto and play etc
I have the impression that i cant type straight on the button layer anymore so I need to type the code on an actions layer (right or wrong?)
I think this is nearly the code i need but what do i type to get it to go to a particular movie and frame?[code]...
View 2 Replies
Dec 17, 2009
I'm having a memory lasp. I trying to write for each button to goto and play at a label. what the correct code for that is please.ActionScript 3.
View 4 Replies
Jul 22, 2010
I have a splash page with a logo. When the logo (splash_btn) is clicked I want it goto the site (frame label: home). All my code seems to be right but the button doesnt work.
[Code]...
View 3 Replies
Feb 23, 2011
I have invisible buttons on a movie clip that is loading swfs onto a parent movie clip. I hope I am current in the terminology. Are a parent and root the same? Is saying root absolute and parent relative? I'm digressing. So, this this._parent.gotoAndPlay("contact form"); is going to the keyframe named "contact form" and it will stop there. What I want to happen, is, I want the other invisible button named aboutmeMC2 to go back to the keyframe named "skip" so my contact form will no longer show up and it will load the external swf.
[Code]...
View 5 Replies
Sep 15, 2011
I'm pretty new to AS3 but I want to get my buttons to play the same movie then go to their button function. i.e., Picture button > play movie (same as all buttons) > picture frame.
This is the code on my buttons
ActionScript Code:
stop();
import flash.display.MovieClip;
import flash.events.MouseEvent;
var currentButton:String;
[Code] .....
Then at the end of the movie I tried using a variable to link the button to its frame
ActionScript Code:
stop();
if (currentButton == name) {
content.gotoAndStop("music");
} else if (currentButton == name) {
content.gotoAndStop("book");
} else if (currentButton == name) {
content.gotoAndStop("stereo");
}
I know the scripts messed up but not sure I really get the variable thing as yet.
View 2 Replies
Jun 23, 2008
I have a parent MC with all my content called GUI_MC, and on my timeline I have a Frame labelled "PAGE"
Within the GUI_MC I have a another MC for my navigation (NAV_MC)
In NAV_MC I have a button which I would like to gotoAndPlay the frame "Page" on the GUI_MC
Heres my button code:
on (release){
gotoAndPlay("PAGE");}
What do I need to add to make it goto the parent MC?.
View 1 Replies
Jun 14, 2004
I have three buttons: each one changes a variable to a name: one, two and three and plays the movie.when the movie gets to frame 100, it should get the variable and play the label with the same name of the button...How should be the AS of this frame so it plays to the correct label?
View 1 Replies
May 4, 2011
I am learning Flash on CS3 and I have created a scrolling background image which works great. I found a simple play button that works fine using AS2, I use stop(); on frame 1 and on a separate layer and then on the same layer I have a drawn play button on frame 1 I use this
code
on(release) {
root.gotoAndPlay(2);
}
Works good but now the scrolling animation stops after frame 40. How can i get the animation to be continuous after I hit play?
View 2 Replies
Mar 19, 2006
when button is pressed one mc starts to play. when another button is pressed the first button related mc is smoothly played to the end... after that only second pressed button related mc starts to play...
View 6 Replies