Adobe ActionScript 3 is the open source object oriented programming (OOP) language of the Adobe Flash and Air Platforms. AS3 widely used for RIAs, mobile apps, and desktop applications. (ActionScript 3 is a dialect of ECMAScript.)
107
votes
5answers
28k views
Best practice: escape, or encodeURI / encodeURIComponent
When encoding a query string to be sent to a web server - what is the best practice to use from javascript:
Use escape:
escape("% +&=");
OR
use encodeURI() / encodeURIComponent()
...
93
votes
14answers
13k views
What is the best way to stop people hacking the PHP-based highscore table of a Flash game
I'm talking about an action game with no upper score limit and no way to verify the score on the server by replaying moves etc.
What I really need is the strongest encryption possible in Flash/PHP, ...
28
votes
2answers
985 views
Can 0.99999999999 be rounded to 1.0 when multiplying?
When multiplying a floating number that is very close to 1 with an int > 0, can it ever be interpreted as 1.
That is, if Math.random() returns its highest possible result (which is 1 step below ...
25
votes
3answers
920 views
konami code in flex
What would be the best way to implement the konami code into a flex application?
I want to create a component to add it on all my proyects, just for fun.
thanks
UPDATE: I made a simple component, ...
24
votes
3answers
8k views
How do I get from an instance of a class to a Class object in ActionScript 3?
How do you get an instance of the actionscript class Class from an instance of that class?
In Python, this would be x.__class__; in Java, x.getClass();.
I'm aware that certain terrible hacks exist ...
19
votes
7answers
777 views
How can I prevent text displacement for some foreign language fonts?
I have a multilingual project (currently 13 languages), which uses many different font variations of "Helvetica Neue", mostly bold, condensed and regular cuts from the LinoType Pro font set ( which ...
18
votes
6answers
4k views
Static Actionscript code analysis?
I want to see class, function and variable/property, dependencies visually, like NDepend, but for ActionScript 2 or AS3 code.
Any programs or ideas?
Use Doxygen in some way?
FlexUnit?
17
votes
1answer
8k views
Efficient looping through AS3 dictionary
for (var k in dictionary)
{
var key:KeyType = KeyType(k);
var value:ValType = ValType(dictionary[k]); // <-- lookup
// do stuff
}
This is what I use to loop through the entries in a ...
16
votes
2answers
6k views
StackTrace in Flash / ActionScript 3.0
I want to see the stack trace in any function of my code, so i made somthing like this to call it and print the stack trace:
public function PrintStackTrace() {
try {
throw new ...
15
votes
4answers
4k views
Actionscript 3 vs haXe: Which to chose for new Flash project?
I am in the planning stages of a new Flash game project and was wondering which language would be better to use? I already have a strong understanding of Actionscript 3, and have not worked with haXe ...
14
votes
5answers
650 views
How to explain to client that you can't give them some of the source
We have a number of AS/Flex components that we've built over time and improved upon. They've been turned into components so they can be reused in different projects and save us time. So you can think ...
14
votes
5answers
5k views
Flash performance for game dev: native render VS BitmapData framebuffer
I develop a 2D shooter game with lots of objects and aggressive scrolling.
QUESTION: which way is better?
CHOICE 1 - use native Flash rendering:
derive game objects from Bitmap, use existing x, y, ...
13
votes
1answer
317 views
Embedding metadata time limit for Flash Builder 4.5.1mobile project?
I am working on a project that requires me to embed metadata on the fly with a recorded stream from a webcam. I am utilizing Flash Builder 4.5.1 creating a mobile project. I am using a simple ...
13
votes
2answers
2k views
Flash/Flex conditional compilation “else”
In AS3 you can pass a constant to the compiler
-define+=CONFIG::DEBUG,true
And use it for conditional compilation like so:
CONFIG::DEBUG {
trace("This only gets compiled when debug is true.");
...
13
votes
22answers
2k views
Hidden features/tricks of Flash development, Flash language (AS2/3), and Flash IDE
Guys, I am thoroughly surprised that there is no Flash Hidden Features post yet in the Hidden Features series that I've been tracking for a while now.
There is a recent AS3/Flex one but it's not very ...
13
votes
6answers
20k views
Flex Warning: Unable to bind to property 'foo' on class 'Object' (class is not an IEventDispatcher)
I've got an object that contains a dozen or so fields I want to bind to form elements, so that I can use that object to send the data back to the server to be saved.
Definition of my container ...
13
votes
7answers
33k 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 ...
13
votes
9answers
14k views
Calculate Bounding box coordinates from a rotated rectangle, Picture inside
I have the coordinates of the top left Point of a rectangle as well as its width, height and rotation from 0 to 180 and -0 to -180.
I am trying to get the bounding coordinates of the actual box ...
13
votes
4answers
3k views
How to fix closure problem in ActionScript 3 (AS3)
In the code below I'm trying to load some images and put them in the stage as soon as they get individually loaded. But it is bugged since only the last image is displayed. I suspect it's a closure ...
12
votes
2answers
824 views
Adobe AIR 512x512 Icons?
correct me if i'm wrong, but Adobe AIR currently only allows applications to have maximum size icon of 256x256.
is there a way to supply an application with a 512x512 icon?
will 512x512 icons be ...
12
votes
8answers
11k views
Actionscript 3 import package.* vs import package.Class
In Actionscript 3, is there any reel overhead between importing a full package versus importing independant classes?
E.g.: import flash.display.* vs. import flash.display.Sprite
I know it's a good ...
12
votes
14answers
4k views
What is the best IDE for actionscript3 development [closed]
I am currently using FlashDevelop for my Actionscript3 development. I have also tried my hand with using Flex3 for my Actionscript3 development. I was curious if FDT was superior to the former and ...
12
votes
4answers
996 views
Best Flash Audio/Video + Interactivity server?
I'm looking for suggestions on Flash realtime servers. Currently, we use a combination of Moock's Unity and Red5, but there are a couple problems. First, we are moving to AS3, and Unity only supports ...
11
votes
1answer
3k views
Setting a default skin for a custom component in Flex 4
How do you set the default value of skinClass for a custom component in Flex? I've extended the DropDownList with my custom component, but I would like to specify a default skin to go with it instead ...
11
votes
4answers
2k views
What are the key differences between JavaScript and ActionScript 3?
I know both languages are from the same ECMA standard. It seems that the two are becoming very similar with JavaScript adding event listeners and the such. I was wondering what the differences are?
11
votes
2answers
993 views
How to control indentation after an open parenthesis in Emacs
When I use emacs python-mode, if the last character of a line is an open parenthesis it indents the next line just one step in from the indentation of the previous line.
call_some_function(
...
11
votes
13answers
13k views
Asynchronous HTTP Client for Java
As a relative newbie in the Java world, I am finding many things frustratingly obtuse to accomplish that are relatively trivial in many other frameworks. A primary example is a simple solution for ...
11
votes
5answers
17k views
What is the best way to resize a BitmapData object?
Say I have a BitmapData of 600x600 and I want to scale it down to 100x100.
11
votes
3answers
2k views
Interactive ActionScript interpreter?
Is there some sort of interactive ActionScript interpreter? Similar to Firebug's JavaScript command line or Python's interactive shell?
11
votes
4answers
4k views
Why doesn't ActionScript have “generics”?
Can anyone tell me why ActionScript 3, a statically typed language, doesn't have generics? Is it too much work? A historical thing? Is there some way to "fake" it that I haven't picked up yet?
Edit: ...
11
votes
6answers
27k views
how do I delete/gc an object in Actionscript 3?
I want to delete/force garbage collection on a class instance from inside itself. Obviously, this = null and delete this don't work. Is it any way I can do that, or am I barking up the wrong tree? I'm ...
11
votes
4answers
7k views
How to determine if an associative array has a key?
In ActionScript 3, is there any convenient way of determining if an associative array (dictionary) has a particular key?
I need to perform additional logic if the key is missing. I could catch the ...
11
votes
6answers
13k views
Enums in AS3 / Flash / Flex?
One thing I really like about AS3 over AS2 is how much more compile-time type-checking it adds. However, it seems to be somewhat lacking in that there is no type-checked enumeration structure ...
11
votes
4answers
12k views
Test if an object is defined in actionscript
In actionscript, how can you test if an object is defined, i.e., not null?
11
votes
2answers
4k views
Lack of operator overloading in ActionScript 3.0
One of the things I miss the most in ActionScript is the lack of operator overloading, in particular ==. I kind of work around this issue by adding a "Compare" method to my classes, but that doesn't ...
11
votes
7answers
4k views
Unloading a ByteArray in Actionscript 3
Does anyone know how to forcefully unload a ByteArray from memory in AS3?
I have tried (without success):
byteArray.length = 0;
byteArray = new ByteArray();
and
for ( var i:int=0; ...
10
votes
1answer
6k views
Get size of ActionScript 3 Dictionary
var d:Dictionary = new Dictionary();
d["a"] = "b";
d["b"] = "z";
How to get the length/size of the dictionary (which is 2) ?
10
votes
6answers
10k views
AS3: How to convert a Vector to an Array
What's the nicest way to convert a Vector to an Array in Actionscript3?
The normal casting syntax doesn't work:
var myVector:Vector.<Foo> = new Vector();
var myArray:Array = Array(myVector); ...
10
votes
2answers
478 views
What thread does JavaScript code called from Flash execute on?
As far as I understand, all JavaScript code is event-driven and executes on a single browser thread.
However, I have some JavaScript functions that are called from within a SWF object sitting on the ...
10
votes
3answers
6k views
Calling ActionScript 3 function from C#
I have a Flash movie embeded in a Windows Form (using the component "Shockwave Flash Object included with Visual Studio 8). The Flash movie was created with Flash CS4 and uses ActionScript 3.
Is it ...
10
votes
6answers
1k views
Lint tool for actionscript?
Are there any lint tools available for actionscript? One source would be ideal, but anything is welcome.
My team is starting to adopt more a more rigorous style guide (where "more rigorous" means ...
10
votes
5answers
11k views
Cleanly merge two arrays in ActionScript (3.0)?
What's a nice way to merge two sorted arrays in ActionScript (specifically ActionScript 3.0)? The resulting array should be sorted and without duplicates.
10
votes
5answers
5k views
Strip all HTML tags except links
I am trying to write a regular expression to strip all HTML with the exception of links (the <a href and </a> tags respectively. It does not have to be 100% secure (I am not worried about ...
9
votes
1answer
170 views
What are the major performance hitters in AS3 aside from rendering vectors?
In Actionscript 3, you quickly learn that using vector graphics is a guaranteed way to inflict massive damage to the performance of your project. Using a combination of Bitmap, its bitmapData property ...
9
votes
4answers
262 views
3d intersections of triangles algorithm - Displaying the topmost plane
I am trying to calculate the top most intersection of an arbitrary number of planes, with no joy! I am using actionscript, but just need find an algorithm that i can implement.
Problem:
consider 3 ...
9
votes
3answers
3k views
Flash Builder 4.5 vs Flash?
So I want to build Android & iPhone apps. I'm somewhat confused at the different options available with Adobe. I understand that there is a product coming out, Adobe Flash Builder 4.5 that will ...
9
votes
2answers
800 views
Unit Testing AS3 Code for Flash
I'm trying to improve my code by writing unit tests for my ActionScript 3 code for Flash projects I work on, but I'm having a mental hurdle understanding how to deal with it in the context of a Flash ...
9
votes
6answers
4k views
Load profile image from Facebook with Actionscript 3
I'm trying to load profile images (friend images) from Facebook with AS3 but I seem to be running into a security issue.
I'm currently using the "official" Adobe Facebook API for Actionscript 3 which ...
9
votes
3answers
6k views
Actionscript 3.0 String With Format?
How can i format a string with supplied variables in AS3?
//vars
var myNumber:Number = 12;
var myString:String = "Months";
var myObject:MovieClip = year;
//string
myString.txt = "One (?) consists of ...
9
votes
6answers
3k views
What are some good Flash game frameworks?
Pretty straightforward. Open source is good, but organization and documentation is better. Actionscript 3 is a must, I don't really want to start working with the older versions. I guess that's the ...