ActionScript 3.0 :: Loading A F4v Into A Project, And There Seems To Be An "initialization" Delay?
Aug 13, 2009
I'm loading an f4v into a project, and there seems to be an "initialization" delay. Googling leads me to believe this is a known issue, but I can't seem to find an answer on how to get around it, if even possible. Here's what's happening:
1) AS3 call to load f4v into a VideoPlayer (or FLVPlayback, doesn't matter)
2) All bytes immediately load (because I'm working locally)
3) [15 second delay]
4) Receive READY event and video starts playing
When I use the same exact code, but with an FLV instead, step 3 does not exist.Is there a way around this, which I assume is a "processing" delay for the high quality video format?Or, if not, can I assume that it's a set amount of time each time? Ultimately, all I care about is alerting the user to what the delay is - if I know it's always 10 seconds, I can make a preloader of sorts that lasts exactly that long.
View 2 Replies
Similar Posts:
Apr 10, 2009
I have a clip that's 1450 pixels wide, masked to 725 - basically a left side, and a right side. The left side will contain navigation for a portfolio, which when clicked, the movie plays 10 frames during which a movie clip called portholder will slide over from the right, and load the appropriate movie clip. Here's the code on one of the bits of navigation:
[Code]....
Essentially, I'm trying to replicate the effect Your Majesty is using. I'm sure there's a way of using actionscript to slide portholder back and forth, instead of using animation, but alas I'm not a scripter (as you can tell!). But what I'd REALLY like to do is to tell the container clip to wait until it's fully in position before loading whatever.swf, as opposed to having a movie already in progress moving across the screen. Basically tell portholder "Wait until your x value is 0 before loading whatever.swf" I thought about using the setInterval, as recommended to someone else on these forums, so tried:
[Code]....
View 3 Replies
Sep 4, 2009
I have a rotating menu that when clicked rotates and loads in swf movies, OnClick.
The problem I seem to be having is that because the swf movies load in on click it seems to be causing the rotation of the menu not to run smooth.
Question: Is it possible to get the swf movies to load in once the action of the click has completed its action. some kind of 2 second delay before the movies load in??
what happens: you can click or mouse scroll through the menu, when you click, the action repositions the selected Item (ActiveItem) in the center and resizes larger. this works great, is it possible after this action is complete to then load in the swf movies?
to see how the movie runs at the moment this is the link: [URL]
you will see at the moment onClick the movies load straight away which makes the rotation not smooth when rotating around.
I can't seem to get the mouse scroll to work the same function as the click at the moment also.....thats for another day
View 11 Replies
Sep 14, 2009
I have a myMC and inside it I have an empty movieclip Loader1.I load a swf into the Loader1 with
Code:
LoaderMe.loadMovie("1234.swf",LoaderMe)
The problem is that it takes some milliseconds for it to load into the empty movieclip and during this small seconds of time I see a white background.How do I manage to load the swf without any delay?
View 1 Replies
Sep 4, 2009
I have a rotating menu that when clicked rotates and loads in swf movies, OnClick.The problem I seem to be having is that because the swf movies load in on click it seems to be causing the rotation of the menu not to run smooth.Is it possible to get the swf movies to load in once the action of the click has completed its action. some kind of 2 second delay before the movies load in? what happens:you can click or mouse scroll through the menu, when you click, the action repositions the selected Item (ActiveItem) in the center and resizes larger. this works great, is it possible after this action is complete to then load in the swf movies?? URL...you will see at the moment onClick the movies load straight away which makes the rotation not smooth when rotating around.I can't seem to get the mouse scroll to work the same function as the click at the moment also..
View 32 Replies
Sep 4, 2009
I have a rotating menu that when clicked rotates and loads in swf movies, OnClick.
The problem I seem to be having is that because the swf movies load in on click it seems to be causing the rotation of the menu not to run smooth.
Question: Is it possible to get the swf movies to load in once the action of the click has completed its action. some kind of 2 second delay before the movies load in??
what happens: you can click or mouse scroll through the menu, when you click, the action repositions the selected Item (ActiveItem) in the center and resizes larger. this works great, is it possible after this action is complete to then load in the swf movies???
to see how the movie runs at the moment this is the link: [URL]
you will see at the moment onClick the movies load straight away which makes the rotation not smooth when rotating around.
I can't seem to get the mouse scroll to work the same function as the click at the moment also.....thats for another day
View 9 Replies
Sep 4, 2009
I have a rotating menu that when clicked rotates and loads in swf movies, OnClick.
The problem I seem to be having is that because the swf movies load in on click it seems to be causing the rotation of the menu not to run smooth.
Question: Is it possible to get the swf movies to load in once the action of the click has completed its action. some kind of 2 second delay before the movies load in??
what happens: you can click or mouse scroll through the menu, when you click, the action repositions the selected Item (ActiveItem) in the center and resizes larger. this works great, is it possible after this action is complete to then load in the swf movies?
to see how the movie runs at the moment this is the link: [URL]
you will see at the moment onClick the movies load straight away which makes the rotation not smooth when rotating around.
I can't seem to get the mouse scroll to work the same function as the click at the moment also.....thats for another day
View 2 Replies
Mar 16, 2004
I'm determined to have my external .txt file load into my dynamic field without ANY DELAY WHATSOEVER.
It seemed like the onLoad method of the LoadVars object would handle this nicely, however it does not work for me.
I placed the following code on the first frame of my movie:
loadText = new LoadVars();
loadText.load("content.txt");
loadText.onLoad = function() {
[Code]....
It displays fine but there's still a delay. I figured the content from my .txt file would be loaded by now (its 2KB in size and has html tags embedded).
How can I properly "preload" my external text?
View 3 Replies
Feb 14, 2006
Since my earlier post might not have been clear I have made some changes to the uploaded example Fla. I am struggling with the delay from the xml slideshow in this tut: [URL] Everything works fine when publishing the swf from the slideshow flas. The problem happens when loading these swfs into an mc of another fla (the "mockup fla" in my example) The example mockup swf loads 2 slideshow swf�s . Swf 1 contains 3 jps and swf 2 contains 1 jpg. When loading swf 1 first, the only jpg for that slideshow is loaded (yes, only loading one pic for a slideshow seems strange but this is just to clarify the issue). Everything works fine so far. Now I load the the first slideshow swf with the corresponding button. The 3 jpg�s load and loop with a delay like planned. All good. Now load the 2n�d swf again....... now the single jpg always loop reloads. Why is this happening?
[Code]...
View 4 Replies
Sep 4, 2009
I have a rotating menu that when clicked rotates and loads in swf movies, OnClick. The problem I seem to be having is that because the swf movies load in on click it seems to be causing the rotation of the menu not to run smooth.
Question:
Is it possible to get the swf movies to load in once the action of the click has completed its action. some kind of 2 second delay before the movies load in??
what happens: you can click or mouse scroll through the menu, when you click, the action repositions the selected Item (ActiveItem) in the center and resizes larger. this works great, is it possible after this action is complete to then load in the swf movies?
to see how the movie runs at the moment this is the link: [URL]
you will see at the moment onClick the movies load straight away which makes the rotation not smooth when rotating around.
I can't seem to get the mouse scroll to work the same function as the click at the moment also.....thats for another day
View 4 Replies
Sep 24, 2009
Just finished building my photography portfolio www.tonerayphotography.co.uk in Flash CS3 using some Action script 2. When I first uploaded the site in Firefox 3.5 the menu buttons were `stuck` and there was a delay of about 30 secs before I could use them. Once I finally got use of the menu buttons I later returned to the site and it worked perfectly. Is this because the site was now in the cache of Firefox?
On my stage timeline there is one navigation movie clip holding aboutl 50 of my photos. Is this delay due the size of this movie clip trying to load?
View 1 Replies
Mar 16, 2004
I'm determined to have my external .txt file load into my dynamic field without ANY DELAY WHATSOEVER.
It seemed like the onLoad method of the LoadVars object would handle this nicely, however it does not work for me.
I placed the following code on the first frame of my movie:
loadText = new LoadVars();
loadText.load("content.txt");
loadText.onLoad = function() {
aboutrandi = this.about;
}
stop();
Then further along the timeline, I display content in my dynamic textfield by placing the following code:
my_mc.text = aboutrandi;
It displays fine but there's still a delay. I figured the content from my .txt file would be loaded by now (its 2KB in size and has html tags embedded).
How can I properly "preload" my external text?
View 3 Replies
Mar 11, 2011
I've written some code that ads a number of movie clips from the library to the stage with a loop. Each clip has a function that makes the clips visible and animates them in. Previously this works fine, I add the clips which sit on screen invisible until the activate function is called - it works fine. However, if I add the clip dynamically and call the function in the same block of code it doesn't work. I've added 'trace' code to the function being called to see if it activates but it doesn't.
I'm guessing the function doesn't become available immediately, perhaps not until the next frame and I've also noticed this problem with timeline based graphics - they have to be added a frame earlier than when a function they contain is called.
Here's my code:
for (i=0; i<4; i++) {
attachMovie("nomCirMC","tCir"+i,i+500);
targ = eval("tCir"+i);
[Code]....
View 7 Replies
Jun 17, 2009
Whenever I download the source code from an internet location, and import that into my Flex workspace, I always get "unable to load xyz.swc" error. Where xyz is any swc file being used in that project.
E.g. I have got the source code (by right click -> View Source) of this cool custom component
[URL]
But I get lots of error of different swc not loading. Though all the swc files are present in libs folder of the project!
View 3 Replies
Feb 23, 2009
I want to create a function based (not frame) delay of about 10 seconds to the function at the start of a flash movie, the code only needs to run once.I'm very new to actionscript and have been given links to SetInterval and SetTimer examples but they all seem to be very complex.The function is below. I believe it's possible to add the commandTimer(delay:Number, repeatCount:int = 0) how me to a simple example.
onClipEvent (enterFrame) {
framePos = int(_xmouse / 100 * _parent._totalframes);
if (framePos < 0) {
[code].......
View 4 Replies
Jun 21, 2010
I cant "center" my project, like you can see its "fixed" (yellow lines) in the left side and I cant see "invisible" part of project... (area around the project). how can I move my project so I can see the not-project area around the project. (picture 2).
At the moment situation... (cant see that area around the project)
http://img19.imageshack.us/img19/1186/68553623.png
View 2 Replies
Nov 18, 2010
I don't know why the swf file won't work in the flash I used loader to put the swf file into the stage but it doesn't do it.I plays fine when I just open the swf file in Flash Pro CS-4 but when I put it into a flash, it doesn't work.
View 2 Replies
Mar 27, 2011
i'm creating a button to load my 360 panorama swf onto my stage, it works but it appear at different size and it appear on my button, i decide to solve it by using an empty movie clip called "container" This is my code:
[Code]...
View 1 Replies
Jul 31, 2009
I'm working on an image gallery in Flash that plays a slideshow of different images I have on my hard drive. I've got the basics of it working, but I'm still stuck on something. If my images are in the same folder as the Flash project file or a sub-folder of it, then it works fine. However, I can't figure out how to load images from some other folder. In my case, the Flash project is located at "~/Programming/Flash/Projects/slideshow/" and the images I want to load are at "~/Pictures/Gallery/". Using a normal path didn't work so I figured I could access them with a file:// path, but that doesn't work either gives me "Error #2035: URL Not Found"). Is there a specific way you have to format the file path in Flash, or is it just not possible?
View 3 Replies
Jul 7, 2011
I'm trying to create an as3 project that dynamically pulls images from a database and sticks them into the framework of a flash movie that I making with this. Currently I am following a tutorial (in as2, and I am converting it to as3 as I go along) and am trying to get images to load from the same directory as the project, but I am having issues with the Loader. I am a complete newb at as3 and as such have almost no idea what I am doing,Here is the entire code from my project.
import flash.net.URLLoader;
import flash.events.Event;
import flash.net.URLRequest;
[code]......
View 2 Replies
Jun 11, 2006
[Code]...
Iam trying to create a preloader for my XML files loading to my project. This tutorail is working fine. but only for one file. I need to create one preloader for all my XML files(6 XML files loading in the first frame.)
View 3 Replies
Jan 26, 2010
Once you load an actionscript page from scratch (in my case loading XML data from a file, initializing various other elements in a fairly time consuming way) if you navigate away from that page and then return to it, (via the browser 'back' key for example) is their a way to forego the previous initialization and just immediately bring up the previous Actionscript page in its fully initialized state.
View 2 Replies
Nov 7, 2010
I have created an X*Y grid of rectangles that cover up a movieclip (R). I put these into a 2d array (for easy access) and in a container movieclip which I use as mask over R. Now when I move one of the small rectangles R.width to the right when I am still in the constructor, a small bit of R will become invisible. But when I do this inside the function which handles mouse events, nothing seems to happen.
ActionScript Code:
package documentClass{
import flash.display.MovieClip;
import flash.events.Event;
[code]....
View 0 Replies
Feb 7, 2011
I installed cs5 creative suite on windows 7 64bit, I've got cs4 creative suite installed, all programs work fine, only flash cs5 has a problem, when I try to launch it, it loop after the write "I'm creating the workspace ... " (similar). It loop to infinite, I see the logo and a window with label = "flash cs5", into the window there isn't nothing, only a white page with the "cursor wait".I tried all the advise by adobe (on google cpsid_82252) but nothing work fine ... I re-installed all creative (after WinCS5Cleanupscript) but nothing ...
View 3 Replies
Jul 12, 2009
Assume you have a variety of number or int based variables that you want to be initialized to some default value. But using 0 could be problematic because 0 is meaningful and could have side affects. I have been working in Actionscript lately and have a variety of value objects with optional parameters so for most variables I set null but for numbers or ints I can't use null. An example:
package com.website.app.model.vo {
public class MyValueObject {
public function MyValueObject (
_id:String=null,
_amount:Number=0,
[Code] .....
The difficulty is that using 0 in the above code might be problematic if the value is not ever changed from its initial value. It is easy to detect if a variable has a null value. But detecting 0 may not be so easy because 0 might be a legitimate value. I want to set a default value to make the parameter optional but I also want to later detect in my code if the value was changed from its default without hard to debug side affects. I suppose I could use something like -1 for a value. I suppose it depends on the nature of the variable and the data.
View 7 Replies
Apr 19, 2010
As I currently understand, if an event listener is added to an object with useWeakReference set to true, then it is eligible for garbage collection and will be removed if and when the garbage collection does a sweep.
public function myCustomSpriteClass() //constructor {
this.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownListener, false, 0, true);
this.addEventListener(MouseEvent.MOUSE_UP, mouseUpListener, false, 0, true);
}
In this case, is it not appropriate to initialize an object with weak references event listeners, incase the garbage collector does activate a sweep removing the objects event listeners since they were added during initialization of the object? In this case, would it only be appropriate to create a type of deallocate() method which removes the event listeners before the object is nullified?
View 1 Replies
Oct 25, 2010
I am loading a component which makes a HTTPService call to get data that will then be used to set certain variables in the component. I make the HTTPService call in an init() function (for the initialization event) and then set the variables according to the data received in the HTTPService result handler. However, the variables are still null at both the initialize stage and at the creationComplete stage. If I try and read the variables in a creationComp() function (for the creationComplete event), those variables are still null. Is this correct?
I guess I don't understand the flex initialization cycle very well. When are those variables actually set and available to be used? I need to manipulate those variables automatically after the component loads. Is there an event that comes after creationComplete that is appropriate or some other way to approach this? I am using Flex 3.
View 2 Replies
Sep 16, 2010
I work mainly in C++, and at work we use this awesome autonomous singleton pattern where you automatically add statically instantiated classes to some global list. If you're familiar with c++, imagine something ala:
class CuteSingleton : public ISomeInterface
{
*** stuff ***[code]...
So basically, CuteSingleton is instantiated at DLL load time and added to a global list of ISomeInterface interfaces. This is really powerful because it lets us rapidly prototype tons of code without polluting our existing codebase by having to include these prototype files, instantiating classes like CuteSingleton in a big initializer list somewhere, etc.I've been trying to figure out how to do something similar in actionscript for a few days now and I'm coming up empty handed. All I want to do is have this code instantiate this class without having to reference it in some other files:
package EntitySystem
{
public class EntityManager extends AutoGameSystem [code].............
View 4 Replies
Feb 21, 2009
I have two questions.First: I created this class, which supposed to create sort of 3D cube
Code:
package
{
[code].....
View 3 Replies
Dec 3, 2010
I'm trying to buid a video player application usin the Youtube API, which is loaded remotely from their servers as described [URL]...reference.html Basically I want to add a playList via XML or flashVars which would be stored in the Model among other data taken from the video feeds of youtube by HTTP request. The issues are:
1.- I don't know where the youtube API would fit in the MVC pattern, because it has two parts, the Loader instance that you can add to the display list and the API Object itself that is more like a controller. My first approach has been to create a controller class which loads it and initiates it. But then I have to provide a reference of the loader to the View. Should I do it using a setter in the view, dispatching an event and then a listener in the view gets this reference from the controller, or including the reference in the model??? I'm a little bit lost here.
2.- On the other side, I don't know how to implement the strategy pattern betwen the view and the controller in this scenario. Should I leave the whole initialization process outside the MVC pattern? It's not that I'm obsesed with design patters, I'm just trying to learn how to use them and put myself this as an exercise: Build a videolist player for youtube so that it's easy to add, let's say Vimeo support later.
View 1 Replies