ActionScript 2.0 :: Make One Button To Play & Stop Movie?
Jun 2, 2006I want to make one button to play & stop my movie! what is the code?
View 14 RepliesI want to make one button to play & stop my movie! what is the code?
View 14 Repliesgive me the actionscript for a bar that has a play and stop button to play and stop frames in a flash movie. i would be gratefull if you could as i am really stuck
View 2 RepliesI am trying to connect audio to the button so when I click on the button music it starts playing and when clicked again music stops.
View 5 RepliesI'm trying (and failing it seems) to teach myself Action script and I'm having a really tough time with what I'm sure is something that quite easy to do. Basically I have one button. When this button is pressed I'd like it play a movie. When the button is pressed again I'd like to stop playing the movie. In the first frame of the movie I've put a stop action so that it doesn;t repeat itself when it finishes playing. In the last frame of the movie I've put gotoAndStop(2); In my main timeline I have 2 layers each of which has one frame. The button is one layer and the movie on the other.
[Code]...
Normally, I want the movie to play the tween that spans from 25 to 35, then stop UNLESS a button has been clicked back on frame 24 - then I want the tween played from 25 to 35 then jump to 46.Problem is, in the button function code, if I have...gotoAndPlay(25); gotoAndPlay(46);the timeline jumps straight to 46 - it doesn't play 25-35. Why?I tried putting a timer in between the two gotoAndPlays, but itignored that too and jumped to 46.o how do I tell it - 'play from 25-35 and stop, unless but_a was pressed back on Frame 24 - then play 25-35, and then play 46' ?
View 7 Replieswhat is the script in CS4 to make a button play a movie?I have a button that opens each page as a movie. To align the movie I use a blank movie.I have been using the below....what replaces it in CS4?
View 1 RepliesNeed the action script that makes a button (when rolled over) play a movie. I have a stop action in the first frame of the movie and know to point the action FROM the button to the second frame, but I need the rest of the script.
Imagine four buttons next to each other, each, when rolled over, make text movies fade in and out when user rolls off the buttons. Each text movie would play in the same spot on the page.
I have a very simple fla i built, all i need is the hover "over" stage to play this tween. On the keyframe I made it a symbol, movie clip. In there all the tweens are set exactly. It seems if you wanted motion on a stage,you would just put that clip on the over stage. I uploaded the fla file: [URL]
View 6 Repliesi need to make a certain movie clip play when i press a button.
View 4 RepliesI wanted to make play button. Kind of this huge one in the middle of the screen as users used to see on YouTube.Here is the code for it which seems to work:
play_btn.addEventListener(MouseEvent.CLICK, onClick_Play);function onClick_Play(event:MouseEvent) :void {
SWF_flv2.play();
[code].....
I have a movie clip on a scene with a button inside. How can I make this button to go to play frames on the scene but not inside the movie clip in AS3.0?
View 7 RepliesI just got Flash CS3. I'm trying to get my main timeline to stop in the begining, on button press to play and at the end stop again. In AS2, you would just put stop(); on the first keyframe and stop(); on the last key frame and program your buttons accordingly.
The stop(); does not work!!!! It's driving me crazy. What am I missing? I've gone through the tutorials in Flash and they don't work either.Also, if you have MovieClip that contains an animation and you don't want the movie clip to be on a continuous loop how do you stop it from playing. In AS2, I would put a stop(); on the last keyframe of the movieclip's animation. This also does not work in AS3.
How do I make a button rotate or a movieclip play onRollOver without stopping or changing background movie
View 1 RepliesI have created two buttons for separate audio files. Essentially if you click on the button it will play and stop. This works great! I have also injected a SoundMixer.stopAll(); to ensure if you click between both buttons that it will stop the current audio file to play the next one. My problem is when I select the 2nd button for the first time everything seems to be working...it's when I attempt to click on the first button again, that it will require 2 clicks and then it stops and plays accordingly...anyone know how I could eliminate this annoying two click process?
[Code]...
I want a movie clip (let's call it homecontent_MC) with 100 frames play to frame 80 and stop.Then when someone clicks a button on the navigation bar (home, about, services, contact, etc...) homecontent_MC would then begin playing from it's position (frame 80) til it reaches 100, at which point it wouldn't be on screen, and the movie clip that corresponds to the navigation button press (say services_MC...) would start from frame 1 and continue til it stops at it's frame 80...
View 7 RepliesMy work need me create this flash:
When movie(flv) stop, one "continue" button appears, so you can click on it to go to next page.
I can't believe how impossible it has been to find info about this. I'm sort of a beginner with actionscript, but this shouldn't be as hard as I'm finding it to be.
I'm using AS2. I have an ordinary FLV video playing with one of the skins that comes with the Flash software (CS3). That all works perfectly fine. What I need to do, however, is add a large "PLAY" button over top of the movie. I have made that work also. But, I need the button to disappear when the movie starts playing, because it is obviously in the way and making it hard to view the video.
Some forums suggested making that button disappear when it is clicked. That would be fine, except that the video player skin also has a play button, and if someone clicks that button instead of my new large button, I still need the large button to disappear.
So what I'm trying to figure out how to do is something like: if the FLV is playing, make this object (the button) disappear or become invisible. This can't be that difficult!
im using this code for my movie to pause for a certain time and then it play every after 5 seconds
stop();
var nInterval = setInterval(Play, 5000);
function Play() { clearInterval(nInterval); gotoAndPlay(_currentframe+1);}
[code].....
i started with a Multiple mp3 players project and i more complicated with that - as you see in the picture i try to do that when click on the play button for every song this switch the song that selected -first preloading + percentage the mp3 file and after play it immediately and of course there is stop button, pause button when choose a song the previously that play will be muted
View 4 RepliesI have two buttons for paly and stop movie.
It is possible to only use ONE button ...
EXample
When click PLAY , stop btn is on
When click Stop, Play btn is on.
My file: [URL]
make the sound play first and then stop it?
var music:Sound;
var trans:SoundTransform;
var channel:SoundChannel;
var musicOn:Boolean = true;
[code]...
I have a nested movie clip (image sequence) that I use the code snippet from Flash CS5 to GoToAndPlay. The Movie Clip loops continuously. How do I get it to play once and stop. I've tried the snippet for GoToAndStop, I've tried stop(); in my 'Actions' layer. I've tried a stop(); in the last frame of my nested sequence. I've tried a stop at the end of the function but nothing stops the darn thing. It keeps going and going and going.
Here is my typical code that loops....
stop();
btn3.addEventListener(MouseEvent.CLICK, cd_ClickToGoToAndPlayFromFrame);
function cd_ClickToGoToAndPlayFromFrame(event:MouseEvent):void {
gotoAndPlay(1); }
btn4.addEventListener(MouseEvent.CLICK, ef_ClickToGoToAndPlayFromFrame);
function ef_ClickToGoToAndPlayFromFrame(event:MouseEvent):void {
gotoAndPlay(10); }
There are two(2) buttons on the page, basically and back and forward button, and the image sequence is nested in a movie clip in this case at frame (1) and another nested movieclip at frame (10). How can I make it play once and stop on the last frame of the nested clip?
Let's say I would want to use the frameScript method to add some stop and play methods to some frames.
Normally I would declare the stop function:
private function $FUN_FrameStop():void {
stop();
[code].....
I'm making a movie where I want the movie to stop at particular frames.
I know I can use stop(); for that one.
Next I want the movie to start again after a mouse click or any key being pressed on the keyboard until I want it to stop again at another frame. Then start the same process.
I'm trying to make a slideshow type thing so you can understand why I want to do that.
What's the actionscript for this one? I don't want to involve any buttons?
I just want to play and stop my movie on a key click.I don't want to have the drop menu open and have the user click 'play'. Isn't there some way they can just press any key and the animation will progress forward?
View 4 Replieswhen i play the movie and click on any ball it shows the subpage one by one continuously rather than to stop as per the number of their page order.
View 4 RepliesI've set up my flash movie to play and stop at certain frames in the movie. I'd like to add a pause button to pause the movie anywhere in the timeline or animation and then resume from spot it's paused on. This is for a presentation.
View 1 RepliesI have five different scenes all including three different buttons. When I test the buttons in "play scene" - all buttons sounds correctly in all scenes. But when I play movie, there is sound only with one button (the same button in every scene). I have looked for differences, but this button seem to have all the same parameters as the others.
View 10 RepliesI am using flash CS4 AS 2.0.creating a button to stop the music on click and play the music on the next click. Sort of on and off music.
View 12 RepliesI follow this tutorial to T and try look on google but can't answer to this one all want button do play movie and stop when click on the button .here my actionsript 3.0 code can you please tell me what i'm doing wrong.
Quote:
go.addEventListener(MouseEvent.CLICK, startplaying);
function startplaying(event:MouseEvent):void {
[code]...
here error getting in flash cs4 when try test movie
1120: Access of undefined property Puase 1120: source Puase.addEventListener(MouseEvent.CLICK, stopplaying);