ActionScript 3.0 :: Loading External Movie With Scrollbar Component Produces Error

Oct 28, 2010

I have a main movie that contains a series of buttons that load different swf files into a loader component.

Each of the secondary movies contains a series of buttons that when clicked load  a movie clip with information specific to that button.

Nothing earth shattering, right...

When I preview the secondary movie it runs as I would expect.

When I bring it into the main movie via the loader component and click any of the buttons to load the secondary movie's movie clip I receive the following errors[code]...

View 3 Replies


Similar Posts:


ActionScript 3.0 :: Error Loading Component On An External Swf?

Nov 9, 2010

I have a game that loads most of the assets of the interface externally (swfs... pngs... mp3's .. etc). Most of this works fine, however,I'm having problems trying to load a SWF that holds a slider component and a few buttons (MovieClips).

Once I've loaded the external SWF that contains the component into my main game logic, I try to access the slider Component. If I dont specify a class type when I do this I get no problems, but if I try to insert it in a variable of type Slider It says it can not cast it.

This causes a problem:

var mySlider:Slider = externalClip_mc.theSlider;

And this seems fine: (Not specifying a class type)

var mySlider = externalClip_mc.theSlider;

The error message I get says something like this:

you can not cast fl.Controls::Slider@114e4041 into fl.Controls.Slider.

I also get the same thing if I try to dispatch a SliderEvent from my external SWF:

you can not cast fl.events::SliderEvent@114e4041 into fl.events.SliderEvent.Why does this happen when I try to access a component and not a member from any other type (int, MovieClip, Number, String ... etc)... ?

View 9 Replies

ActionScript 2.0 ::externally Loading Text - ScrollBar Component In The UI's ?

Dec 14, 2004

I'm trying to do the tutorial on scrolling dynamicly loading text- easy enough...I don't have a scrollBar component in the UI's and when using the one from the open source tutroial it doesn't snap to/resize to text box.....then whne test movie I get **Warning** Scene=Scene 1, layer=text, frame=1:Line 1: The identifier 'loadVars' will not resolve to built-in object 'LoadVars' at runtime.

loadText = new loadVars();

Total ActionScript Errors: 1 Reported Errors: 1

View 3 Replies

ActionScript 3.0 :: Loading URL Within Network Produces Nothing?

Oct 26, 2009

I have a SWF that I am running on a kiosk and the Actionscript is calling a PHP script residing on an internal IP address. As everyone always says, it runs great with the IDE, however when I publish this file and run it, I get nothing. I cannot even output errors and such into a textfield. I'm totally baffled as to how I can debug this.

Code:
//set up request and loader
var request:URLRequest = new URLRequest("http://10.25.241.11/custom/test.php");
var loader:URLLoader = new URLLoader();

[Code]......

View 4 Replies

Javascript :: Flex - Flash Callback Method Produces Error UNLESS Alert() First?

Jan 11, 2010

I have a flex app and I am adding a callback method like this:

private function init():void
{
ExternalInterface.addCallback( "playVideo", playVideo );
}

[code].....

However if I uncomment and run the alert first. I get no error and it works perfectly.My first thought was that the alert was buying time until the script could execute, so i tried to run the script inside a setTimeout() but did not work.

View 1 Replies

Put Scroll Of Tree Component In Left Side Of Component Or Creating A Custom Scrollbar For Tree Component

May 20, 2009

is there any way to put scroll of tree component in left side of component or creating a custom scrollbar for tree component

View 13 Replies

Actionscript 3 :: Calling MovieClip(root) From A Dynamic MovieClip Instance Produces Error 1034

Jan 14, 2012

For some reason, the same code works now, without any problem at all. I don't know what happened, or why, but I no longer have this problem Here's the original post: To put simply, I created a MovieClip, put it with addChild() to stage, and when I tried to call this piece of code:

[Code]...

View 2 Replies

ActionScript 2.0 :: Loading An External Movie Through An External Movie To The Main Movie?

Apr 30, 2003

I am creating a full site in flash. The main movie has an empty movie clip in the middle of the movie to load external movies as the user clicks on the links. Everything has worked good so far as the linking has only gone 1 level deep. However, when I created a new external movie, and had buttons on it for another external page, but yet to open in the main movie, I can't get anything to work. Example.... In the main movie, the user clicks on the archive link, and the external archive movie is loaded into the main movie. Now, on this archive movie, there is a button on it that links to a another movie (say text effects.swf). However, when they click this button for text effects, I can't get it to load into the main movie clip and replace the archive movie that was currenlty there.

View 14 Replies

ActionScript 2.0 :: Loading External Swf Files In A ScrollPane Component?

Sep 21, 2011

I am developping a player with Articulate Presenter and Flash. I would like to put thumbnails that are in a special folder in swf, into a scrollPane. The scrollPane itself is in a clip loaded when I click on the Thumbnails Tab.

Here is my simplified code :

ActionScript Code:
//  I first preload the thumbnailsPanel containing the scrollPane
var thumbnailsPanelClip:MovieClip = completeMenu.attachMovie("thumbnailsPanel","thumbnailsPanel",completeMenu.getNextHighestDepth());
thumbnailsPanelClip._y = 35;

[code]....

Well, my problem is that the ScrollPane is not scrolling until the end of the thumbnails, so I don't know if all the thumbnails are loaded. And even worse, exactly one time on two, the Scroll Bar is not showing at all ... !is it a scrollPane pb ? I use it many times in other parts of my project without any problem ... or is it because there are too many thumbnails ? I have around 30 - 40 to load ..

View 2 Replies

ActionScript 3.0 :: Flash CS4 Professional - External SWF Loading - Having List Component?

Apr 11, 2012

i developed application in action script 3.0 with adobe flash cs4 professional. In this application, i loaded another external swf which is having flash list component, but while loading the swf in main swf it showing TypeError: Error #1009: Cannot access a property or method of a null object reference.at fl.containers::BaseScrollPane/drawBackground()at fl.controls::List/draw()at fl.core::UIComponent/callLaterDispatcher() please, kindly suggest me for this issue.

View 3 Replies

ActionScript 2.0 :: Difference Between Loading External Files Into Loader Component

Jun 11, 2007

Using the MovieClipLoader class, what is the difference between loading the external files into a Loader Component or into an empty movie clip. Will one be quicker? They both worked for me, but I've read using the Loader Component is better. Can anyone confirm this? I would think that avoiding components would make things faster/less file size.

View 6 Replies

ActionScript 2.0 :: Loading External XML On An External Server Into Flash Movie When It Is Uploaded

Jun 4, 2004

[FMX] I am having trouble loading an XML file on an external server into my flash movie when it is uploaded. The data loads in fine when the flash file is on my local computer with the xml file on a server. As soon as the flash file is uploaded the XML data will not load in.

View 2 Replies

ActionScript 2.0 :: Loading External HD Movies With Flvplayback Component Slowed Down On Netbooks

Nov 21, 2010

I've been working on webdesign for some years now, having worked mainly in full flash websites with a lot of actionscripting. Thus I consider myself quite familiar with actionscript but only AS2 as I've still haven't made the cross to AS3 (I know i'm almost 5 years late...).I've been recently hired to convert interactive points on some museums that were working with dvd menu's to flash. I've constructed and programmed everything with no trouble at all using some programing to use a circular menu and the flvplayback component to load external 720P HD movies on f4v format. Everything was working perfectly until I was faced with the real PC's that were being used on the museums. Some of them are okay PC's and so I just had to reduce the quality of the videos a bit (a 20 mb bitrate was too much... lol).

However some of them are the equivalent of netbooks (like the Asus EEE PC) and that's where my nightmare begun.So the real problem is this: the computers can run the HD videos perfectly through the VLC media player. However, using the flash presentation either on flash projector or an swf running through an html on internet explorer results in an unwatchable video all sloppy and with buggy sound.I've even tried loading the videos inside a totally empty flash project which still resulted on the same problems.What happens is that when the flash loads the videos the system usage of the processor results in 60 percent with peaks reaching the 80 percent.The weirdest part is that sites like youtube that run HD movies work on those pc's but my presentation does not.Do you have any suggestions on what might be happening?? Is this a problem that has to do with the FlvPlayback component and that I could solve using the Open Source BetterFlv component instead?

View 6 Replies

ActionScript 2.0 :: Loading A External Swf Into A Movie - Its Loading Only A Part Of It?

Mar 16, 2004

I'm loading a external swf into a movie everything is fine with that. The only problem is that its loading only a part of it. Does anybody know why? Also, this swf is a mp3 player with streaming. The streaming part works but the playback doesn't.If i start only the mp3 player by itself it's working.here is the fla for the player

View 3 Replies

Java :: Flex - Calling A New Method From Mxml Produces "cannot Invoke Method" Error

May 24, 2011

[Code].....

getUser was already in UserService.java. I just created getUser2 and it's identical to getUser. When I try to call getUser2, i get the "Cannot invoke method" error. question: Do I need to specify getUser2 in some other file? like in some configuration file? if so, which one and how do I do it.

View 1 Replies

ActionScript 3.0 :: Error When Loading External Swf

Jun 15, 2009

I am having trouble loading a photo gallery as an external swf. I have included my files.

TypeError: Error #1009: Cannot access a property or method of a null object reference

View 6 Replies

ActionScript 3.0 :: Error When Loading (some) External SWF's

Nov 5, 2009

I've got a few container SWF's that I"m trying to load a navigation and a content area into. Very simple, nothing fancy about the code -

ActionScript Code:
var bodyLoader:Loader = new Loader();
var bodyRequest:URLRequest = new URLRequest("./sub/games.swf");

[Code]....

And when I run it, I get the following error:

TypeError: Error #1009: Cannot access a property or method of a null object reference.

But the confusing thing is that I saved this from the same file that works PERFECTLY with the './sub/intro.swf' file, throwing no errors ... all I did is change the file name.

View 0 Replies

Getting Error 2044 When Loading External Swf Into My Site

May 20, 2010

Ok what i have is a site made from 1 flash file where i am loading external swf files for my picture galleries. now what is happening is in Flash, dreamweaver and when i test the site, everything is working perfectly, the problem is coming when i go into internet explorer go to the site and click on the flash button to go to the picture gallery, that is when it is giving me a Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed.

View 3 Replies

ActionScript 3.0 :: Error 5005 And With External SWF Loading?

Oct 26, 2011

I am creating a relatively simple 10-12 minute animation. I've broken the animation into 34 different movie clips that I control on the timeline by using a timer delay.When I try to export them all together I get the error: ",Line 1: Error 5005: Unknown Error optimizing byte code."

However, when I split the presentation into two halves with the same exact frames and code I don't have the problem.I thought loading an external SWF at the end of the first movie would be a good way to connect everything. However, the SWF continuously loads and won't play through the way it looks when you open the actual SWF file.This is my code for the external loading:
 
var xpos:Number = 0;
var ypos:Number = 0;
var swf:MovieClip;[code].....

View 3 Replies

Flash :: Error With External File Loading?

Jul 19, 2011

I tried to load an image in the same folder of the flash but it didn't work.

package {
import flash.display.MovieClip;
import flash.net.URLLoader;

[Code].....

I tried many ways but still didn't get it right T_T

View 3 Replies

Actionscript 3 :: Loading An External SWF Throw An Error

Nov 19, 2011

I am trying to load an External swf.

But it throws an error when I compile.[code]...

View 1 Replies

Actionscript 3.0 :: Loading External .swf Files : Error?

Mar 23, 2009

I have an application which loads external .swf files into an empty movie clip. This works fine the the Flash Development environment however when I run it in IE then dont load, and when run in FireFox I get the following error: -Error #2044: Unhandled SecurityErrorEvent:.text=Error #2140: Security sandbox violation: file:///C:/Users/Tom iccirilli/Desktop/test/tester.swf cannot load ile:///C:/Users/myname/Desktop/test/TriviaGame.swf. Local-with-filesystem and local-with-networking SWF files cannot load each other.

View 1 Replies

ActionScript 3.0 :: Loading External Swf: 1009 Error?

Feb 23, 2009

Having a problem here. I can load external swf files, but once I started on one the pages I end up with the 1009 errorThey work fine on their ownand the placebo page still loads inside the mainREALLY need to get this working. What should I be doing?index.swf

Code:
var xmlPath:String = "index.xml";
var settingsXML:XML;

[code].....

View 1 Replies

ActionScript 3.0 :: Loading External Swf: 1009 Error

Feb 23, 2009

I can load external swf files, but once I started on one the pages I end up with the 1009 error.

They work fine on their own

and the placebo page still loads inside the main

REALLY need to get this working. What should I be doing?

index.swf

Code:
var xmlPath:String = "index.xml";
var settingsXML:XML;
var tweensArray:Array = new Array();

[Code].....

View 4 Replies

ActionScript 2.0 :: Set Height After Loading An External Movie Into A Movie Clip

Jul 2, 2006

I would like to set height after I load an external movie into a movie clip.

For example,

this.body_mc.loadMovie("body_about.swf");
_root._height = this.body_mc._height;

I always get height as 0, because body_mc is an empty movieClip.

how to access the body_about.swf height as soon as loaded the movie into the empty movie clip?

View 2 Replies

ActionScript 3.0 :: Error #1009  Whille Loading External Swf?

Feb 23, 2009

I tried to load external swf in my mainpage.fla file. when Itest movie in flash, it throws error.Error #1009: Cannot access a property or method of a nullobject reference.

View 1 Replies

ActionScript 3.0 :: Loading External SWFs Error #1009 ?

Oct 8, 2009

I have an index called allproducts and I want users to be able to click on an element and load a new SWF (with several external .as files) that has specifics about that element.When I run JUST the element (SS_glutenfree.swf), it works great. When I run allproducts.swf and click on the gluten free button, I get: TypeError: Error #1009: Cannot access a property or method of a null object reference.

at Handle()
at flash.display::Sprite/constructChildren()
at flash.display::Sprite()[code]....

TypeError: Error #1009: Cannot access a property or method of a null object reference. at Gallery()

allproducts.swf is in the folder above SS_glutenfree.swf and all of its .as files (which are Gallery, Handle, and Img).

View 8 Replies

ActionScript 3.0 :: Error 1120 Menu Button Loading External .swf

Jun 17, 2009

I have a site that will load an external .swf for each menu button to display the content for each page. I have found tried several methods to do this and all at least create a loader and display the default .swf without problem.

Heres the code...

***start code***
stop();
var xPos:Number = 0;
var yPos:Number = 125;

[Code].....

Anyway I have no idea what else to try and cannot seem to find anymore information on the subject. Every description of the error just tells me that I haven't nammed something right but I have tripple checked every button and it looks right.

View 3 Replies

ActionScript 3.0 :: Loading External Data To An Array Syntax Error?

Jan 25, 2009

I'm trying to load data from an external text file into an array. I created an array and am able to load the data into an array if I explicitly say something like

ActionScript Code:
array[0] = event.target.data.uid1_name;

I can then do a trace statement on array[0] and it will output the correct name from the file. My problem is I'm trying to iterate through the variable names in the text file in the file by using an index variable. This is the code I'm using after doing all the URLloader, URLRequest, and so forth stuff:

ActionScript Code:
for(var i = 0; i<20;i++){
fArray
= event.target.data.uid_name;
}

This produces a syntax error. I've tried several other syntax variations but haven't been able to figure it out. I've also tried the following:

fArray
= event.target.data["uid"+i+"_name"];
fArray = event.target.data.["uid"+i+"_name"];
fArray
= event.target.data."uid"+i+"_name";

All three of those also give me errors. For the first one the trace statement outputs "undefinded" instead of "Doug". For the second I get "syntax error. Expecting identifier before left bracket". And for the third I get "syntax error, expecting identifer before uid.":

syntax to iterate the number after uid(uid1_name, uid2_name, uid3_name, etc)?

View 3 Replies

ActionScript 3.0 :: Loading Menu As External File But Getting Error 1009

May 10, 2010

I am trying to load a menu as an external file .... and getting this :
TypeError: Error #1009: Cannot access a property or method of a null object reference. at com::menu()

Here is my code:
if(!menuLoader){
var menuRequest:URLRequest = new URLRequest("menu.swf");
var menuLoader:Loader = new Loader();
menuLoader.load(menuRequest); container.addChild(menuLoader);
menuLoader.x = 700; menuLoader.y = 50;
}

View 9 Replies







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