Professional :: Tell One Flash Video Component To Make Another Stop?

Nov 5, 2010

So I have a website... [URL]

If you go there and click on the "Corporate Videos" section, you will see me pop up and start talking.

But... if you click on one of the videos below... I keep talking over the top of the new video.
 
Is there a way to "tell target" the one video to stop playing from the action of clicking play on the other video so I stop talking the minute any button on the page is pressed?
 
I am using AS3 with the FLV Playback component for all these videos.

View 8 Replies


Similar Posts:


ActionScript 3.0 :: Make Video Stop Video When Leaving A Frame?

May 11, 2010

I know how to make a video (instanced as showreel) stop when clicking on a button that that navigates to another section/frame, since otherwise I would still listen to that video while not visible. The problem is when I'm in another frame that doesn't have that video, when clicking on the menu to go to whichever other frame, it looks for that it to stop if it's playing and it and doesn't find it, and so there's an error.
 
How can solve this? Maybe I should put an order saying something like if there exists a video in that frame instanced as sowreel, stop it, otherwise don't do anything as there is nothing to be stopped. Or assign the order to the frame (which is called motion), but I don't know how to do that, can someone help? The code I have is: 
 
import fl.video.VideoEvent;
function onClick(evt:MouseEvent):void {    if( showreel.playing ){        showreel.stop();}    gotoAndStop(evt.currentTarget.name);}
motion.addEventListener(MouseEvent.CLICK, onClick);web.addEventListener(MouseEvent.CLICK, onClick);logo.addEventListener(MouseEvent.CLICK, onClick);photo.addEventListener(MouseEvent.CLICK, onClick);

View 5 Replies

ActionScript 2.0 :: Stop Video Component Without Disabling It?

Nov 20, 2009

I have a presentation with two pages, each of which contains a video component with an associated video.

When the user clicks a button, the presentation changes from one page to the other. If a video is playing, I need to be able to stop it on the page change.

I can use stopAllSounds();, but if the user returns to the page again, the player is doesn't work unless the user clicks the Stop button before attempting to restart the video.

Is there any way to pause or stop the player that will still leave it fully functional?

View 0 Replies

Actionscript 3.0 :: Video Component Audio Won't Stop

Jul 27, 2009

I have a video component play on frame 1. When my movie goes to frame 2, the audio continues to play even though the video component is no longer on the stage.

View 14 Replies

Professional :: FLV Video Import In To Flash Stop/Play

Nov 20, 2010

I have imported a flv video in to a flash8 page and want to get the video to stop on load?when importing the video there are no option other that to included the skinning play/stop/pause etc buttons but no option to stop the video on load!

View 3 Replies

Actionscript :: Make A Flash Video Start Playing On MouseOver, And Stop On MouseOut

Jul 6, 2010

I'm wondering how I can make a Flash start playing a video on MouseOver, and stop playing on MouseOut.

View 1 Replies

Professional :: Flash Button For Video Clip (Stop And Reset)

Jan 20, 2010

I am new to flash and I'm trying to do a button. This button should play a short video clip when I would go mouse over it. On Mouse Out, the video should stop and reset.

View 5 Replies

Professional :: Custom Start/Stop Time For Flash Video AS

Jun 14, 2010

I realize this is probably an old thread, but does anyone have an actionscript example of how to create a custom start and stop time for a Flash video?  In other words I'd like to be able to "bracket" the play time of a Flash video with custom start and stop times rather than start at the beginning and end at the end.

View 1 Replies

ActionScript 3.0 :: Video Component Audio Can't Stop When I Use Back Button

May 20, 2010

I am putting together a basic video portfolio and have everything working except when I click the back button to get back to the thumbnail page (contained on frame 1) the audio from the video continues to play, I'm not an expert on as3.

I have tried a lot of code in the function below ( like "stopAll();" ) but nothing seems to work.

View 1 Replies

ActionScript 3.0 :: FLV Playback Component - Stop Previous Videoplay At New Video Event

May 23, 2011

There seems to be tutorials on starting the next video at completion of the previous one using the FLV2.5 Playback component, but stopping a video playback event when a new one is triggered.  Ex.  Video one button is clicked and video starts playing, viewer clicks video two button mid way through playback of video one and starts video two.  How do I stop the playback of video one when video two button is clicked to avoid both playing simultaneously?
 
I have used:

if (snd ! = null) {
channel.stop();
}

for audio files sucessfully.

View 1 Replies

Flash :: Professional - Infocaster Wants 5 (can't Make Video Work)

Jun 28, 2010

I run a small digital signage business and need to be able to use Client provided Flash files. Problem is Harris Infocaster's built in video player is version 5 (yes, it is 2010 already). I made a 15 second clip with three photos and some text, looks okay BUT I want to include video an endless error messages when attempting to Export to Flash. Any takers on a solution.

View 1 Replies

Professional :: Make Video's Bakcground Transparent In Flash?

Dec 21, 2010

I work on flash CS3 I created a video in sony vegas, and imported it to flash, but the background is black, I want it to be transparent, what should I do? P.S: in sony, there is no background, except the original black backgound that we see when we open the projet?

can we make some changes in the flvplayback in order to fix this?

View 9 Replies

Professional :: Make A Simple Flash Website Video Intro In Flash CS5 Pro?

Jul 31, 2010

I am new to flash and trying to make a simple flash website video intro in Flash CS5 Pro.I have a flv viedo on the stage, under an image with a trasnparent center.I have the video on the bottom layer, the overlay image on the middle layer, and the top layer is my AS layer (AS3).

The video is currently autoplaying when i export.All i want is for it to open my website in the same window as the intro played when the video ends.I dont need a "skip intro button" or anything.I just want it to play the intro when you go to my site, and then bring up the index page of my site after it plays.

View 2 Replies

Professional :: End Video With Stop Action?

Apr 12, 2011

I want the video not to loop, but to stop on the final frame of the video. I want to add that action before publishing the SWFas3 file. I need a litle advice. I went to last frame and right-clicked on Actions. I don't know what to put in the dialog box.

View 2 Replies

Professional :: FLVPlayback Component Video And Skin As One Swf

Sep 7, 2010

Is it possible when publishing a Flash CS4 file to have the Video swf and the Skin swf be in one swf file? I have a Flash CS4 (AS2) file that has a FLVPlayback Component. When I publish or test movie 2 swfs are output. I need only 1 swf as I am then going to insert this 1 swf into a Captivate 4 project. When I insert the video swf by itself into Captivate 4, I do not have a play bar/skin. If it is not possible to publish as one swf, how I can insert the 2 swfs into a Captivate file and get them to work?

View 3 Replies

Professional :: Play H.264 Video Using FLVPlayback Component

Jul 27, 2011

i'm trying to embed h264 mp4 video into website using flash cs3 professional.
when i select the source file it's looking for .flv files and not the mp4 file so the mp4's are greyed out.i read a great tutorial using a pc which shows the workaround for being able to see the mp4 files.url...I'm however using a mac and this method of putting an * in the file name box doesn't work on mac.

View 1 Replies

Professional :: Edit In The Middle Of The Video For FLV Component?

Feb 3, 2012

I have a video which my client wants me to cut in pieces. I see that I can set up starting and ending points in Media Encoder, i.e. cut out the part from beginning and end. Is there an option to cut out parts in the middle?
 
I am familiar with After Effects but my client doesn't want to invest in this program. Are there any smaller/cheaper programs which allow more video editing that AME if AME indeed can not do it?

View 1 Replies

Professional :: Stop Video After Leaving Page?

Jan 8, 2010

i want to stop my video once i click onto another page
 
but the video still plays in the background??

View 4 Replies

Professional :: Stop Video From Playing Automatically?

Apr 29, 2011

I imported a video in my "about me" section of my website with a skin chosen from within flash. However, when I click within another section of my website, for example "Home" and go back to the "about me" section, the video starts playing automaticly. If your speakers are turned all the way up, you will jump.

What is the code I need to add to my video's actions layer to stop the video from playing automaticly and give the the user the ability to play the video themselves?
 
And what would be the code if I wanted to reduce the volume at 50% for example but have the video play automaticly?

View 5 Replies

Professional :: SWF Player Component - Converting Images To FLV Video

Aug 5, 2009

I am loading an external swf file into my swf file in CS4 with AS2. The reason I am doing this is that the external swf file contains a sequence of images and I tried to convert it to flv video but using many tricks and software out there (like converting to AVI and then to FLV) but there was always LOSS in quality. My question is! Is there a SWF player component much like FLV player component, because I need to give the user the ability to stop, pause, rewind etc.... the loaded external swf file?

View 2 Replies

Professional :: Video Component Disappears But The Audio Keeps Playing?

Jan 12, 2010

when a video is playing..and i click a button to play to a different label in the main time line..the video component disappears but the audio keeps playing.. all so the volume component, the slider indicator stays stuck to the stage.. what AS3 is needed..to stop the audio and fix the indicator..

View 5 Replies

Professional :: File Structure - FLV Video With Play And Stop SWF

Jan 4, 2011

I am trying to import a video in to flash. I have converted it to a flv and used the stream from flash media server option and selected a standard play and stop bar. I have imported it in and it works find when you just select the individual swf that it loads into. The problem im having is that when I go to it through the home page, all the page loads apart from the video. I've tried moving it around, moving where all the assets to the video are etc. I know the file structure is important to this working. I have a main folder called interactive / and in that have a FLA and a SWF folder and the swf and fla home page. Currently I have the the video swf in the swf folder with the flv and the play and stop swf.

View 7 Replies

As3 :: Professional - Stop A FLV Video On Entering The Next Frame (cs5 - AIR2.5)

Jan 5, 2011

I have a magazine of 40 frame. each frame is a different page. in one page (frame) i have imported an flv video from a url. but when i publish it and go to the next frame the video keeps playing, even if im not seeing it.

View 7 Replies

Add Video Play / Stop / Pause Button To Flash Video

Dec 7, 2009

I have created my first flash video and wish to allow the visitors to play the movie themselves instead of having the movie play automatically also have a stop or pause button too.

View 2 Replies

Professional :: Video Sound Won't Stop When Changing Frames On Timeline

Nov 19, 2010

I've been making the transition from AS2 to AS3 for the last week and am making progress. But I'm having a problem that hopefully someone can help me with. I'm using Flash CS5. I have a fairly simple Flash website I'm working on. I have sections on the timeline like Home, About, Photos, Media ... all set up using labels for each of those sections. Everything is working fine but when I go to my Media section where I have a video placed (using the flv component) I'm having a problem as follows:

The video auto plays fine when I go to the Media section but when I attempt to leave the section and go to another the sound of the video doesn't stop. It continues to play when I go to another section and if I go back to the section it starts again. The video is not there when I go to another section which is the part that's confusing me. In AS2 when I did this the video and the sound both stopped because you went to another section on the timeline. Why is the sound of the video not stopping in AS3?

View 28 Replies

ActionScript 3.0 :: Video Won't Stop Using Same Command That Made Video Stop

May 7, 2011

I have a website that plays video1 when it opens. When you navigate to next page the video stops. One of the buttons on the second page plays video2. The problem is that video 2 won't stop using the same command that made video1 stop.

View 2 Replies

Professional :: Make A Portion Of My Banner Stop?

Aug 2, 2011

I am currently making a banner ad. Within this there is a note about an event that happens at a certain date.Is it possible to make this note play until that date, and then stop playing while the rest goes on?

View 3 Replies

Professional :: Make An FLV Component To Play Videos Automatically?

Feb 2, 2012

After much discussions and great help I finally got the working FLV component. Here is my entire code from the label with an FLV component.
 
import fl.video.VideoProgressEvent;
stop();
close_btn.addEventListener(MouseEvent.CLICK, onClick_GoBackToHowTo2);
function onClick_GoBackToHowTo2(event:MouseEvent) :void {
gotoAndPlay("howto");

[Code]...

The problem is it doesn't dissapear once the video plays. How shoudl it be done, the whole video has to go to another frame with no play_btn on it or there is a code which can make it fade away?

View 9 Replies

Professional :: Best Method To Stop Game And Make 3 / 2 / 1 Countdown On Screen?

Jul 31, 2011

if I wanted to stop my game so that no input and all ai action seized what the best way to do it is, is there a way besides stop every listener and every timer and ai event?Also I want to kind of make a big 3,2,1 countdown appear in the middle of the screen, what is the best way to do that?? make the symbols and then going visible->invisible for each?

View 2 Replies

Professional :: Make Non-inspectable Component Properties Persist From Design To Runtime?

Jun 9, 2010

I have two components (lets call them A and B) which have normal inspectable properties (e.g. NAME and AGE) which allow you to enter values via the component inspector. When I type the value for NAME in component B (via the component inspector) I communicate via a singleton class and store this value in a NON INSPECTABLE property located in component When I run the movie, I want to access this non inspectable property within component A; however, it is always null - the value will not persist from design time to runtime. I check that the value is set at design time by tracing the A's non inspectable property once component B has set it - and it does indeed work, so I know component B has managed to set the correct value in A.

View 2 Replies







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