ActionScript 2.0 :: Simple Play And Stop Button?

Jan 23, 2007

I simply created an movieclip called it themusic as instance and put a sound init Now on the firstframe i added these actions, the problem is the music just keeps going , it has no effect

the code

Code:

play_btn.onPress = function ()
{
trace('playing' + themusic);
//themusic.stopAllSounds();

[code].....

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Bar - Play And Stop Button To Play And Stop Frames In A Flash Movie

Dec 1, 2004

give 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 Replies

ActionScript 3.0 :: Simple Stop And Play Keyboard Control

Aug 31, 2009

needless to say, new to as3... What I want to do is control start and stop of stage playhead with keyboard control. What I have so far is the stop control, but cant figure out the play. I have tried setting a var and boolean, but am doing something wrong =(
// heres my code

[Code]....

View 2 Replies

Recommend Simple Streaming Music Player With Just Play - Pause And Stop?

Feb 24, 2010

I just need something simple, where there is only pause, play and stop buttons. I usually load the music within the flash movie and play from there, but I would like to build one where if you press play, the music loads and plays streaming on the spot. I have got a couple of more complex streaming style mp3 players but I would like to use a simplified streaming version. Any recommendations or code that I can just add to a button?

View 1 Replies

ActionScript 2.0 :: Simple Audio Player With Stop / Play / Pause Buttons?

Jul 8, 2011

I'm struggling with a script to make a simple audio player. I'm loading the audio externally, using loadMovie. I have three buttons on stage ("Stop","Play", and "Pause"). First two work nicely, problem is the third one. here are the actions for the three buttons:

STOP button - Working

ActionScript Code:
on (press) {
audioContainer.unloadMovie(10);
}

[code]....

BTW, the external movie clip contains an audio track inside a movie clip. Any ideas how to make the thrid button to "pause" the audio?

View 8 Replies

ActionScript 3.0 :: Get Main Timeline To Stop In The Beginning On Button Press To Play And At The End Stop Again?

Feb 1, 2008

I 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.

View 9 Replies

ActionScript 3.0 :: Play / Stop Button - Current Audio File To Play The Next One

Feb 27, 2012

I 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]...

View 1 Replies

ActionScript 2.0 :: Simple Play MC Button?

Jan 8, 2010

I have a button thats inside a move clip which works great.

on (press) {
_root.croatia.gotoAndPlay(2);
}

Once croatia has played a few frames it stops. I would like the user to click on the button again to close Croatia by jumping to frame 1, or by rewinding to frame 1.trying to achive this using AS instead of creating another frame in the timeline?

View 5 Replies

Simple Flv Player With Play Button For Website

May 1, 2009

I am oriented around html/css webdesign, and graphic design in photoshop, but know nothing of Flash, and i am attempting to learn!I have found a lot of complex tutorials but none that fit my specification. All i need to know is how to make an interface incorporating a play button which plays a .flv file. I already have a .flv file ready and the graphic i want to use for the button, but no idea how to begin.The .flv i want to play is a short 3-4 minute clip of someone talking including audio - i dont know the best way to play it and have heard of different options including embedding or somehow linking to an external flv file.I have tried various tutorials to try to achieve a simple interface with play button - i dont need a skin, rewind, forward, etc, just a play button and for it to go away while the video is playing, and perhaps a pause/stop button in the corner of the swf, over the top of the flv file itself. But I have had no success, mainly due to errors within the actionscript.

View 17 Replies

ActionScript 3.0 :: Play The Timeline With A Simple Button?

Sep 23, 2009

direct me to a simple technote on how to play the timeline with a simple buttonexample:in AS2 you could attached script to button something like

on MouseEvent {
gotoandplay(6);
}

[code].....

View 4 Replies

Flash 8 :: Simple Button Navigation - Play / Pause MovieClip

Apr 15, 2010

I have a movieclip within the main clip called "playPause" which starts with the Pause button shown. When clicked the movie clip moves to show the play button and pauses the current parent movie with the AS "_parent.stop();" when the play button is then pressed the movie plays via "_parent.play();" and reverts back to showing the pause button.

Simple so far. What is getting me is if I add a movie clip within the parent (say some scrolling object) I cannot get the added clip to pause. For example say the "parent" movie clip the playPause moveclip is within is called "intro" and the moving object is called "introObject" which is embedded in a frame along with "playPause"

What I have setup for the playPause buttons is for pausing
_root.introObject.stop();
and playing
_root.introObject.play();

View 1 Replies

Professional :: Adding A Simple Pause/play Toggle Button?

Jun 8, 2010

I have encoded a video to make a .flv for my site, I want to add a simple pause/play toggle button for the flv, does anyone know what code I need to add to a button to get it to work? I don't want to use the default skins and can't seem to find away to get it to pause / play??

View 2 Replies

Actionscript 2.0 :: Multiple Mp3 Players - Stop Button , Pause Button When Choose A Song The Previously That Play Will Be Muted

May 8, 2010

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 Replies

Professional :: Play/stop Button Change Into One Button?

Mar 9, 2010

I 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]

View 1 Replies

ActionScript 3.0 :: Make A Simple Flash Mp3 Player With A Play/pause Toggle Button Called Toggle_btn

Jan 14, 2011

I'm trying to make a simple flash mp3 player with a play/pause toggle button called toggle_btn. The button is actually a MovieClip with two buttons inside it: play_btn and pause_btn, which live in different places on the MovieClip's timeline. That all works fine, and when I press the play/pause button for the first time, my music plays as expected.

However, when I press it again to pause, it keeps right on playing. If I push it again, the button gets all glitchy, and doesn't go into its rollover state when it should nor toggle when clicked.

Here's my ActionScript:

Code:
// load the playlist
var getFile:URLLoader = new URLLoader(new URLRequest('songs.xml'));
var numSongs:int = 0; // number of songs in playlist -- we'll set this later

[Code]....

View 3 Replies

Create A Button To Stop And Play Music?

Dec 23, 2009

I 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 Replies

ActionScript 3.0 :: Can't Get Play And Stop Button To Work

Jan 3, 2010

I 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);

View 7 Replies

Professional :: Stop A Button Over An FLV That Continues To Play?

Jan 25, 2010

I'm trying to fade in a button over a looping video clip however, it fades in and disappears after a few seconds. I tried adding stop() to the button but it stops the whole movie instead of just the button.

View 1 Replies

ActionScript 3.0 :: Play / Stop Sound On One Button?

Jan 27, 2011

When you click the first time on the button, it should start the song, when you click a second time on the button, it should stop the song. how do i make this with actionscript 3?

View 1 Replies

ActionScript 3.0 :: Creating A Stop And Play Button?

Feb 20, 2011

I am using Flash CS5 and our professor from school has asked us to do a simple project for this weekend however I have been having so much trouble I have no idea what to do. He want's us to create an animation in flash and to use 2 buttons. One that will stop the animation and another that will play the animation. So this way as the animation is playing I can click stop and then click play at random times and the animation will stop or play.I have a buttons layer with 2 buttons on the same layer. One is called start and the other is called stop. I have a seperate layer with a movie clip I created of a moving polygon that goes from one side of the screen to the other. After creating the movie clip I double clicked on the object and created my animation in the new viewer that popped up. Now I have clicked scene 1 and it took me back to my main timeline.
 
Lastly I have an actions layer with nothing but code. I have made sure to type all my code by right clicking on this 1st frame and going to click actions. Then I typed in my code. Please note that each layer only has 1 frame as they were all edited individually by me double clicking on the object.After inserting the code I have I go to test the movie but get all these compiler errors. What am I doing wrong? Here is my code and the errors I keep getting.[code]

View 4 Replies

ActionScript 3.0 :: Stop Then Press A Button To Play

Dec 1, 2009

I'm having the worst time figuring this out... Here is the movie I made: [URL] and I want it to stop, then when i press that circle, continue with the animation. right now i have a stop(); on frame 19 the button is named myBtn I have tried all kinds of myBtn.onRelease = Play() but when I do that, i get errors and it no longer stops...

View 7 Replies

ActionScript 2.0 :: Stop A Button Over An FLV That Continues To Play?

Jan 25, 2010

I'm trying to fade in a button over a looping video clip however, it fades in and disappears after a few seconds. I tried adding stop() to the button but it stops the whole movie instead of just the button.

View 9 Replies

ActionScript 2.0 :: Same Button To Play / Stop MovieClip

Feb 18, 2007

I have an MC which plays when movie is loaded. I have a button which I want to use to stop the MC playback. Then when it has stopped, have the same button to make it play.

Well my code went like this:
if (roller.stop = true) {
btn.onRelease = function (){
roller.play();
}} if (roller.play = true){
btn.onRelease = function () {
roller.stop();
}}

View 1 Replies

Track Stop Playing When Press The Play Button

Jul 11, 2011

I'm looking for some help regarding stopping sounds in Actionscript 3. Basically I'm making an interactive story game, basically a quiz game. On the main menu I have a narrator talking. What I basically want to do is have the track stop playing when you press the play button. I have the soundtrack playing already and the play button too. I just can't figure out how to get the sound to stop when I press the play button and it goes to the next scene.

[Code]...

View 2 Replies

ActionScript 1/2 :: Control Animation With A Play And Stop Button?

Jun 18, 2009

I want to control my animation with a play and stop button .

View 1 Replies

Loop A Video With A Play/stop Button In The Middle?

Aug 21, 2009

I have a .mov file and I want to simply encode the video (i assume with flash media encoder) to be a flash file which loops continuiously with a Play/stop button. I'll then have this movie playing on my html page.

View 1 Replies

Actionscript 3.0 :: Play/stop Button In A FLASH XML Gallery?

Oct 7, 2010

I have a flash image-gallery which uses data from XML. I have a previous and next button working, so I can go to the next and previous image. Now I like to have a play and stop(pauze) button in my navigation.

This is my code:

Code: Select all//variabelen
var xmlRequest:URLRequest = new URLRequest ("content.xml");
var xmlLoader:URLLoader = new URLLoader (xmlRequest);
var currentIndex:Number=0;

[Code].....

View 3 Replies

ActionScript 2.0 :: Basic Button To Play / Stop Movie

Sep 2, 2004

I'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]...

View 5 Replies

ActionScript 2.0 :: Make One Button To Play & Stop Movie?

Jun 2, 2006

I want to make one button to play & stop my movie! what is the code?

View 14 Replies

ActionScript 2.0 :: Get A Play/stop Function To Work In One Button?

Apr 15, 2009

I am trying to get a play/stop function to work in one button. I know how to stop the play head and start it again with two separate buttons but can't do it with one button that toggles between the two states.

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved