ActionScript 2.0 :: Getting Error In External Swf
Feb 22, 2010I made an mp3 player that works very well but when it is loaded not working[code]...
View 6 RepliesI made an mp3 player that works very well but when it is loaded not working[code]...
View 6 Replieshey im trying to make a mp3 player and when u click on a play btn it plays that song. but i keep getting this output error "Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error.
at slide_fla::MainTimeline/frame1()"
this is my code
ActionScript Code:
import fl.transitions.Tween;
import fl.transitions.easing.*;
var slidebind:Rectangle = new Rectangle(3, 3, 159, 0);
var loadsnd:URLRequest = new URLRequest ("s1.mp3");
var thissnd:Sound = new Sound();
[Code]...
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
I have a main swf with some layers and i need to load an external swf (with his own layers) in a layer between main swf's layers.[code]...
View 1 RepliesI'm putting together a loader and several external swfs to load into it. The swfs all compile and run fine on their own, but when I load the children into the loader swf I recieve this error message:
ReferenceError: Error #1056: Cannot create property endGame_btn on YourClass.
'endGame_btn' is a button I placed on stage in the flash IDE. That is the instance name I gave it. Obviously there is no problem when I publish the swf and test it on its own, so why does it give me an error when I load it into a container?
And how come I haven't ever had this happen before in the year or so I've been loading external swfs into a loader swf?
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.
I'm trying to unload an external SWF, and this seems to work, but i get the #1009 error, and i can't figure out why.
Code:
stop();
this.removeEventListener(Event.ENTER_FRAME, gotTicket);
var loader:Loader = new Loader();
[code]....
I have getting the following message when trying to play external mp3 files:
Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error. at playingExternalMp3_fla::MainTimeline/frame1()Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error. at playingExternalMp3_fla::MainTimeline/buttonFunction() at playingExternalMp3_fla::MainTimeline/load1()
These message appear in the output panel every time I slect the button for that sound file? Is there a linkage problem?
[Code]...
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 RepliesI 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].....
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
I am trying to load an External swf.
But it throws an error when I compile.[code]...
I'm trying to load an XML file by using an external class named LoadXML.as.
[Code]...
I have write this code to load an .swf external file:
Code:
import flash.display.Loader;
//import flash.display.Sprite;
import flash.net.URLRequest;
[Code].....
And I've this error
Code:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at gare_fla::pda_777/frame110()
at flash.display::MovieClip/gotoAndPlay()
at gare_fla::pda_777/goHome()
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)... ?
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 RepliesHaving 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].....
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].....
I am trying to access JS functions of the container HTML code from the swf(using External Interface). But until I add the swf in Global Security Settings it doesn't work, even from localhost. My question is how to ensure that this problem doesn't come to users who access the site. If I have to build a crossdomain.xml what should be the content? I am not accessing different domains.[code]
View 2 RepliesI have externally loaded a swf and I get this message:
Error #1034: Type Coercion failed: cannot convert lash.display::MovieClip@1cb847e1 to flash.display.Loader.
Here is the as i have used:
Code:
var imageRequest:URLRequest = new URLRequest("bg.swf");
var theClip_mc:Loader = new Loader();
theClip_mc.load(imageRequest);
[Code]....
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 RepliesThis is driving me insane, because I actually had it working once and now I can't do it.
I have a .txt file that contains:
Code:
&solutionslink=/solutions/index.hml
In my .fla, attached to my button I have the following:
Code:
on (release)
{
getURL(solutionslink);
}
But when I hit the link I get //webserver/undefined instead of //webserver/solutions.html
I've done a trace and I get "/solutions/index.html"
I want to load an external swf when it's fully loaded. Then this is the code
ActionScript Code:
var contentLoader:Loader
function processSWF():void
{
[code]....
but flash give me TypeError: Error #1009: Cannot access a property or method of a null object reference instead, if i don't insert the listener, all goes fine
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).
I am trying to make an external interface call on widgets I am creating to get the domain for in/out of network stats.
[Code]...
From what I am reading an allowscriptaccess needs to be set to always, which I can't do because there isn't embed code that is sent to Facebook during a share so I don't have control over that.
im loading an external AS2 swf into my AS3 swf with the Loader class. the external swf is driven by data.xmlwhen i hit ctrl enter, i get this error:Error opening URL 'file:///E|/portfolio/akram/data.xml'Heres the code im using, pretty standard;
var galleryFolder:String = "BgMotor";
var LoaderOne:Loader = new Loader();
var MotorSWF:URLRequest = new URLRequest(galleryFolder + "/banner.swf");
[code].....
When I try to include code from the external file "test.as" I get an error: "ActionScript 2.0 class scripts may only define class or interface constructs." "test.as" contains a simple function:
[Code]...
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.
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)?
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;
}