0
votes
1answer
29 views
How to properly test for class inheritance in ActionScript 3?
In ActionScript 3, you can figure out whether object O is of class C or of a class that extends or implements class C (directly or indirectly) using...
if (O is C) {
...
}
W …
0
votes
1answer
15 views
AS3 - swfaddress deep linking when someone pastes a url
I have swfaddress (2.4) working fine on my site - the back button works, I can copy and paste urls and be taken to the correct page, etc.
BUT, if I copy a url, say "http://mysite. …
0
votes
2answers
32 views
AS3 Basic Parsing JSON question
Hey,
I'm having a problem parsing a JSON file in AS3. Im trying to parse multiple JSON arrays, but don't really know how to get to the next after accessing the first one. My JSON …
1
vote
2answers
27 views
Why can’t Flash CS3 find the MovieClip base class even after classpath is set (AS3)?
Tearing my hair out.
I created an as3 class - blah.Foo, which extends MovieClip.
it is not in a package, cos Flash CS3 complained about nested packages, so it's a 'bare' class.
An …
0
votes
1answer
71 views
AS3 Dispatch Event from Class
Hi,
I have a class which makes a url request and stores data from that request. When the data is retrieved, parsed, and stored into an array, I'm sending a dispatch event which I …
2
votes
3answers
139 views
C#: What is the value added by commanding?
When looking into MVC frameworks for flex, as3, silverlight, and wpf... a common concept of ICommand / commanding keeps appearing... Can anyone explain the advantage of using IComm …
1
vote
2answers
71 views
AS3 Memory Conservation (Loaders/BitmapDatas/Bitmaps/Sprites)
I'm working on reducing the memory requirements of my AS3 app. I understand that once there are no remaining references to an object, it is flagged as being a candidate for garbag …
2
votes
1answer
35 views
how to avoid flickering when changing the source of an mx:Image in flex
Hi,
in my mxml file I have images declared like this:
<mx:Image x="0" y="0" source="assets/bigpicture.png" id="picture1"/>
and at some event I do:
picture1.source = "as …
0
votes
2answers
28 views
+100
How to stream video over Socket Class (or XMLSocket) with ActionScript?
How to stream video over Socket Class (or XMLSocket) with ActionScript?
or\and
How to do it using Socket Class (or XMLSocket) in AIR?
0
votes
3answers
37 views
Merge multiple MovieClips into a single MovieClip
Hi,
I've multiple videos stored as MovieClip objects and would like to merge them into a single MovieClip video object in order to play all of them in sequence (so that a user thi …
0
votes
1answer
11 views
DataGrid-CellRenderer: Multiple colors for text
Hello folks,
can someone tell me how I can manage to give single words inside a DataGrid-CellRenderer a different color than defined by the TextFormat for that CellRenderer? It's …
0
votes
2answers
70 views
What are your thoughts on the proposed Flash CS5 iPhone capabilities? [closed]
What do you think of the upcoming Flash for iPhone offerings?
Why can't we access the camera from Flash?
Looks like we will be able to write to the camera roll but not read from i …
0
votes
1answer
14 views
Why is loaderInfo available only after applicationComplete fires?
In an AS3 project, we can access loaderInfo in the first line of the root class' constructor. This means that the entire AS3 application can take advantage of the loaderInfo objec …
1
vote
2answers
64 views
Flash with as3 problem
Hello,
I want to make a game where a ship shoots through 2 fireguns. The problem is that it doesn't shoot. When i code to shoot from the ship it's working but not from the firegun …
0
votes
1answer
27 views
Flash Security Error Accessing URL with crossdomain.xml
Hello,
I recently deployed a Flash application to a server, and am now experiencing errors when making HTTPService requests. I have put what I believe to be the most permissive c …
