ActionScript 3.0 :: Loading Video Through AddChild Method?

Mar 21, 2010

I have a main SWF e-learning tutorial and want to have video pop up on certain screens. over the main area.It would be like a person walking over a screen shot of a program.

1. Should I do an load the video through an Add Child method or load it to another level? User would click a button to see the video.

2. Can you pull out all the back ground in a program like Adobe Premiere and have a transparent background or will I need to put some form of a background in like the screenshot.

View 2 Replies


Similar Posts:


ActionScript 3.0 :: AddChild From A Class - Get The Error "1180 : Call To A Possibly Undefined Method AddChild?

Jun 15, 2011

I'm trying to have a class file which can add objects to the stage via addChild; however, when I call addChild from within the class file, I get the error "1180: Call to a possibly undefined method addChild." I've tried importing flash.display.* and that doesn't fix the problem. Does the class file have to extend Sprite or MovieClip to be able to add objects to the stage?

View 8 Replies

ActionScript 3.0 :: Box2d Addchild - 41061: Call To A Possibly Undefined Method AddChild Through A Reference With Static Type Class

Jan 16, 2012

I have downloaded Box2d ([URL]) and created a project that looks like this: [URL]. catalyst is the green cube and it has the base class "shapes.box", it is inside "world" which has the base class "wck.World". What i want to do is to add another "catalyst" from the library inside "world" when i click on add_btn. I tried to accomplish this by this code:

[Code]...

Symbol 'buttons', Layer 'Actions', Frame 1, Line 41061: Call to a possibly undefined method addChild through a reference with static type Class.

View 9 Replies

ActionScript 3.0 :: Loading A Video Using The URL Method?

May 7, 2010

I am trying to load a video using a URL, and I keep getting this error:

Code:
VideoError: 1005: Invalid xml: URL: "http://pegasus.dev.webriverinteractive.com/API/Resource.ashx?ResourceID=16&FLVPlaybackVersion=2.1" No root node found; if url is for an flv it must have .flv extension and take no parameters

[Code]....

View 5 Replies

ActionScript 3.0 :: Error With AddChild Method ?

Oct 25, 2010

I'm trying to create some objects at runtime in AS3 rather than at authortime in the Flex part of the application. My problem is adding them to the stage. The addChild method fails when I add the Textfield to the Panel, and I've tried using "this.addchild", and AddElement, but either it throws an exception or won't compile.

The error message is: [Fault] exception, information=Error: addChild() is not available in this class. Instead, use addElement() or modify the skin, if you have one.

Here's the code:

Code:

View 0 Replies

ActionScript 3.0 :: AddChild Is Undefined Method

May 26, 2009

I have four classes -

class Init - intialises some variables, and is the doc Class.
class Street - loads XML data for, say, a number of streets in a particular area
class House - loads in the houses data for one particular street
class DisplayHouse - displays graphics on screen for the houses

This all seems to be working apart from the actual graphical display of objects.In the ouput window I am seeing the results I need to see pertaining the the XML data loaded.The problem is that in House - I have the code :

var new _house = new DisplayHouse();
addChild (_house);

and DisplayHouse is a simple graphics-shape:

var drawHouse:Sprite=new Sprite();
code... to draw house!
addChild(drawHouse);

Now, when I comile, I keep getting this error:

Location: House.as
Description: 1180:call to undefined method addChild
Source: addChild (_house);

House extends sprite and has import Sprite and all that! - infact all the classes have the same imports and extend Sprite!semi-colons are all in right places, there are no typos!I simply cannot understand why addChild is an undefined method in this case!

View 1 Replies

ActionScript 3.0 :: Error When Calling AddChild Method?

Apr 7, 2011

I created a new class as DraggableObject in Flash CS5 with the following definition:

package {
import flash.display.MovieClip;
public class DraggableObject extends MovieClip{
public function DraggableObject(){

[Code].....

Before running the code, I had a simple rectangle object converted to a movie clip and exported it to actionscript with the class of 'DraggableObject'. I just had it in library (i. e. no other instance in the stage). What I wanted is to create an instant of it at run-time ( 'draggableObject' ) and have it added to the display list of the stage, throgh its method 'draggableObject.addToStage()'.

And I don't have an idea as to what 'null object' referes to here. Since I created an instance in the line "var draggableObjectraggableObject = new DraggableObject()", it cann not be null....? When I commented out the line 'stage.addChild( this );' in the class definition (line9) it works with the trace statement output.

View 6 Replies

ActionScript 3.0 :: Call To Possibly Undefined Method AddChild

Nov 4, 2009

when i use addChild method in my class I got this message . Why it shows error "Call to possibly undefined method addChild"

View 3 Replies

ActionScript 3.0 :: Getting Call To A Possibly Undefined Method AddChild

Sep 30, 2010

In Flash CS5 I am trying to load an image from a class and I am getting Call to a possibly undefined method addChild. In the class fileNot sure how to fix this as I have a sprite class and believe I have done everthing correct.The image is in the same folder as the .fla and .as file

[Code]...

View 7 Replies

Flex :: What Happens When The AddChild, Or RemoveChild Method Is Called On A DisplayObjectContainer

Jan 27, 2011

I would like to know the internals of that method, in other words what exactly happens when I call that method. If someone can explian it with a list 1,2,3... would be great. including events..

and the addElement method too, if is possible.

View 1 Replies

ActionScript 3.0 :: Call To A Possibly Undefined Method AddChild

Mar 3, 2011

I've got a function that call's on a class too make a chess board. The problem is, is that I'm getting this Error:1180: Call to a possibly undefined method addChild.Now if I just copy paste CreateBoard into Exercise1.as it works and creates a board but if I add it as a function too BoardSquare it works and traces out 32,32 but doesn't display anything![code]

View 9 Replies

ActionScript 3.0 :: Refrencing Children Added By AddChild Method?

Oct 10, 2009

I used to have the checkbox MovieClips in the menuListingClass, but I instead wanted to add them using something like addChild(). However when I try to reference the checkboxs later in the same way as I did before, I get an Error #1010: A term is undefined and has no properties. What do I need to add to reference the checkboxes like I did before?

Code:
for (j=0; j<styles.length; j++)
{

[code]....

View 4 Replies

Flash Builder AddChild Method Error In Custom Component

May 6, 2011

I am attempting to make a collapsing list like the ones in google adwords. The compiler is telling me that addChild is not a valid method. Here is my code:
package comps {
import spark.components.Button;
import spark.components.Group;
import spark.components.TextArea;
public class CollapsibleList extends Group {
[Code] .....
I am assuming the compiler isn't lying to me so how do I get those objects (children) to appear?

View 1 Replies

ActionScript 3.0 :: 1180 - Call To Possibly Undefined Method AddChild

Aug 3, 2010

This ActionScript Code:
package {
import flash.events.*;
import flash.display.*;
import flash.utils.*;
import flash.ui.*;
[Code] .....

Generates this error:
Code:
C:UsersHaavardDocumentsFlashTurret 1.75 ZombieMaker.as, Line 22
1180: Call to a possibly undefined method addChild.

View 3 Replies

ActionScript 3.0 :: 1180: Call To A Possibly Undefined Method AddChild?

Jan 27, 2011

I'm making a bonehead error but I 've been designing this since last night and I just started coding it, so I'm not at my sharpest ATM.

Code so far;

ActionScript Code:
package
{
import flash.display.*;

[Code]....

And, yes, automatically declare stage instances is checked under as3 settings.

View 4 Replies

ActionScript 3.0 :: 1180: Call To A Possibly Undefined Method AddChild

Jul 30, 2011

I get the folowing error in one of my classes and not too sure why?
 
[Code]....

View 5 Replies

ActionScript 3.0 :: Error - 1180: Call To A Possibly Undefined Method AddChild

May 19, 2011

I'm trying to get an image to appear on a screen through a class, and I keep getting:

Quote:

Location: Stuff.as, line 21
Description: 1180: Call to a possibly undefined method addChild.
Source: addChild(sp);

I've tried to fix it on my own, but it isn't working.my code for the files is below.

Stuff.as
ActionScript Code:
package newRPG_Class {
import flash.display.Sprite;

[code]...

View 4 Replies

IDE :: 1061: Call To A Possibly Undefined Method AddChild Through A Reference With Static?

Aug 11, 2009

I am a newbee and just starting to learn about AS3. Copied some ideas and tried to paint a single particle on the stage for starters. No success! I get this...1061: Call to a possibly undefined method addChild through a reference with static type flash.displayisplayObject.In an "Particle.as" file I have this code...

package
{
import flash.display.*;

[code].....

View 2 Replies

ActionScript 3.0 :: ReferenceError: Error #1070: Method Addchild Not Found On Flash.display.MovieClip

Oct 31, 2010

I typed this into my adobe flash ide

PHP Code:
var bitmapData:BitmapData = new BitmapData(100,100);
var bitmap:Bitmap = new Bitmap(bitmapData);
super.addchild(bitmap); 

and compile it, the error pop up like the above (in the title) ReferenceError: Error #1070: Method addchild not found on flash.display.MovieClip I don't understand, could someone point out what is the error in my code?

View 2 Replies

ActionScript 3.0 :: Call To Possibly Undefined Method AddChild - Convert A Auto-scrolling TextField Into A Class

Jan 18, 2011

I'm new to oop and I'm trying to convert a auto scrolling TextField into a class. I guess it has something to do with there not being a stage when the class is instantiated but I'm not sure how to get around it. my code:

[Code]...

View 3 Replies

ActionScript 3.0 :: Error : 1061: Call To A Possibly Undefined Method AddChild Through A Reference With Static Type Class

Jul 13, 2010

I got this Error : 1061: Call to a possibly undefined method addChild through a reference with static type Class.
 
what I'm trying to do :I have create a new class called Graph and make it extends Sprite and  add a scroolpane to my stage and make an empty movie clip called content_mc and make the source of the scrollpane equals to content_mc
 
in the first frame i wrote this code
  
import Graph;
var graph:Graph = new Graph();content_mc.addChild(graph);

View 4 Replies

ActionScript 3.0 :: Loading And AddChild To MovieClips?

Aug 20, 2009

Basically I have this movieclip on stage that is suppose to load another movieclip from an swf. in that swf are 31 copies of the movieclip since theres no duplicateMovieclip function in as3. I am able to load and add child to the movieclips easy with this,

PHP Code:
function duplicateMovieclips():void{
for (var i=0; i<movieclipsToLoad; i++){
movieclipsDuplicated++;
entrys_mc.addChild(mcV[i]);

Below (which I excluded) are other various bits of code to edit the movieclip and what not. I can also remove it just fine with this bit of code here

PHP Code:
function removeF():void{
var repeat:int = 0;
for (var i=0; i<timesToRemove;i++){
entrys_mc.removeChild(mcV[i]);
repeat++;
movieclipsToLoad--;
if(i == timesToRemove-1){
loadSelected(); //THE PROBLEM
}}}

What this swf is trying to do is record the year and the month the user clicks on and then return every day's data from the xml if a day is filled out. when removeF(); executes, i get the error:
Code:
ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
Pointing at entrys_mc.removeChild(mcV[i]);...but when its NOT there, loadSelected(); that is, it works just fine. I even put a trace statement in it. The whole if condition works fine to.

LoadSelected is the one that retrieves the text needed to load in the movieclip. whatever year and month the user selects, it loads the information of it and puts it in a string. then it displays in the dynamic text field inside the movieclip. Also, when SWF loaded it loads all 31 movieclips using this.
Code:
for (var i = 0; i < 31; i++){
var groupMC:MovieClip=MovieClip(clip.getChildByName("group" + i));
mcV.push(groupMC);
trace("repeat # = " + i);
}

View 15 Replies

ActionScript 3.0 :: Keep Re-loading The Same Image - Addchild?

May 29, 2009

I need to reload the same JPG about every second for an indefinite time. Problem is that that right now with addchild it adds the JPG on top of the old one eventually running out of memory from adding so many JPG's Is there a way to specify with addchild() to replace the old one?

[Code]....

View 6 Replies

ActionScript 3.0 :: AddChild - Loading MovieClips In Row?

Jan 30, 2010

I've got a movieClip in my library and it's linkage in my library. How do I code it? It will load 11 of "movieClip" in one row and 11 in second row and they will load one after another one.

View 2 Replies

ActionScript 3.0 :: Images Loading On Top Of Each Other: AddChild - RemoveChild?

Mar 13, 2010

I have images loading into a single mc container every time i click a button. The images are being loaded (from xml data in a data grid) on top of each other every time the button is clicked. This is the latest Ive been working with and doesnt seem to work

Loader();var reqImage:URLRequest=new URLRequest(data_grid.selectedItem.JPG);  imageLoader.load(reqImage); if (imageload.numChildren>0) {  imageload.removeChild(imageLoader);  imageload.addChild(imageLoader);

[code]....

View 5 Replies

Professional :: Addchild() Not Loading External Swf When Run In Browser

Jul 4, 2010

I've created a couple of flash animations, fairly simple, but the whole relies on loading external swf files and then unloaing them.
 
The base file works fine, loads the externals and unloads them (although I need to preven the user from hitting the unload button when there is nothing to unload) and will then load another just fine, IF I run it directly from my file system.
 
I want it to be on a web page, but when you click the button to load the external files, nothing happens.  Safari tells me it cannot find the file, and I'm using the exact same directory to test.
 
So, works fine when testing with flash (CS4) and running directly from the directory in finder, but from a web page, it cannot find the file.

View 6 Replies

ActionScript 3.0 :: Loading Multiple Mcs - They Don't Appear On Screen - Have Added AddChild

Jun 11, 2010

[Code].....

loading multiple mcs - They don't appear on screen - have added addChild

View 7 Replies

Changing Order When Loading Images In As AddChild On Stage?

Jul 30, 2010

I have a movie on stage that acts as a button using the code. person_mc.buttonMode = true;

I load an image onto the stage from my library using addChild(holiday);

What happens is that the person_mc button I have on stage will not function anymore, because I am presuming it is underneath the holiday pic when I loaded it using addChild.

How do I load the holiday pic, so that it is underneath the person_mc?

I know I could do what I did with holiday using addChild for the person_mc, but I do not want to do it that way.

View 3 Replies

ActionScript 3.0 :: Loading 2 Ext Swfs Into Master File Need To AddChild In Order

Mar 28, 2010

loading 2 external swfs into one main file using 1 preloader, I have figured out how to get the preloader to handle the correct # of bytes loaded and such but my 1st swf I want to load onto the stage is a video file and I want it as the background but I don't want it to start until after they are both (the video and main file - 2 external swfs) loaded and then I want to start the video and place it on the stage first, then place the main swf on the stage.

I can get the order right if I place them into my load complete function but then my buttons don't work on the main file.
 
Here is the code:
 
var bytesLoadedVidBG:Number = new Number();var bytesTotalVidBG:Number = new Number();var loader0:Loader = new Loader(); // load video BGvar loadedSWF0:Object;loader0.load(new

[Code]......

View 3 Replies

Professional :: Best Method To Playback Video?

Mar 29, 2011

I import the video manually from the File Tab. I change the stage size to match video (I want it full screen because I have "liquid layout" AS3 code in order to match browser window) I center the video on the stage.I make the video an Object (MovieClip)

And that's it.

The video play well, matching the full brower window and resizing accordingly.

My questions are :

1 - I am making the video a movie clip but is it necessary. I have tried without and it still works!! The only thing I find weird is that the "publishing" doesnt work when the video is not made a MovieClip. (I struggle to center the SWF in the HTML page)

2 - I don't know about the Netstream class. My server is a normal FTP (with PHP MYSQL) but not a streaming server. Would it be appropriate (better) to call the video through AS3 using the Netstream class ? (actually I am not sure of what the Netstream class is for)

3 - I have tried to loop the video using the classic AS3 code (that can be found anywhere). What is funny is that the code works when the movie is not converted to an object. But when it is, the looping doesnt work at all. Do you see a reason why ? (Maybe because the video is imported manually and not an instance created from the Video MovieClip Object ??)

View 1 Replies







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