Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
9k views

Accessing the Document class in AS3

How can instantiated classes access the Document class? Even after I name the Document class using the Properties bar in Flash, attempting to access it from other classes usually fails, saying ...
1
vote
1answer
135 views

Flash TypeError: Error #1009: Cannot access a property or method of a null object reference. - when accessing TLFTextField from Document Class

I'm lost on this one. I receive a TypeError: Error #1009: Cannot access a property or method of a null object reference. output message the first time my Document Class tries to access a simple ...
1
vote
2answers
47 views

stupid question about lines in AS3

I am baffled by this function, which is called prior to this with parameters 22 and 58 for xVal ad yVal respectively. It doesn't display anything when the swf is compiled and tested, and its error ...
1
vote
2answers
452 views

Differences between timeline code vs Document class code

I'm trying to explain the differences between writing timeline code vs Document Class code, so far I have: Timeline code: - doesn't require a package and class declaration Document Class code: - ...
1
vote
3answers
1k views

AS3 trouble instantiating Document Class of loaded SWF

I am loading one swf into another using the Loader class, but when the child swf finishes loading and is added to the display list, its Document Class is not instantiated. I have a few trace ...
0
votes
1answer
24 views

Assigning to typed variables across SWF boundaries breaks

I'm writing an application that uses extendable UI elements, whose precise implementation is determined at run-time using configuration. So for example, I want to show a list of items, which - ...
0
votes
2answers
28 views

Flash cs5 code location confusion

Whenever I place the following code on the first frame of my movie, it works fine: var strGlobal:String = "Global"; function scopeTest() { trace(strGlobal); // Global } scopeTest(); ...
0
votes
1answer
106 views

dynamically draw circle preloader error 1061 when in document class

I found a tutorial on how to make a dynamic unfilled and filled circle. that will take input from a slider to dertermine how much of the circle is drawn. I wanted to use this for a preloader. Unlike ...
0
votes
1answer
65 views

Stage properties in custom class, not Document Class

I need to use stage.width/height in my CustomClass so I found some topics about it. if (stage) { init(ar,firma,kontakt,oferta,naglowek,tekst,dane); } ...
0
votes
2answers
55 views

Reference from the DocumentClass a movieclip created by an instance of another class

I have this main (document class) in a Flash project: package { import flash.display.MovieClip; import flash.events.Event; public class main extends MovieClip { public function ...
0
votes
1answer
148 views

Flash CS, reference root from external class

I made this class and I put it in the same package of Timeline.as (the Document Class): package { import flash.utils.Timer; import flash.events.TimerEvent; public class Counter2 extends ...
0
votes
1answer
207 views

DoubleClick studio thinks I've imported the Enabler component in both my parent and my child asset files

I've just started to work with DoubleClick Studio. I've successfully created a Flash expanding ad with CS4 that is mostly scripted and uses the Document class option. Now for some reason the back end ...
0
votes
1answer
841 views

As3 Errors 1046 type not found if I specify a document class

In my as3 code using Flash cs3, everything works fine without any document class. I can use event handlers and they work. But, once I attach a document class, I start to get this error: 1046: Type was ...
0
votes
1answer
511 views

accessing an instance reference to the document class from the stage's timeline

Is there a way to get an instance reference to the document class to call a method of it from the stage's timeline? I see that here's a possible solution: using a singleton Other solution I though of ...