ActionScript 3.0 :: BulkLoader Breaks With Flv?

Nov 16, 2009

I'm using bulkLoader to load an mp3 and an flv using their simple-example.as

It works fine if I make the SimpleExampleMain the file's class, loads sound and video and plays them both when they're finished. However, if I DON'T make it the class and just use:

Code:
var se:SimpleExampleMain=new SimpleExampleMain();

it loads both, plays the audio fine, but doesn't show the video?? It says that it's loaded, but it doesn't show anything. NOTHING is different except it's not the file Class...

Here's the SimpleExampleMain.as:

Code:
package{
import br.com.stimuli.loading.BulkLoader;
import br.com.stimuli.loading.BulkProgressEvent;

[Code]....

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Bulkloader Won't Play The FLV

Apr 19, 2010

i'm working on a project that uses a lot of external files (sounds, videos...)So I decided to use the class Bulkloader to load my items.

First item I try to load : i'm stuck.The item (a flv) is loaded, but is not playing once the COMPLETE event is fired.All the code above is in the first frame of my flash. (I don't like to work with external classes).

Code:
import br.com.stimuli.loading.BulkLoader;
import br.com.stimuli.loading.BulkProgressEvent;
import flash.events.*;

[code]....

The 'loaded' string IS traced so everything works fine until that.Seems it is the resume() function (or something else ?) that do not work.

View 1 Replies

ActionScript 3.0 :: Bulkloader As An Option To Library?

Jan 28, 2009

I'm having a little issue during my project, cause I can't use those "normal" preloaders. The problem is that I have all the website-graphics in the library, export in frame 1 (because I don't have any more frames than that, everything is done by actionscript), so I need some magic trick to show the loading bar, while loading, though everything is in the library... I tried this one here, to load my stuff from another swf :[URL] BUT... it gave me this little error here:

[Code]...

View 0 Replies

ActionScript 3.0 :: BulkLoader FLV Metadata Error ?

Jun 2, 2010

I'm having a particularly frustrating issue with the BulkLoader API [url] that I thought perhaps someone here might be able to help resolve. What I'm trying to do, is to capture the metadata from a loaded .flv (through Bulkloader) so that I can check its duration. In all my efforts to facilitate this, Bulkloader either misfires once the video has loaded and/or returns null. For the sake of preventing redundancy, here is what I've tried/checked so far...

-I've pulled the metadata of my video(s) through a simple custom net connection... so it is there, and I can grab the duration this way. However, in this particular case, I need the data from BulkLoader.

-I've encoded/re-encoded the video(s), and have also injected custom data. Still no luck.

-I've changed the loading parameter "pausedAtStart" to true, as suggested, and have used netStream.seek() to jump to later frames or back to the first.

Needless to say, this is a very frustrating issue that I just can't seem to find a way around. Here is a link to my source files w/Bulkloader library: [url].

Here is a look at the code:

ActionScript Code:

View 2 Replies

ActionScript 3.0 :: How To Use Flash BulkLoader Library

May 31, 2010

How can I use the bulkLoader library? I downloaded it, but I don't know how to link it with my .fla file.

View 2 Replies

ActionScript 3.0 :: Bulkloader - Multiple Instances Of The Item

Feb 23, 2010

I use BulkLoader to load images for the application. But when I try to use them, I can display only one instance of each image. If I have repeats, the image actually displays only once, in the last occurrence. How can I create multiple instances of the loaded items?

[Code]....

View 4 Replies

ActionScript 3.0 :: Duplicate Movieclip Loaded Through BulkLoader?

Jan 18, 2011

I'm currently using BulkLoader to load in swfs as MovieClips. What I'm trying to do though is duplicate the loaded movieclips and attach them to other clips?

I seen something that senocular posted about creating duplicates of display objects in AS3 but it didn't seem to work with BulkLoader and swfs?

Is there other ways to duplicate loaded movieclips?

View 1 Replies

ActionScript 3.0 :: Typing The Content Of LoadingItem From A BulkLoader?

Sep 21, 2008

I have a bit of an elaborate loading setup I have written asa reusable framework. Right now I have this one kink in it that Ican't get passed.I have class HeatmapComponentController which is a simpleclass extending another class BaseCompoentController.HeatmapComponentController is the DocumentClass of another moviecalled heatmap_component.swf. After my BulkLoader's COMPLETE eventis fired (having fully loaded the swf) I try to use theLoadingItem.content as a BaseComponentController... like so...

private function _onLoadComplete($evt:Event) {
var _baseComponentController:BaseComponentController =
loadingItem.item.content as BaseComponentController;

[code].....

View 2 Replies

ActionScript 3.0 :: Preloading Multiple Images From Xml With BulkLoader?

Sep 3, 2009

Anyone have any experience with bulk-loader for multiple files? Its great for preloading single files, but I am now trying to preload essentially a folder of images. The images have different names (and will change over time), so I can't just create a for loop to preload for example 'image01' then 'image02' etc. They are referenced via XML however, and I'm wondering how I could loop through those, and use bulk-loader to retrieve these...? Essentially I'm confused about integrating XML nodes with bulk-loader, and then also about how to do it with multiple images...?

View 1 Replies

ActionScript 3.0 :: Access Function Of A Loaded Swf With Bulkloader?

Oct 7, 2010

My problem maybe a development problem is that i've a preloader file.This preloader with bulkloader load and external swf that is the index file.Now because of i'm using the preloader every stage reference in the index class like stage.stageWidth will generate a #1009 error. So my question is how can i access to the an index class function so that when the preloader's stage will resize some index sprites must will assume the new width of the stage?

View 0 Replies

Actionscript 3.0 :: Change Name Of Movieclip Loaded With BulkLoader

Aug 18, 2009

I'm using BulkLoader as my main loading class for the project I'm working on. I would like to know how to set the name of a MovieClip that has been loaded with BulkLoader. Here's an example of my problem:The error I get is as follows:Code: Select allError: Error #2078: The name property of a Timeline-placed object cannot be modified.I have tried to set the name of the movieclip before I load set it to the swf that was loaded with BulkLoader, like this:Code: Select allvar random:MovieClip = new MovieClip();random.name = "random";random = _bulkLoader. getMovieClip ("randomSwf. swf");However, this results in the name property being changed to the random instance name that flash assigns it when it gets loaded in.So my question is, is there any way I can change the .name property of the movieclip that is loaded in with BulkLoader, so I can get access to it through the getChildByName() method?

View 3 Replies

ActionScript 3.0 :: Access Function Loaded Swf With Bulkloader?

Oct 7, 2010

i've a preloader that load an swf with bulkloader. How can i access to a function of the loaded swf?

View 3 Replies

ActionScript 3.0 :: BulkLoader - Reference Loaded Clip And Load More?

Nov 17, 2009

I'm using bulkLoader to load my mp3 and flv files (thanks to dawsonk for hooking me up with the answer there), and now I need to be able to play/pause and jump ahead and back in the movie that I loaded, but I can't figure out how to reference it?Also, when I go to load another movie/audio from a button click, do I need to do anything with the old instance, or will flash take care of that??

Here's the class:

Code:
package{
import br.com.stimuli.loading.BulkLoader;
import br.com.stimuli.loading.BulkProgressEvent;
import flash.events.*;

[code].....

View 2 Replies

ActionScript 3.0 :: Get Access Instances After Load An External Swf (bulkLoader)?

Jun 8, 2010

The problem: how can I get access to instance items after an external swf  loaded?[code]...

View 2 Replies

Actionscript 3 :: BulkLoader Behaviour Changing When Loading From Internet

Jan 19, 2012

I'm using BulkLoader to load in images, SWFs, XML, etc into a game. When working local, the content property on the LoadingItem is always good depending on the type of asset: Bitmap if it's an image, MovieClip if it's a SWF etc. When I test the same swf, but under localhost, or online, the content property is always a Loader object. Is this normal? Am I missing out a parameter or something?

View 1 Replies

ActionScript 3.0 :: Bulkloader Starts Playing Swf Even Loading Not Finished?

Apr 28, 2010

i am loading some external swfs with the bulkloader. The strange thing, they start playing in the background ( i can hear the sound) without even having added them to the stage.

Here is my code:

ActionScript Code:
public function init():void
{
bLoader = new BulkLoader("bLoader");

[Code].....

View 0 Replies

Actionscript 3 :: Displaying Content From BulkLoader Which Is Typed As MovieClip In Flex App?

Dec 24, 2009

I am using bulkLoader to load dozens of SWFs into my Flex app, and all of SWFs are static (1 frame only). 'Everything' works fine, however, I'm not sure how to handle data from bulkLoader... I am getting MovieClip types for all of my SWFs, and I am not sure how to tell to Image or SWFLoader classes to use some of those MovieClips as source.

View 1 Replies

As3 :: Flash - Loader Library Comparison: Bulkloader - Loadermax - Queueloader

Mar 21, 2011

i've been using different loaders in the past, here are the most popular:.

[Code]...

which one is the best one and for which challenges?

View 1 Replies

ActionScript 3.0 :: "Refreshing" A Swf Loaded With Bulkloader?

Apr 11, 2011

I am successfully loading and using several swf's with bulkloader. They are games, and when the user is done with one they are returned to a main menu. However if they go back to the game it is is in its finished state. Is there a way to force bulkloader to "refresh" the swf to it's original state?

View 1 Replies

ActionScript 3.0 :: Line Breaks In IE?

Aug 31, 2011

I am passing a text from javascript to flash. and spliting the text based on "<br>"
 
Here is my code

Javascript
<script>  function printLabel(){ var label = document.getElementById("label1").innerHTML;  thisMovie("main").sendText(label);
}

[Code]......

View 8 Replies

ActionScript 2.0 :: Css Line Breaks?

Jul 16, 2009

When I use this code:

HTML Code:

<p><span class="boldgold">Flash Player now supports Cascading Style Sheets!</span><br/>
Macromedia Inc. announced today a new version of Flash Player that supports Cascading Style Sheet (CSS) text styles. </p>

it is normally formatted like this:

Quote:

Flash Player now supports Cascading Style Sheets!Macromedia Inc. announced today a new version of Flash Player that supports Cascading Style Sheet (CSS) text styles.However, in Flash, when I load the external text and use CSS to format it, I get an extra line break:

Quote:

Flash Player now supports Cascading Style Sheets!Macromedia Inc. announced today a new version of Flash Player that supports Cascading Style Sheet (CSS) text styles.The way around it is to let the text after the break tag follow that break tag:

HTML Code:
<p><span class="boldgold">Flash Player now supports Cascading Style Sheets!</span><br/>Macromedia Inc. announced today a new version of Flash Player that supports Cascading Style Sheet (CSS) text styles. </p>

Isn't there a way (as2 code?) to have flash format the text just like a browser would if it were a normal html page?

View 0 Replies

ActionScript 2.0 :: Have Some Line Breaks In XML?

Jul 13, 2005

I want to have some line breaks in my XML. I have a the code for ignore white spaces which is eliminating my line breaks. i have tried <br> which doesnot work.

View 1 Replies

ActionScript 3.0 :: Using Line Breaks In XML?

Feb 27, 2007

I've got a list I need to place in an XML file, and I need it to display as a list when it's brought into Flash. However, and do not work.

View 9 Replies

ActionScript 3.0 :: XML Mysterious Line Breaks?

Sep 1, 2008

I'm new to flash and AS3, and have just figured out how toload an external XML document into a textField, which is thenstyled via an external CSS document. The styling works fine,colours change, font size changes etc... But! And here's myproblem, when the xml data is loaded into the textfield, where Ihave nested styles, it creates a line break.I have created a textField on the stage with an instance nameof: eventsContentTextFieldWhich is set to dynamic, scrolling (with a UIScrollBarcomponent), html and multiline.

View 6 Replies

Professional :: Changing File Name Of .swf Breaks Everything?

Oct 8, 2010

I have changed the "src=filname.swf" in the <embed> tag as well as the "name=filename" part of the <embed> tag however to no avail. The video still no longer plays after I rename the file. It was built in ActionScript3 I think.

View 1 Replies

Php :: Use Line Breaks In Flex With String?

Jun 23, 2011

This is the MXML I have

[Code]....

None of them create a new line in flex they are both rendered to the screen. How can I create a new line with a php string?

[Code]....

but if I do name.text=data.string; it doesnt even though data.string has the exact same value;

View 3 Replies

Actionscript 3 :: AIR File Too Big Breaks During Installation?

Mar 21, 2012

A client is having me convert an HTML5 video web application that I've already built into an AIR app.

The end users are going to need this to work with no internet access, so I MUST include a LOT of video files with the installer. This works fine on my machine, but my client can't install it because the .air file is too large and they don't have enough RAM. We'll need this installed on a number of laptops that aren't super powerful.

My SDK is up to date and we're using AIR 3.1. Has anyone else run into a similar situation? Is there any workaround? For instance could I either include both the installer and the .air in a zipped folder, then have the installer move the video files to the appropriate location, or use AS to have the installer download the files (they will have internet access when installing).

View 2 Replies

ActionScript 3.0 :: GotoAndPlay Breaks Code?

Apr 27, 2010

I'm attaching the fla file for view and playing pleasure, I seem to be running into an issue where I have a myriad of KEY_UP and KEY_DOWN events that work beautifully the first time through the swf. When I hit either of the "Play again?" buttons, which are coded back to the first frame with a gotoAndPlay(1) function, the swf plays again but all the keyboard events don't work. The third time through the if/else function that decides whether or not your little spaceship crashes or not doesn't work.

View 1 Replies

ActionScript 3.0 :: HtmlText And Line Breaks?

Jul 12, 2010

For some reason or another, after a </strong> or </em> tag, flash inserts a line break after it.

So it is like this:
This is some BOLD
text and this is some italic
text.

When it should look like this: This is some BOLD text and this is some italic text.

[Code]...

View 1 Replies

ActionScript 3.0 :: HTML Breaks In Labels?

Dec 4, 2010

Alright, so I have a Label (not a TextArea) that I want to contain the text: "Example<br>Stuff" I set the labels htmlText to this text, but for some reason the <br> is ignored. I tried researching information about this problem and people said to use the multiline property on the text object. However, this property is only for TextAreas, and not for Labels. Is there any way to have multiple lines with htmlText?

[Code]....

View 4 Replies







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