ActionScript 3.0 :: FLV Player Stop Playing When Move To A Different Frame?

Mar 19, 2010

I'm trying to create a small flash website for a Uni project (I'm a music student but they want me to be able to make websites, go figure?) and I am having trouble getting a video to stop playing when i goto another frame. Im using the FLV player from Window>Componants and i have named it PubPlayer. I've tried setting its source to Null, Using .stop() and even setting its volume to 0 but everytime i goto another frame it keeps playing.Im gettingTypeError: Error #1009: Cannot access a property or method of a null object reference.at AlbumsEps_fla::MainTimeline/GoAlbum()My code is as followsQuote:

stop();
PubPlayer.source = "Machines.f4v";
function GoHome(event:MouseEvent):void {

[code].....

View 4 Replies


Similar Posts:


Actionscript 3 :: Stop Movie (from Current Frame) Playing When I Click On Next Frame?

Apr 8, 2010

I have four movie clips (.f4v) in 4 frames in a movie with watch buttons.. This movie has them been imported into a main movie container that has next and previous buttons. However if i play a movie then hit next frame, the movie continues to play in the background. The code below shows one of the actionscripts for a movie clip and then the main actionscript in the main movie.[code]...

View 1 Replies

ActionScript 3.0 :: Stop The Background Song On Frame 1 And Have Frame 2 Playing?

Aug 7, 2010

I have 5 frames in which a different song will be playing, this is the code i used on each frame:

var mySound:Sound = new Sound();mySound.load(new URLRequest("frameone.mp3"));mySound.play();

If im on frame 1 and click on the navigation button to see frame 2, both songs on these frames play simultaniously. how can i stop the background song on frame 1, and have frame 2 playing?

View 11 Replies

ActionScript 3.0 :: Audio From Flv Player Won't Stop Playing?

Nov 17, 2010

I have a swf loading in another swf that has a video player in it. When I remove the swf from the stage, the swf goes away but the audio from the swf keeps playing. Is there a way to tell that swf to stop playing from the parent swf?

View 7 Replies

ActionScript 3.0 :: Stop MP3 Player From Playing Automatically?

May 16, 2011

It is perfect, except that I'm not sure how to keep it from playing automatically. I tried removing the playSong() part under the loadSong function and it just removes the ability to play the song altogether. Here is the code:
 
import fl.controls.ComboBox;import fl.data.DataProvider;
///////////////////////////////////Variables/////////////////////////////////var song:Sound;var channel:SoundChannel;var xform:SoundTransform;var

[Code].....

View 7 Replies

ActionScript 2.0 :: Stop Auto-playing In Mp3 Player

Dec 8, 2010

I am using a free flash music player. It will be found here URL...When the player open, it starts music autoplay. But I do not want that. I want stoping auto play and when I will push PLAY button it will play music one after one.Optional: Is it possible to add an dancing Equalizer Bars during play time?[code]

View 5 Replies

ActionScript 2.0 :: Move To Another Frame After FLV File Finishes Playing?

Dec 7, 2009

I have several FLV files that play via the FLV playback component dragged onto the stage. The user presses a button and the appropriate FLV plays.

After it plays I what to move to another frame so the FLV is no longer on the stage and makes way for the next one the user selects.

View 1 Replies

ActionScript 2.0 :: Load 1 Swf Per Frame: Move Down TL As Each Swf Finishes Playing?

Jan 22, 2008

I have about 30 very simple external swfs--each contain an image with tweened fades and rollover-to-pause/rollout-to-resume actions. They're loaded onto the main timeline one after another as a slideshow. It's an auto-play and loop: each image swf loads the next one on to the empty movie clip after it is done playing. (i.e., swf1's last frame loads swf2, and so on.)

This set up was fine until I realized that I should have a place-marker--something that indicates where you are in the slideshow. No other functions (go to next/previous) for the marker. I just need to show graphically that you're seeing the 5th of 30 images. The graphic is 30 dark dots that get filled in as you progress.

To do this, I figured it would be easiest if I designate 1 frame per image (=one swf) on the main timeline. So, frame 1 will load 1.swf and when 1.swf finishes, frame 2 will load 2.swf. This will make it easy for me to color in the appropriate dots according to where we are in the slideshow.

What I think I need to figure out is to "pause" at each of the frames on the main timeline until the loaded swf is done playing. They're all different in length--some are 50 frames and some are 90 frames long.

I almost had it figured out from massive googling, but I honestly don't understand it well enough to tweak what I've found to do what I want it to do.

Also, if there is a way that I can easily make the "place marker" work without changing the way it is currently set up (1 frame in main time line; 30 swfs that load one another), that would be even more awesome!

View 10 Replies

ActionScript 2.0 :: Mc To Move Onto Frame 2 When An Imported Mp3 Starts Playing

Jul 16, 2003

i want a mc to move onto frame 2 when an imported mp3 starts playing. i've found :

[Code]...

View 7 Replies

Flash :: Stop Playing Mp3 From Another Player Instance Of Flash_mp3_player?

Mar 14, 2011

I need to put multiple mp3 players on my webpage so I downloaded the player at [URL]. I am using both the mini and the multi version...so when the mini starts playing, I want multi to shutup.

I thought the best way would be to modify the flash file to use localConnection and fire the stop function but I can't access the stop function at all...my code is like this

IN THE MINI templateA class:

public function playRelease()
{
trace("playing clicked....test");
var talkingLC:LocalConnection = new LocalConnection();

[Code]....

View 1 Replies

ActionScript 2.0 :: Stop Music Playing In Audio Player Automatically?

Jun 20, 2010

I'm by no means up on my AS at all and this MP3 player I've had for a while and just readjusted to suit my needs.

One thing i really want to change is the fact the music starts automatically. I changed line 38 from True to False which does indeed stop the music playing on load but instead i get "Loading" and it doesn't do anything after that. Hitting play won't work.[code]...

View 5 Replies

ActionScript 2.0 :: Stop Music Playing Audio Player Automatically?

Jun 19, 2010

I'm by no means up on my AS at all and this MP3 player i've had for a while and just readjusted to suit my needs.

One thing i really want to change is the fact the music starts automatically. I changed line 38 from True to False which does indeed stop the music playing on load but instead i get "Loading" and it doesn't do anything after that. Hitting play won't work.

Code:
stop();
playlist = new XML();
playlist.ignoreWhite = true;

[Code].....

View 3 Replies

IDE :: Stop FLV Playing When Exit Frame?

Feb 8, 2008

audio of a movie playing when I exit the frame - it's probably something simple that is yet evading me ...

The FLV works just fine, auto plays when entering the frame and uses a preset skin. The frame it's playing on has AS code stop(); on it.

View 6 Replies

ActionScript 3.0 :: Stop FLV From Playing Upon Leaving Frame?

Apr 19, 2011

Maybe someone has some insite on this before I open an artery. I have a timeline, seperated into sections. The navigation targets frame labels. On one of those keyframes there is a flv. When you play that video and then navigate to another frame without stopping the video, it continues to play. I've tried giving it an instance name and adding a stop action to it that resides in the button functions so when it navigtaes to another frame it would stop. However, when  I click on any button and the movie is not currently playing, I  get a error message that reads TypeError: Error #1009: Cannot access a property or method of a null object reference. I assume it is looking for something that is not currently there. It has been suggested that I use the SoundMixer.stopAll() but that removes any background music currently playing.
 
Do I need some kind of conditional statement that detects if the flv is currently playing?
 
Can FLV be controlled with a simple instancename.stop() ?

View 3 Replies

ActionScript 3.0 :: Stop Video Playing When Moving To Another Frame?

Mar 13, 2012

I have made a frame which contains four videos that play when the user clicks on the button relating to that video. However, when I click on another frame, the video's sound continues to play. But when I click back to the video page the FLV Componant Player has reset itself and is not playing anything, but I still hear the sound of the video that I played earlier. Any ideas as to either stop or pause the video that is playing when clicking away from that frame?

View 1 Replies

ActionScript 3.0 :: Stop A Video From Playing Once Leaving The Frame

Aug 7, 2009

It is for a portfolio for school, in the case that you wanted to know. I have created a frame in the FLT thatis for videos. I have called a net connection to load a video locally when a custom button is CLICKed, and i have made a custom button to pause said video, and play again, using togglePause

My problem is, once the video is started (using play) and if the user navigates away from this video page, (which means they are a jerk/ass for not finishing my video) the audio will continue playing, as the video has been loaded and is not through executing. I want this net connection to end once navigating away from the page, if necessary. I have tried calling an EventListener(EXIT_FRAME) but errors upon outcome follow.

View 0 Replies

ActionScript 3.0 :: Stop Video Playing When Moving To Next Frame?

Apr 22, 2011

I can hash a flash template to make it work, changing URL's, pictures etc, so have not had a grounding in the coding side of things.

My problem is that I have a new website that I have published in CS5 from a template by flashmo. I have substituted one of the pages to play videos ( I originally wanted to have 1 video with 4 thumbnails that would play when clicked but that is above me). On that page I have imported 4 flash video files, one set to autoplay, the others using the skin to start when necessary.

The issue is that when I navigate away from the page "Examples", the sound keeps on playing and if I navigate back to "Examples" another instance of the video starts with both soundtracks playing.

I have researched and found other people with the same issue, but the solutions always seem to involve entering a stop(); function on the buttons that navigate away from the Examples page. This is where it all falls apart for me.

below is the code from the first frame of the timeline. Am I looking in the wrong place to stop the video playing. There are other lines of script later in the movie, but I am ssuming this is where it all runs from ?!

fm_button.visible = false;
var menu_label:Array = new Array("Home", "Examples", "Packages",
"Links", "About", "Contact");
var total:Number = menu_label.length;

[Code].....

View 0 Replies

Actionscript 3.0 :: Stop The Music From Playing When You Exit That Frame?

Jan 22, 2009

i am building a flash web site using the goto and stop method, with each "page" of the website being a different frame. on one page i have a music player, and it all works fine, and if you press stop before leaving that "page" or frame it all works well.the problem i've run into is if you go to another frame while the music player is still playing the music continues playing and when you go back to the frame the music player is on and press stop it doesnt do anything and if you press play it will start playing the song again with both songs playing over eachother.how to stop the music from playing when you exit that frame. here's the code for the music player:

Code: Select all//Music Player
var musicReq:URLRequest;
var music:Sound = new Sound();[code]..............

View 1 Replies

Stop Player When In Another Frame

Nov 12, 2009

I'm trying to get a movie to stop playing when I click on a button (the second frame button) that brings me to another frame (frame 2). I created on frame 1 a video gallery and I would like to create another one in frame 2. Each frame has its own player. My question is while a movie is playing in frame 1 and I go to frame 2, the the new video gallery shows but the movie from frame 1 keeps playing. I would like to have player in frame 1 stop when it hears the button for frame 2 clicked.

View 3 Replies

ActionScript 3.0 :: Stop Video Playing When Changing Frame/page?

Nov 28, 2011

i have a video that appears when looking at my 'Other' page. But when i click onto a different page i see the new page but can still hear the videos sound. how to stop the video when you leave that page?

View 2 Replies

ActionScript 2.0 :: Stopping A Playing MC At A Specific Frame Without Stop(); On Keyframe

Mar 7, 2004

What I want to have happen is when you mouse down on the button/MC the block_mc will first jump to frame 40 and then it needs to check and stop when the block_mc reaches frame 12. I have attached a simplified version of what I was trying to do

View 5 Replies

ActionScript 2.0 :: Stopping A Playing MC At A Specific Frame Without Stop(); On Keyframe?

Mar 7, 2004

What I want to have happen is when you mouse down on the button/MC the block_mc will first jump to frame 40 and then it needs to check and stop when the block_mc reaches frame 12. I have attached a simplified version of what I was trying to do

View 5 Replies

ActionScript 3.0 :: Playing Video - Unable To Stop Audio After Moving To The Next Frame?

May 3, 2011

I'm having the problem that my video, which sits in a movie clip, does not stop the audio after moving to the next frame, even though the video instance is removed. Here is the code from the main timeline:
 
import flash.events.MouseEvent;
next1_btn.addEventListener(MouseEvent.CLICK, ongoPage2);
function ongoPage2(Event:MouseEvent):void {[code]....

View 4 Replies

ActionScript 3.0 :: When Press Skip / It Stop At Next Frame But Sound Of Intro Still Playing

Nov 2, 2010

i've imported a flv video file to Flash for the intro and i create skip button to go next frame..but when i press skip..it stop at next frame but the sound of intro still playing.

View 3 Replies

ActionScript 3.0 :: Mp3 Title List - Stop Button Should Move From Song To Song When Playing?

Aug 19, 2009

I have a list of mp3-songs, when song 1 is clicked it gets streamed, a stop-button appears, if this Btn is clicked, this Btn disappears as it should - but if user forgets to click for stopping sound and clicks song 2, stopBtn 1 remains and the new stopBtn 2 also appears. there should be only one stopBtn, the one next to the song is playing.

I would like to move the stopBtn and I have tried several approaches move; graphics.moveTo; if(stopButton !=null) {removeChild (stopButton)}; I packed the var stopButton:Sprite in the header and so on.

Code:
SoundMixer.stopAll();
import flash.display.Sprite;[code]..........

View 0 Replies

Professional :: Playing An External Video File And Upon Video Being Played, Move Onto Next Frame?

Dec 16, 2011

I suppose the title says it all.  I can load an external video file (FLV) and I can have it play.  I also have the custom buttons made to control the clip.  The only thing I have left to do is to have the main timeline move onto frame 2 once the external video reaches its end.  I am using actionscript 3 and flash cs 5.5. 

View 7 Replies

ActionScript 3.0 :: Multi Video Player - Audio From The Last Video Remains Playing Even When Prompted To Stop??

Jun 2, 2010

I built a timeline based player with 2 menus and many videos that you can play.The buttons move the timeline to a frame label and the video plays. The back button has a stop function built in it so the video stops playing when its hit.It plays wonderfully locally but once on a server after a few clicks it boggs down and sometimes the audio from the last video remains playing even when prompted to stop. I was pointed to use the add and remove child functions to prevent this but being very new to Flash and 100% self taught i have zero idea on how to do this. The link to the player is[url]....Even if its a link to a tutorial or something.

View 3 Replies

ActionScript 2.0 :: Get A Movieclip Within A Movieclip To Stop Playing When It Reaches Its Last Frame

Nov 20, 2007

i'm trying to get a movieclip within a movieclip to stop playing when it reaches its last frame. let me describe my problem: it should start playing when the user rolls over the movieclip that is containing it(i'll call this mc1, and the movieclip within it mc2). i've put a stop action in mc2's last frame but it won't stop and plays again and again. one thing i should point out is that there is a variable in mc1 that tells the movie whether it's ok to play the movie in reverse when the user rolls over mc1, if this is false, that means that it plays normally(not in reverse). i'm using "play()" to play mc1 when the user rolls over it and this is where i think the problem is; even though the last frame of mc2 has a stop action, it is somehow told to play again? anyways, this is just a guess, i haven't figured out why or how to fix it. i'm not sure if my explanation was too hard to understand so i'll try to clarify it if anyone wants me to.

View 1 Replies

Professional :: Playing Scenes In Test Movie Animations Stop Playing?

Dec 4, 2011

I am using AS2 in CS5.5.I am creating a project for a class that introduced me to adobe flash.  The issue is I have gotten to a certain point about 15 scenes.  During say the 15th scene scrolling through the timeline animations works fine, playing it on test scene works fine.  When I go to play it on test movie it stops at a certain point.  At first I thought it might have been a misplaced stop action but there is none to be found.  The weird part is every other scene I create after that continues to freeze as well, the images are there, but the animations won't play.  All my previous animations play before those with the issue, it's justThese new ones won't play for some reason in test movie, but work completely fine in test scene and the timeline.

View 4 Replies

ActionScript 1/2 :: Stop Other Sounds From Playing While Current Sound Is Playing?

Apr 10, 2011

I am creating a game that has 6 movieclips all on the main time line of the game. Each movie clip has three buttons that when clicked plays, pauses or stops a sound clip.When I press any of the sound clip play buttons that sound starts playing, the problem is when I click any of the other sound clip play buttons those sounds also start to play. Is there a way I can disable the other sound clip buttons while the current sound is playing then enable all of the buttons when the current sound has stopped.
 
This is the code that creates one of the sound objects

[Code]...

View 3 Replies







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