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.)
2
votes
1answer
1k views
How can i on button press execute a command in the command prompt and get back the output in ActionScript?
I have a GUI using Flex. I have a condition like i need to execute some command line arguments in the local machine and get the results back or output back to a textbox area. How can i do a button on ...
2
votes
2answers
2k views
extending AS3's Array access operators to 'wrap' out-of-bound index values
I'd really like to be able to make Flash's array access syntax 'wrap' over the array's bounds.
Lengthy explanation -
var array:Array = ['a','b','c','d','e','f'];
To keep things simple, the first ...
6
votes
4answers
3k views
Collections in Adobe Flex
Is there any open source collection framework, written in ActionScript that would emulate HashMap, HashSet, LinkedHashMap and LinkedHashSet Java class implementations.
5
votes
6answers
7k views
Latency in playing short sounds in Flash 9, Actionscript 3
I've got a few very short audio clips (less than a second long) to be played on various events (button hover, click, etc). However, there is usually a significant lag between the action and the ...
4
votes
3answers
896 views
How to transmit live video over a Socket using Flex / ActionScript 3?
My Requirements are similar to this old question of 2009. I am just re-posting since OP is kind of 2 years old and the question is closed now.
How can I transmit live video Stream over a Socket ...
4
votes
4answers
2k views
Pitch detection with computeSpectrum() return FFT values
I'm developing using Actionscript 3.0 for Flash Player 10.3
I'm using computeSpectrum() on a loaded .mp3
Running *Event.ENTER_FRAME* to get snapshots of each sample in an byteArray
The ByteArray ...
4
votes
3answers
5k views
Flash in a browser to full screen
How can i make my flash applications in a browser in full screen mode? I know that the stage can be put in that mode, but when i run the application in any browser this doesn't work. So, this can be ...
2
votes
3answers
4k views
Is it possible to embed or load SWFs when making iphone apps (Is it allowed by Apple)
I am a little confused on whether to embed swfs or load them when making apps for the iphone. Does anyone know what are the advantages of each (which is preferable to use)? I know that embedding swfs ...
2
votes
2answers
4k views
AS3 Sprite Sheets
I have an image mySprite.png. The image is a 5x5 grid of 32x32 px sprites. This image has been loaded into the project's library.
Assuming I have a render() function inside a class, how would this ...
8
votes
4answers
11k views
How do I find the length of an associative array in ActionScript 3.0?
Is there a simple way to retrieve the length of an associative array (implemented as an Object) in ActionScript 3.0?
I understand that there are two primary ways of creating associative arrays in ...
7
votes
1answer
215 views
In Actionscript 3, why is the dynamic type of large int values Number?
I have noticed that if I create an int with a large value, the dynamic type of the object seems to be Number.
Example:
var int1:int = 0x8000000;
var type1:String = ...
6
votes
3answers
3k views
How to draw a continuous curved line from 3 given points at a time
I am trying to draw a continuous curved line in flash. There are many methods but none of the ones I have found so far quite fit my requirements. First of all, I want to use the flash graphic api's ...
6
votes
4answers
10k views
Can I bind a Flex component property to a function?
I want to set the enabled property on a button based on the return value of a function that has one or more parameters. How can I do this?
private function isUserAllowed (userName:Boolean):Boolean {
...
6
votes
3answers
2k views
Finding the center of mass on a 2D bitmap
I'm coding a game, and I'd like to be able to find the center of mass of an arbitrary shape on a black and white bitmap such as this:
012345678
0.XX......
1..XXX....
2...XXX...
3..XXXXXXX
...
6
votes
2answers
2k views
How can my Flash app determine its own URL?
My flash app needs to know its own URL, so that it can load some (non-embedded) content using relative paths.
(I cannot hardcode the full paths because there will be multiple installs -- staging, ...
5
votes
3answers
8k views
Send ByteArray to JavaScript
How to send a jpg image as ByteArray from as3 to javascript? And how to convert ByteArray to image in javascript?
5
votes
5answers
5k views
Play FLV from ByteArray in Flash Player
I have a flash video file (FLV) stored in the ByteArray object and would like to play this video. Is there any way to achieve it? Maybe using Alchemy?
Thank you!
5
votes
5answers
22k views
Finding (loaded) image size in AS3 (Action Script 3.0)
Im currently using the following function to load an image, however i could not figure out a way to find the width of the loaded image, which i intend to use before placing the next image using the ...
4
votes
4answers
4k views
.NET and AMF
How can I get a ASP.NET (inc MVC) application talking to a Flex UI over AMF. I am wanting to push approx 100+ records around at a time and AMF would appear to be the way forward, but there doesn't ...
3
votes
1answer
1k views
Adobe Air ios packager
There seems to be a lot of confusion regarding deploying Adobe Air apps to ios after the restrictions were lifted. Before apple lifted the restrictions you had to go through the process documented ...
3
votes
3answers
5k views
is it possible to value store cookies in Flash or Flex?
In PHP there is a setcookie function based to store it. In Flash is it possible ?.
If it is possible then how?
I want to store value.
1
vote
2answers
659 views
AS3: setSelection Up Arrow Override
I would like to focus on the end of a TextField when the up arrow is pressed. I'm using:
txt.setSelection(txt.text.length,txt.text.length);
This works great for any key except the up arrow. I ...
18
votes
7answers
40k views
Getters/setters in Java
I'm new to Java, but have some OOP experience with ActionScript 3, so I'm trying to migrate relying on stuff I know.
In ActionScript 3 you can create getters and setters using the get and set ...
12
votes
5answers
21k views
Getting unix timestamp in milliseconds in PHP5 and Actionscript3
In Actionscript, the Unix timestamp in milliseconds is obtainable like this:
public static function getTimeStamp():uint
{
var now:Date = new Date();
return ...
12
votes
8answers
11k views
Get the type in flex
can someone tell me how I can identify the type of an object in flex? In particular I have an array where I store multiple types in (but all UIComponents) now as I evaluate the array I want to find ...
10
votes
1answer
10k views
actionscript 3 and JSON
I've been trying to get JSON working with AS3 for a while now, but to no avail. I keep getting the following error when I get the JSON back:
TypeError: Error #1034: Type Coercion failed: cannot ...
10
votes
2answers
2k views
Re-dispatching event in FLEX
In a FLEX app, I am trying to "re-dispatch" a custom event. I.e. component1 does dispatchEvnet(event), component2 registers a handler for the event, the only function of the handler being, again, ...
8
votes
7answers
3k views
ActionScript3 User Interface Components?
After using AS2 for several years, I'm getting started with writing applications in AS3 (Flash9/Flash10). I've come to the point where I need some full sets of GUI components, and I need to decide ...
7
votes
2answers
2k views
Detect AIR versus Flash Player from an actionscript library
I have an swc which needs to operate slightly differently depending on whether it is being hosted by AIR or not. I've seen two suggestions on the internet:
Test Application.application for ...
6
votes
3answers
2k views
AS3 Memory Leak Example
Can someone post an example of as3 code (specifically event listener included) that would be a simple example of something that could leak memory... also hopefully could you post a solution to the ...
6
votes
10answers
8k views
What is the best Actionscript3 3D Engine?
I am looking for a somewhat detailed explanation of which 3D Engine for Actionscript3 is the most efficient, practical, scalable, documented, community supported, etc. When I first got interested in ...
6
votes
6answers
33k views
How to create custom MouseEvent.CLICK event in AS3 (pass parameters to function)?
This question doesn't relate only to MouseEvent.CLICK event type but to all event types that already exist in AS3. I read a lot about custom events but until now I couldn't figure it out how to do ...
5
votes
3answers
5k views
mixing 2 sounds from ByteArray
I have build a mixer and save all the sequence in an array and then play it again, now I want to save the mix as an MP3, I have looked for any way to save the mix and the answer is to load the sounds ...
5
votes
2answers
7k views
Length of a string in pixels
I'm populating a dropDownList with arrayCollection of strings. I want the width of the drop down list control to match with the size (in pixels) of the longest string in the array collection. The ...
4
votes
3answers
12k views
Passing flashvars-style parameters to a loaded SWF
I have a Flex 3 app (player v9) which loads a Flash SWF (AS3, also player v9) and needs to dynamically pass it a collection of parameters which are known at run-time. These are parameters that are ...
3
votes
3answers
5k views
Profiling ActionScript-3 Code
Is there any way or tool available that can profile AS3 code without using Flex?
How can I profile existing project written in Flash CS3 and AS3?
3
votes
2answers
14k views
FLASH save frame, to image (tiff, bmp, jpg, gif, png)
The title sort of explains itself. I am making some 'genrative' artwork in flash. Now I want to save the frame without making a screenshot so-on and sofort. And perhaps one day i would like to save a ...
2
votes
7answers
2k views
Where can I find good tutorials on writing audio DSP filters (lowpass, etc)? [closed]
I've recently become very interested in learning how to implement various audio filters in AS3. By intuitive guessing (and inspired by capacitors), I've managed to create what seems to be a 1st order ...
2
votes
4answers
2k views
Global Error Handler for Flash Player 10.1 not working
Trying to implement the new FP 10.1 Global error handler into my projects but no matter what I do any uncaught error will still show up the Exception window (both in debug and release versions of the ...
2
votes
4answers
2k views
Accurate BPM event listener in AS3
I'm trying to sync animation to music at a specific BPM. I've tried using the Timer but it isn't accurate when dealing with small intervals in milliseconds. I did some reading and found an alternate ...
1
vote
1answer
5k views
Upload Library or captured images on iOS with Flex Mobile 4.6
Does anyone have any experience with the Camera APIs in Flex 4.6 with iOS? I'm running into a lot of setup issues and the documentation is lacking. I'm trying to setup an image upload component where ...
1
vote
3answers
964 views
A good resource to learn Actionscript 3 [closed]
I want to learn Action script 3 what is a good resource to learn it?
1
vote
2answers
1k views
How can I use ArrayCollection like feature in ActionScript 3.0 Flash IDE?
I heard that ArrayCollection on Flex, so how can I use ArrayCollection like feature in ActionScript 3.0 and Flash IDE.
1
vote
3answers
3k views
How to send PUT HTTP Request in Flex
I want to send HTTP PUT Request on one URL to update that content of XML via using API.
URL is like this: https://domainname.com/someurls/id.xml
I want to update that content.
But When I am sending ...
1
vote
2answers
916 views
Soft Paint Bucket Fill: Colour Equality
I'm making a small app where children can fill preset illustrations with colours. I've succesfully implemented an MS-paint style paint bucket using the flood fill argorithm. However, near the edges of ...
1
vote
4answers
3k views
Tween library for AS3
Could someone recommend me of a good Tween library for AS3 (for use with Flash, not Flex)
1
vote
3answers
621 views
AS3 not accepting constructor
Ok, I have raise these question a thousand times and so far no ones been able to help me. I am raising again because I discovered something new. In the past I haven't been able to create parameters ...
1
vote
2answers
1k views
How can I get the background color of a loaded swf file?
I'm loading an swf file into my main application using URLLoader, I want to get the background color of the loaded swf file. ( I heard that one solution wold be reading the byte code of the loaded swf ...
0
votes
1answer
2k views
AEC in Flash, getEnhancedMicrophone
Have next problem:
var mic:Microphone = Microphone.getEnhancedMicrophone();
mic.setLoopBack(true);
And I don`t hear any sound... What is it?
When I write Microphone.getMicrophone() all work right ...
0
votes
4answers
866 views
Inherited a class from EventDispatcher in Flash but custom event not received
I have a custom event that is dispatched when a slider is moved but I receive no event from inherited dispatcher class I created whereas I followed the same syntax as solution for My flash custom ...
