Adobe ActionScript 3 (AS3) is the open source object oriented programming (OOP) language of the Adobe Flash and AIR Platforms. AS3 is widely used for RIAs, mobile apps, and desktop applications. (ActionScript 3 is a dialect of ECMAScript.)
0
votes
0answers
14 views
Starling Juggler Loop
I am building a simple game with a few animations and I am having a problem with a loop extended from starling.
My code uses sprite sheets and texture atlas to fetch the animation sprites but when I ...
0
votes
1answer
11 views
AS3 - Load only certain items/objects from external SWF
Is there any way possible to say, have A.swf use only certain items from B.swf, without having to load the entire swf as a child first? What i'm trying to do is have A as lite as possible and pull ...
0
votes
2answers
19 views
Determining id attribute of own Flash element from Flash
I have a Flash application written in ActionScript 3 embedded in a web page using SWFObject 2.0. After it has been loaded, the Flash application will be running in an <object> or <embed> ...
1
vote
0answers
14 views
How can i detect hardware accleration problems in flash?
When I used full screen in as3, application opens full screen, but it completely blank. At other computers all works fine. I searched hard and found that sometimes hardware acceleration could provoke ...
0
votes
2answers
24 views
as3xls > Number of sheets always 0
I'm trying to parse a .xlsx file exported from a google docs. Right now I'm not trying to access it online, I'm manually downloading it and copying inside my application.
I've read the tutorial ...
-2
votes
1answer
17 views
Error #2038 when uploading videos to Facebook
Using this simple AIR app to upload images to my facebook account.
http://code.google.com/p/facebook-actionscript-api/downloads/list
Uploading images works fine using the MediaUpload_AIR example.
I ...
0
votes
0answers
14 views
Web Service Class of AS in Flex 4
I am trying to receive data from the Web Service and I am getting the Data from Web Service back but it is form of [object Object]. Can anybody help me on this.
Below is the code for my web service:
...
-1
votes
1answer
27 views
Score system based on time NAN
I've created a score system in my flash Quiz game where the faster you answer a question, the more points you get. At the moment however my tracer shows 'NAN' when I run my game. Can anybody see why ...
0
votes
0answers
21 views
Delay in livestream after some time?
I am using flash builder for live stream application. When I trying to play using netstream
as:
ns=new Netstream(nc);
ns.bufferTime=0;
ns.play(streamname,-1);
My stream plays well with 1 or 2 ...
0
votes
1answer
23 views
AS3: matching hittest x y co-ordinate with child's child movieclip
On Root:
I have tree clip
I have cutter clip
while tree clip has branch grid(dots) as its child
I am getting hitTest between cutter and each dot(tree child) when I click once, but there x,y ...
0
votes
0answers
17 views
Flex/AS3 ADG: Trouble with edit-cell behaviour
I'm developing different applications using ActionScript3 and the Adobe Flex3.6 framework. In most of the projects I make use of the AdvancedDataGrid component which gives me a recurring problem when ...
0
votes
1answer
27 views
Flash - Loader errors in Firefox
I'm writing an application which pulls up to several dozen images from a server using Loader objects. It works fine in all browsers except Firefox, where I'm finding that, with over 6 or so ...
-6
votes
0answers
36 views
How to use C#'s MatrixOrder in as3? [closed]
C#
Matrix matrix1 = new Matrix();
matrix1.Rotate((float) num6, MatrixOrder.Append);
matrix1.Translate((float) p2_X, (float) p2_Y, MatrixOrder.Append);
how to Convert to as3 ?
2
votes
0answers
24 views
mxmlc load-externs is ignored
I develop an ActionScript 3 project using FlashDevelop 4.
I have a main SWF holding all the code.
I want to export some of the main SWF code into modules.
I created a module to hold the separated ...
0
votes
2answers
31 views
as3 creating and deleting children
I want to make it when a button is hit it creates a child and then when the child is hit it deletes the child....this works but then when I click the button again the child doesn't get created again.
...