[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.4

What is ActionScript Error #2044 and why does every single one of my links say that?

Asked by StevenDesigner in Adobe Flash, Adobe Dreamweaver, Hypertext Markup Language (HTML)

Tags: Adobe Flash, Bizarre ActionScript Error

This is my first time using ActionScript 3.0 and probaly the last for a long time given that it looks too glitchy or Flash Player 10 just plain sucks. I made 85% of a flash website and of course tested it out remotely first, and everything worked seamlessly for just the swfs themselves, but if I tested the html files for the swfs and they just didn't work. I uploaded them to ftp on my webspace and made absolutely sure all the folders and files were in the right place (and I assure you they are). But to my surprise the same problem happens on every browser, stopping any swfs from working. Oddly enough the buttons can still load html pages but it won't even attempt to swap a SWF

Click every button but the html link and you get this:

On Google Chrome:
Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed.

On Safari
Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed.

On Firefox
Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found.

ON IE:
It doesn't even tell that you that it isn't working, this browser is too stupid to recognize CSS even so I'm not surprised.

Let's see what mysterious answer it gives you.
http://stevendesigner.com/


Last year I knew hardly a thing about flash and actionscript 2.0, yet the unfinished site I made still had SWFs swapping seamlessly within the index.html page..so whatever this is it's clearly beyond the beginner level.

Attached below is code from the main file that you'll see is just fine, every single page looks like this except where it is for an html link.

I also attached a screenshot showing the files are where they should be although that isn't the problem here anyways, especially since the "put dependent files" feature of Dreamweaver does it's job well if you set things up right to begin with.

If no one can solve this I'll either have to remake and experiment with ActionScript 2.0 instead or change every link to html which more or less defeats the purpose of Flash.

Any help is appreciated, thanks




 
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
stop();
 
var animLoader:Loader=new Loader  ();
animation_bt.addEventListener(MouseEvent.CLICK, anim);
function anim(myevent:MouseEvent):void {
	var myURL:URLRequest=new URLRequest("to_animation.swf");
	animLoader.load(myURL);
	addChild(animLoader);
}
 
var photLoader:Loader=new Loader  ();
photography_bt.addEventListener(MouseEvent.CLICK, phot);
function phot(myevent:MouseEvent):void {
	var myURL:URLRequest=new URLRequest("to_photography.swf");
	photLoader.load(myURL);
	addChild(photLoader);
}
 
var compLoader:Loader=new Loader  ();
computer_bt.addEventListener(MouseEvent.CLICK, comp);
function comp(myevent:MouseEvent):void {
	var myURL:URLRequest=new URLRequest("to_computer.swf");
	compLoader.load(myURL);
	addChild(compLoader);
}
 
resume_bt.addEventListener(MouseEvent.MOUSE_DOWN, resu);
 
function resu(event:MouseEvent):void {
  var urlRequest:URLRequest = new URLRequest("http://stevendesigner.com/steven_noordhof_resume.pdf");
  navigateToURL(urlRequest,"_blank");
}
 
var caleLoader:Loader=new Loader  ();
calendar_bt.addEventListener(MouseEvent.CLICK, cale);
function cale(myevent:MouseEvent):void {
	var myURL:URLRequest=new URLRequest("to_calendar.swf");
	caleLoader.load(myURL);
	addChild(caleLoader);
}
 
var contLoader:Loader=new Loader  ();
contact_bt.addEventListener(MouseEvent.CLICK, cont);
function cont(myevent:MouseEvent):void {
	var myURL:URLRequest=new URLRequest("to_contact.swf");
	contLoader.load(myURL);
	addChild(contLoader);
}
 
var tablLoader:Loader=new Loader  ();
tablet_bt.addEventListener(MouseEvent.CLICK, tabl);
function tabl(myevent:MouseEvent):void {
	var myURL:URLRequest=new URLRequest("to_artwork.swf");
	tablLoader.load(myURL);
	addChild(tablLoader);
}
 
var abouLoader:Loader=new Loader  ();
about_bt.addEventListener(MouseEvent.CLICK, abou);
function abou(myevent:MouseEvent):void {
	var myURL:URLRequest=new URLRequest("to_aboutme.swf");
	abouLoader.load(myURL);
	addChild(abouLoader);
}
Attachments:
 
Dreamweaver screen capture of files between remote site + ftp
Dreamweaver screen capture of files between remote site + ftp
 
[+][-]06/07/09 04:06 AM, ID: 24566006Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/07/09 12:37 PM, ID: 24567798Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/07/09 07:01 PM, ID: 24568845Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/08/09 12:16 AM, ID: 24569684Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/08/09 07:07 AM, ID: 24572186Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/08/09 11:01 PM, ID: 24578470Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Adobe Flash, Adobe Dreamweaver, Hypertext Markup Language (HTML)
Tags: Adobe Flash, Bizarre ActionScript Error
Sign Up Now!
Solution Provided By: blue-genie
Participating Experts: 1
Solution Grade: A
 
[+][-]07/04/09 10:37 AM, ID: 24777446Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/05/09 11:57 PM, ID: 24783082Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/10/09 04:31 PM, ID: 25305544Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-89 - Hierarchy / EE_QW_3_20080625