ActionScript 3.0 :: Play Two FLVs Continuously One After The Other?

Apr 23, 2009

i need to play two FLVs continuously one after the other - you might think it's an easy task, but every time i try to do that there is this annoying gap between the videos that flickers, and it's have to be seamless.the ON_COMPLETE event worked poorly, so im sampling the playheadTime of the first FLV and test it for it's end, minus a certain offset value.. but the lag is still there.i ever rewrote the FLVPlayback component to my own NetStream object extending, hoping it will take less run-time memory consuming but noting...and the thing is,the lag sometimes happens, and sometimes don't..when trying to sample the gap it brings me different values every time, but there is no way to correct it,because changing the playheadTime causing a random, few milliseconds lag itself, and we are back to square one..

View 3 Replies


Similar Posts:


ActionScript 3.0 :: Load & Play External Flvs Continuously?

May 4, 2009

code that will load and play a folder of flv's continuously?I have a folder of short clips i converted to flv. When one clip finishes, i want the next clip to play and to endlessly loop through the flvs, never stopping. If there's a way to include a transition, that'd be cool too, but not important. I've got the first clip loading, but can't get the next to play.

Code:
var video:Video = new Video();
addChild(video);

[code].....

View 1 Replies

ActionScript 1/2 :: FLVs Will Not Play From CD On XP

May 7, 2010

I have a Flash CS3/AS2 project containing swfs with FLVs. When I Publish the "START.fla" which pulls all the files together, I tell Flash to create a "Projector" for Mac and an "EXE" for Windows. On my (OS X) desktop this Projector thing works perfectly...swfs open from a menu in my GUI, the swfs reference flvs and the flvs play. The swfs are in the same folder as their flvs.

If I put this whole folder full of files over to the WinXP box (via shared folder), double click on the EXE - no flvs will appear. Everything "leading up to" an flv works - but where there should be a video there is none. Moving on I burn the project onto a CD. When I open the CD on the Mac and find the Projector - I double click and it still works great. Everything flawless.

I put that same CD into the WinXP (SP3) box, find the EXE and double click. As I expected - no improvement, the GUI opens,the swfs can be launched from the menu, but no flvs appear. I get the swf that references the flv - but no flv. I even waited extra time thinking it would eventually happen. No. Why it should work on Mac and not on XP? Where should I look for the glitch?

View 1 Replies

ActionScript 2.0 :: Flash 8 - How To Play FLVs One After Another

Apr 3, 2009

How to play flv's from Action Script2 one after another? Let's say I have 3 clips .flv. And I want to play them one after another.
In case I'm writing this:
myFLVPlybk.contentPath = "1.flv";
myFLVPlybk.contentPath = "2.flv";
myFLVPlybk.contentPath = "3.flv";
Only the last clip is playing actually. How can I implement "one after another"?

View 1 Replies

ActionScript 3.0 :: Get First Of Several External FLVs To Play?

Dec 14, 2009

I have five videos that play on command when you click one of five buttons.  I want to make two enhancements to this script and I need an expert's help (because clearly I'm clueless!).

#1 - Even though I have the vidPlayer (aka flvPlayback component) setting set to "true" for autoplay, the area where the videos are set to play remains blank until clicking on one of the buttons. How can I get the first video to truly "autoplay"?

#2 - I would like to have the videos play in sequential order when the last video is finished, then stop after the last (fifth) video has played.  How can I get them to play back-to-back?[code]...

View 5 Replies

ActionScript 3.0 :: Play FLVs In Sequence Without A Gap Between?

Jul 22, 2010

I have single FLV file which is quite big. I want to encrypt it and decrypt but it takes too long. My best idea was to split video into smaller videos using third party software and apply my encrypting and decrypting functions to each one separately. Unfortunately I have a problem with gaps between loaded FLV files. Video has to be smooth without any pauses.

View 0 Replies

ActionScript 2.0 :: Getting Flvs To Play Incrementally?

Jan 2, 2007

I am having trouble getting my flvs to play incrementally. I can only get it to play the last flv in my array.

Code:
_root.stop();
//
vidList = new Array("item_overview_ae476x264768K.flv",

[Code]....

View 4 Replies

ActionScript 3.0 :: Play FLVs Simultaneously Within Swf?

Mar 14, 2012

I am creating a flash "video jockey" station. I have 9 videos that are different parts of a song. Each video is loaded upon the loading of the swf with a volume of 0 . When the buttons given are pressed, they unmute and expose the video. I have it set to a 36 second loop. I have coded in a rewind for each video. When I export it for html, the rewind and play no longer matches up. I feel like there may be a simpler way to code what I am doing, and a way to say that all videos should match up based on their location within their 36 second play time. I have included the actionscript3 I have written for two of the videos. Imagine this with 9 total videos and background music all having the same rewind function.

stop();
import fl.video.*;
var pb:FLVPlayback = new FLVPlayback();
pb.source="videoOne_2.flv";

[Code]....

View 6 Replies

ActionScript 3.0 :: Can't Play FLVs In Full Screen?

Dec 8, 2008

I have a presentation that runs fine when its being playednormally, but when I try to get it to go into full screen mode witha button click it goes black and won't load the videos.Somehow in the past I was able to see the errors, but now Ican't get the same error to pop up.

View 1 Replies

ActionScript 3.0 :: Play Multiple FLVs At The Same Time?

Apr 19, 2010

play a number of FLV files at the same time on one SWF? Basically I have a brief to create a video banner with a number of FLVs of people playing at the same time but starting at different points in the videos. My concerns are with loading times, memory consumption and the starting of each FLV at a different point and looping it.

View 1 Replies

Professional :: Play Many Flvs Using Player Control?

Apr 25, 2011

I have a folder of sales training lessons (flvs) and I want to play each one of them by clicking a button and to have each one use a common playback control. When I us the follwing code I get a "1120: access of undefined property error".
 
stop();
function playAud1(evt:MouseEvent):void { player.source = "audio/The_Profession_Called_Selling.flv";}seg1_btn.addEventListener(MouseEvent.CLICK, playAud1);

[Code]....

View 1 Replies

ActionScript 2.0 :: How To Use Event Cue Points To Play FLVs

Feb 18, 2010

I have a series of flvs with embedded event cue points at end of each one. I want to play them continuously by using the cue point at the end of one flv to trigger the following flv. How can I do this?

View 0 Replies

Actionscript 3.0 :: FLVs Play In Wrong Size

Jul 5, 2010

I have a main file that loads externally a bunch of flv videos. I'm using ApdevVideoPlayer as the player ([URL]). There are no playback problems when I publish swf file. But not when I publish a projector to be fullscreen. As soon as the flv video plays, it becomes huge (kind of like full screen). I want it play in its original size. I changed the "fullscreenTakeover" to be false but was still getting the same problem.

View 1 Replies

Actionscript 3 :: Play Multiple FLVs At Same Time Feasible?

Apr 19, 2010

Is it feasible to play a number of FLV files at the same time on one SWF? Basically I have a brief to create a video banner with a number of FLVs of people playing at the same time but starting at different points in the videos. My concerns are with loading times, memory consumption and the starting of each FLV at a different point and looping it.

View 2 Replies

ActionScript 2.0 :: Play Random FLVs - Within Flash Website

Sep 21, 2007

I have a variety of FLV files I wish to playback randomly within my Flash web site, so every time the page loads it could load any of the 6 files for example. I have created a MC for them to playback within, how can i use action script to select one of the files located in a folder at root and play it? Its my first post and I am quite new to Flash, using Flash 8 Professional. I look forward to hearing from you,

View 4 Replies

Professional :: Play Multiple FLVs Simultaneously Using Single Control Bar?

Jul 30, 2010

How can I  add a single control bar to control 2 external FLVs inserted in FLA document so that when scrolled, both FLVs move simultaneously?Is there a better PPT to Video Converter out there than Moyea that I can purchase or even a freeware? Original documents One FLV is a PowerPoint presentation with videos in some slides, converted into FLV using trial version of Moyea PPT to Video ConverterAnother one is an AVI converted into FLV using Super
 
I saw a similar question posted on Aug 15, 2007 ([URL].. but the "Look Here" link that describes the solution is not available (removed by Adobe for security reasons).

View 19 Replies

Play Mp3 Continuously While Browsing Site?

May 16, 2010

I would like to have it added with controls and play while the user is browsing the site. I don't want it to start playing automatically I want the user to be aware there is a song for them to listen to. I don't have any images for buttons.

View 2 Replies

ActionScript 3.0 :: Play Same Song Continuously?

Jan 2, 2011

[code]...

It can only allow me to play the songs once? How cn i modify it such that it can play it continuously?

View 1 Replies

MovieClip Buttons That Will Continuously Play?

Mar 12, 2010

I have a few flvs made from After Effects that are now movieclip symbols that I have to use as buttons. My problem is that I want those movieclips to continuously play even without doing a mouse rollover. Then, when it's rollover, rollout, or click time, another animation will play within the movieclips that I'm going to use as a button.

View 3 Replies

ActionScript 3.0 :: How To Make Flash Continuously Play

Jun 22, 2010

I have a countdown timer and a click counter and I don't want for either of those to reset if the page were closed / refreshed. What I want is that once the timer and click counter start, nothing will interupt them. But the problem is that if i simply go to another page and back it resets everything. Here is my code...

[Code]....

View 11 Replies

Html :: Play Background Music Continuously?

May 22, 2010

I am playing a background on my webpage by using miniswfloopplayer, now I want the music to play continuously throughout the website, currently the music starts all over again when a page loads which is quite obvious. I am looking for a approach where I can avoid the above situation.

View 1 Replies

ActionScript 2.0 :: ASAP With Sound MX - Play Continuously

Jun 22, 2003

I have 2 sounds that i would like to play. Sound 1 and sound 2. I want to make sound 1 to play only once and after it stops i want to make sound2 to play continuously. You know what I mean? I have 2 different sounds, lets just say sound 1 says blah blah blah and blah and after it stops I want to play sound 2. My sound 1 is longer then sound 2 so I need to make sure that sound 1 finishes playing and after it stops then to make sound 2 to play.

View 1 Replies

Media Server :: Play Multiple Flv Files Continuously?

Sep 23, 2011

How can I play flv files continuously..?? I have developed code for playing flv files in my browser. Those flv files are streaming from flash media server. I can play files individually, but I want to add one button to play multiple flv file continuously when one button clicked. How can I play those multiple flv files continuously...??

View 1 Replies

ActionScript 1/2 :: Remove Replay Link And Play Images Continuously

Jul 31, 2009

I am a newbie at flash so this might be a trivial problem for the experts. I have a flash banner I wish to remove the replay link and display the flash continuously.
Preview link: [URL]
Src Link: [URL]

View 3 Replies

ActionScript 3.0 :: Splash Skip Intro Button Should Play Continuously

Jun 1, 2008

I'm a beginner level student. My project is to create a Splash Intro and a 4 page Website (Home page and 4 internal pages). I have to use Flash (no HTML, Java, CSS, etc). We are using Flash CS3 with Action Script 3. The Splash Intro should play continuously. This part I have working like a charm. However, the project requires a Skip Intro button. I have made the Skip intro button and gave the "instance" a name. The next part is where I'm stuck. I want to be able to click on the Skip Intro button and go to the first page of my "Website." I have all of my pages on one timeline. No movie clips. This is very basic.

My Home page has some animation on it. My name comes in from the left and three buttons come in from the right. When the user clicks on the Skip Intro button, I want it to go to the Home page, play the brief animation and STOP. I don't want the Skip Intro button to just go to frame 40 (for example) and just stop. And, if it goes to frame (50) for example and stops the user will miss the animation (right?). Here is what I have but it doesn't work:

[Code]...

View 6 Replies

CS3 : Too Many FLVs Loading?

Jan 22, 2010

I have one .swf that references several FLVs in a separate folder. That .swf is embedded several times on one webpage and each one references a different video.My only problem is that they all load when the page loads. I would like the first video to load automatically (not play automatically, just load) and the rest to only load when they are clicked.I have been trying to control the buffering with JavaScript where the .swf are embedded but have been unsuccessful.I have also fooled around with the buffer time parameter of the FLVPlayback component and still no luck.

View 3 Replies

IDE :: CuePoints Work In Some FLVs, Not Others?

Mar 12, 2009

I am having an issue with setting CuePoints in a FLV that is not natively FLV. My code works on files that were exported directly from AfterEffects to .FLV. However, some of the video files I am working with are originally .MOV files. When I pass them through either Adobe or Flash Media Encoder, the CuePoints are not recognized. It seems very strange.

Here is the code, although the code works perfectly with native FLVs, so I don't think that is the problem. I'll put it on here just in case.

Code:
myFLVPlayBack.onRollOver = function () {
playHover.gotoAndPlay(2);
}

[Code].....

View 1 Replies

Implement Closed Captioning Into FLVs?

Feb 29, 2008

implement closed captioning into my FLVs. I have successfully set up the FLVplayback component, and the FLVplaybackCaptioning component to work. That's not the issue. The issue is, once I have my swf, flv, and xml files (needed to successfully use CC in a FLV), I need to insert that .swf into my captivate project.

It appears to insert/import OK, but once I publish the project, the swf does not appear, and in fact the FLV icon sits on the slide rapidly blinking. Neither the video plays, nor can I even see the playback component/closed caption component (swf) that holds the FLV.

All paths are relative, so the only things I can think of that may be causing the issue are:

a)Captivate doesn't support CS3 FLVPlayback or
FLVPlaybackCaptioning components

b)Since Captivate allows importing of FLV files directly, running the FLV through the component's swf is a problem

c)The hierarchy of files needed for the Closed Captioning FLV (xml, flv, swf), interfere with compiling the new Captivate .swf
upon publishing I've also been told that the FLV captioning component only works in Actionscript 3.0 which runs on Adobe Virtual Machine 2.Captivate publishes .swf files using Actionscript 2.0 which runs on Adobe Virtual Machine 1. Therefore, what I need to do will not work.

View 4 Replies

ActionScript 3.0 :: Volume Levels Between Flvs Are Very Different

Jan 31, 2011

I made a video player that plays through flv videos one after another for an in-store display. My problem is that volume levels between flvs are very different, one flv volume levels would be louder than other flvs vice versa.So I'm thinking if I could equalize the volume levels using sound channel but have no idea where to start. Can anyone point me in the right direction on how to properly adjust/equalize volume levels so they all sound the same?

View 4 Replies

ActionScript 2.0 :: How To Load Multiple Flvs

Dec 20, 2007

I have 3 videos to load into a single flv component. I want to be able to load these movies randomly. How would I go about doing that? I have no idea how to start

View 1 Replies







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