ActionScript 3.0 :: Loop Array - Gap Between Loading Video?
May 25, 2010
I'm just trying to loop this array, it works, I just can't get it to loop:
ActionScript 3.0 var videos:Array = new Array("videos/movie1.flv", "videos/movie2.flv", "videos/movie3.flv");
var currentVideo:uint = 0;
myVideo.mouseChildren = false;
function playCurrentVideo():void {
[Code] .....
I've found a bunch of threads for AS2, but I just can't get anything to work. Not as important, there's a quick gap between the loading of each video when this runs. Can that be improved?
View 2 Replies
Similar Posts:
Sep 17, 2011
Okay, here goes: What I'm trying to do is create a multidimensional array which will pull text, swfs, and/or images from an xml file based on which button is clicked. What I don't understand is how to pull the swf or image file from the file like I have with the text. Truth be told, I'm completely lost and could really use some help fixing this. I need to pull text and images or the swf file from the xml depending on which button is clicked and I tried to put this together, but I've given myself a headache trying to understand where I went wrong.
[Code]...
View 1 Replies
Dec 10, 2009
I built this site out in as2 and have to convert it to as3. It appears the same logic flow and coding just doesn't apply since everything has changed on an event level. The idea is to load thumbnails dynamically and upon clicking the thumbnail retrieve the loaded variable (i) in the array per the XML loop. I'm trying to figure out what I'm doing wrong in logic flow as it keeps coming up "undefined" or pulling up the last one after the whole thing's loaded. I'd copy the exact code but there's a lot of variables. So I'll post this basic structure to give an idea of what I'm doing. The bold print is where I'm stuck in terms of getting a trace.
[Code]....
View 0 Replies
May 2, 2007
I want to make an array that holds objects, each object containing an x- and y-value representing the location of each mc on screen. The mcs will not move. How do I reference each mc using a variable with a loop?
For example, if I have the mcs mc_0, mc_1, mc_2, mc_3, ... mc_49
I want to...
Code:
var n = 50;
var myArray:Array = new Array();
for (i = 0; i < n; i++){
myArray.push(
[code]....
View 1 Replies
Dec 18, 2010
I made a video in After Effect and export it to flash as a FLV video.. and write de code to load it into flash.. but I need it to loop.. Here is the code
[Code]...
View 1 Replies
Aug 11, 2010
I have created animated presentations (since now, I have just videos) for my seminars at the university with cinema 4D and I added some effects with After Effects (CS5). Now, I want to build an interactive presentation. That means:
- The (video projector) presentation starts with a video in a loop.
- When I click a button on the mouse/keyboard, the video finishes the loop until the end and
- show a transition video and
- start the next loop and so on...
[Code]...
View 4 Replies
Sep 25, 2009
I want to loop through an array and use the array value to reference a variable.
The Setup:
(For illustration only. Not actual script)
My MCs:
triangle_mc
square_mc
[Code]....
View 1 Replies
Aug 25, 2011
ActionScript Code:
var answerArray:Array = ["3", "2", "5", "3", "2"]; //these are the correct answers
var answeredArray:Array = ["3", "1", "1", "3", "2"]; //this is an example of what the user
[code]....
View 3 Replies
Mar 15, 2010
Status:
- I imported an AVI video clip to Flash converting it to FLV
- I published the project
- I put the files on my web server
- It automatically starts playing when you go to the web page
Question:How do I make the clip loop?
[code]....
But I can't find their download sample And, they say click on Frame-1 and press F9 then put code snippit in after line 7 But, I see no Action Script when I click on Frame 1 and press F9... a window opens but no code appears...just a long menu on the left.
View 15 Replies
Oct 15, 2010
I have an fla file exported from After Effects that I am trying to get ready for a website so it loops continuously and is web ready.
Details:
- Clip needs to be rasterized and not vectorized (hence the flv format)
- Dimensions are 1400 by 514
- No Interactivity, just a simple looping 4 second clip
View 1 Replies
Sep 29, 2011
how to write after finish the video active play button ? when i click play button movie playing from first.and how to looping video?
View 3 Replies
Apr 1, 2012
I am making a video based application.In this application a 720p is need to be play loop wise.I have 5 Sec video that should play automatically after 5 Sec i mean loop.I am making this application for Android and IOS.I had tried the looping thing use timer of 5 sec but there is a jerk after each clip.I need a smoothly looping without any jerk after the clip
The following is the i am using.If you know any other code better than this
import flash.display.StageScaleMode;
import flash.display.StageAlign;
import flash.display.Sprite;
[Code]....
View 1 Replies
May 21, 2011
I have a video that needs to loop on an Augmented Reality project, but for some reason it does not want to loop.I thought it would be as simple as adding the following code:
netStream.seek(0)
netStream.play(videoURL);
which is triggered as soon as the NET_STATUS event gives the NetStream.Buffer.Empty or NetStream.Play.Stop code.
View 1 Replies
Jun 14, 2006
We have a major project on here at the moment to do with flash menu designs and videos etc. Basicly we have a menu where u click a button and it jumps to a frame. On that frame is the information etc, and a video for that particular subject. What im asking is this: We have put the video in using FLVPlayback and was wondering if it is possbile to have the FLV loop the video.
View 12 Replies
May 18, 2009
I'm trying to loop a FLV video. The start and end frame are identical, but in flash there is a slight pause on the repeat.... I've tried a couple of different methods... listening for the COMPLETE Event via AS and embedding the FLV into the timeline, with a goto on the last frame... both methods have the same effect.
View 1 Replies
Jan 20, 2011
I have this flash movie I've been working on for awhile. I've received in these forums. I have my file set to load an array of swfs. Now, though, I'm wondering how to keep it from looping. At the end of the last swf, I want the movie to go to the last swf and then just stop. Here is my code:
[Code]...
View 9 Replies
Nov 11, 2009
I have this map I'm creating in Flash. You click on a state, then you can click on an icon to view a tooltip/popup of some information. What I was trying to do was instead of creating new functions and event listeners for every different icon is to use a for loop...but it's not going so well.[code]...
View 2 Replies
Jun 21, 2010
I've a container file which loads an array of SWFs. The code is as follows:
var request:URLRequest;
var loader:Loader= new Loader();
stage.addChild(loader);
var myMovies:Array=["../flash/movie1.swf","../flash/movie2.swf", "../flash/movie3.swf"];
var movieNum:int=0;
var mcExternal:MovieClip;
[Code] .....
This works fine - the array is loaded and plays through once... What changes are needed to get it to loop through the array.
View 2 Replies
Oct 6, 2010
how can i set an array by using a loop.. the array is contains by a data that i read from database.. so the length of carry depend of the length of data in my database..
i try to use
for (var i:int = 0; i < xxx; i++) {
products = [p[i]];
}
i never read data from database in as3.. so if i want to use the data in database for this loop,what should i do?
View 2 Replies
Feb 16, 2008
if you could run a loop in an array?
I'm having to make an array that has each value increase by a 10, like 10, 20, 30, etc. is there an easier way to put in those values without adding them 'manually'?
and I have another question that is related. For this same project, on the stage there will be a text box and the user will put in a number--how can that value be run through the array? like say I input the number 500, how does it find it in the array? is there a passed id, a listener and a broadcaster?
View 2 Replies
Apr 29, 2009
i got stucked in a problem in actionscript 2.0
there is a 2d array - arr[12][13]
how can we start a loop to copy the value(using for loop) in manner:
a1=arr[0][0]
a2=arr[0][1]
a3=arr[0][2][code].....
View 5 Replies
Feb 8, 2008
I have a little video that is supposed to be an endless loop. I embeded it into a web site as a swf, it streams and than stops at the end. I just read there is a action script to make it loop.
View 6 Replies
Mar 8, 2010
Just working to a very small budget on this one; clients got a video clip of a waterfall, wants it as part of a banner effect. Problem, how can I get this to loop without the "shutter" effect upon replaying?When I took on this work, I told the client "Yes, no problems! ;( Then Bang "shutter effect".I am using onComplete and works great, except the beginning of the clip is not matching the end, thus it shutters, flickers.What I was thinking was, is there a way, using AS3 code to help me out here, as in start playing at a certain point and have onComplete start at that given point.
View 2 Replies
Mar 20, 2011
I have tried to loop a video. Though in the SWF, the video plays only once. Can someone see something wrong in the AS3 code below (relevant info tagged like this --->) (FLV instance is called "Film_mc")
[Code]...
View 4 Replies
Jun 10, 2010
So i had a video that was in quicktime format, threw it into flash, encoded it without a problem and here is the result i got:I would like the video to "loop" or "autorewind" as soon as it ends but i am having the hardest time trying to figure how to do this. Here is my code,
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
[code].....
View 1 Replies
May 13, 2009
I've pieced together an XML driven playlist for videos. how to play the playlist continuously. When the last video ends, I want it to start with the first video and run through the playlist again and infinite number of times. I can only get the last video to restart when it finishes instead of going back to the first video. [code]...
View 14 Replies
Jan 22, 2010
This should be an easy one for you pros AND novice alike. Im creating a single flash page with one F4V video on one key frame. simple. From what Ive read the SWF should loop automatically. But it doesnt. Is there AS3 code I can add to make it loop seamlessly? I made the F4V a movieclip in order to add some filters. eventually I'll add one button and thats it. This will be a splash page for a website.
View 2 Replies
Sep 15, 2009
I have an array like this:
Code:
var myData = new Array();
myData["name"] = "John";
myData["Age"] = 35;
What is the syntax to loop through and get the key and value? I have tried for each and for in but they just give me the value of "John" or "35", how can I get the key e.g. "Name" and "Age"?
View 2 Replies
Feb 8, 2012
Is there a simple equivalent to what I used to do in AS2 to add a bunch of new objects to the stage and throw them into an array so they can easily be referenced? I'm finding this more difficult than it used to be.
Old code:
ActionScript Code:
mc_array = new Array();
for(i=0;i<5;i++){
[code]....
View 6 Replies
Jan 29, 2009
Consider an array with x number of elements (of type Object) where some of the elements might be undefined.I use a for-each loop to access all the elements of the array that is not undefined (since it simply skips the undefined elements).But I also want the index of that particular element.The only option I can see is to use indexOf(). But it feels a bit like looking for water on the other side of the river so to speak.
When looping through long arrays each frame, is there a change indexOf() might slow it down? or does the for-each loop somehow know what index it's dealing with?
View 19 Replies