Tagged Questions

ActionScript is a scripting language used for RIAs, mobiles applications, web applications, etc. which was initially developed by Macromedia and then acquired by Adobe. It targets to compile for Flash player runtime which can be deployed in various platforms including mobiles.

learn more… | top users | synonyms

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, ...
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 ...
20
votes
10answers
4k views

Do I have a shot at learning Objective-C?

I do mostly ActionScript development, plus a bit of C# (and historically Lingo, Java and VB). What are my chances of learning Objective-C? I'd love to have a go at iPhone development, but the language ...
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?
16
votes
6answers
5k views

What are the best books for Flex and Adobe AIR? [closed]

My team is about to build a new product and we are using Flex as the front end. There are other book posts on stackoverflow, but I couldn't find one that matched my needs. My manager will be ...
15
votes
9answers
894 views

HTML5 or Flash?

I have to write a web application for a client soon. Looking at the specs, there is no reason why the project couldn't be an HTML5/CSS/Javascript project, but the client is arguing that it has to be ...
15
votes
10answers
986 views

Most useful ActionScript packages / libraries

What are some useful plug-ins, packages or source-code for ActionScript? Please include ActionScript version, name, link and description.
14
votes
5answers
6k views

UDP real-time games in Flash/Flex available Open source RTMFP implementation

Are there any examples of using the Flash 10 beta RTMFP UDP based protocol to build real-time Flash games. The RTMFP examples so far seem to focus on P2P networking between flash clients does anyone ...
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
8answers
8k views

Flash / Actionscript CPU profiler

Have you found such a tool and used it successfully?
13
votes
10answers
17k views

IDE for developping in ActionScript (Flash). Any suggestions?

I started to work with Adobe Flash a few days ago and I'd say that the code editor lacks a few features before even being considered as an IDE (it sucks actually). Do you know any other solution for ...
11
votes
7answers
959 views

Dead-simple introduction to TDD (Test driven development)

Even though there are plenty introductions to TDD (even in PHP, my primary programming language now), I'm feeling a bit stuck about it. My friend introduced me TDD a while ago, but I wasn't actually ...
11
votes
8answers
14k views

See trace() of Flash when running in browser

Whats an easy way to see the trace() of Flash/Flex movies when running in any browser?
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?
10
votes
8answers
933 views

Should I Abandon Adobe Flash for HTML5 and <canvas>?

I'm currently looking into developing Facebook applications and was planning on using Flash as the basis of my application, I have test built some simple PHP Facebook applications and I know enough ...
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
5answers
4k views

Vector.<> vs array

What are the pros and contras of using a Vector.<> instead of array?
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
11answers
7k views

What tools do I need to develop in actionscript (in Linux)

I've never developed flash before but I have a project where I want to use an actionscript 3 library and I'm not sure what tools I need to start. To further complicate things my main development box ...
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.
9
votes
2answers
2k views

StringBuilder in Flex

I'm looking for fast string concatenation class or so in Flex. Like StringBuilder in Java. Thanks
9
votes
4answers
2k views

actionscript development on mac

I know of FlashDevelop for windows but how about developing actionscript or haxe on a mac? besides flex plugin for eclipse, flex builder and FDT is there anny good IDE out there for actionscript ...
9
votes
7answers
4k views

Is it possible to do a traceroute in the browser?

I'm looking for a way to do a traceroute client-side, i.e. in a browser. As far as I know, it's not possible to send ICMP, UDP or TCP packets with arbitraty TTL values via Javascript or Flash. I know ...
9
votes
6answers
12k views

Flex: Text Input that accepts number only

Need a code that only accepts numbers. Upon inputting, the code must check if it is number, if not, it must remove the entered key or not enter it at all
9
votes
4answers
6k views

compiling actionscript from command line using MXMLC

I have a tiny actionscript "project" consisting of two files, call them foo.as and bar.as. For reasons I won't go into, I really really want to build the .SWF from the command line, without setting up ...
9
votes
8answers
1k views

What is a good Actionscript 3.0 book for experienced developers?

So, I need a book (I know the API-docs, but I like books I can hold on my hand and take on the bus, etc.) for ActionScript 3.0 - I already know a plethora of programming languages so no problem there, ...
9
votes
6answers
7k views

Asynchronous function call in Flex

Is it possible to call a function asynchronously in Flex? I want to parse a file at regular intervals without blocking the rest of the application, what is the recommended approach for this?
8
votes
4answers
215 views

How does Flash Player load the main SWF file?

UPDATE: It seems that everyone didn't read my question thoroughly, all answers suggest me preloading or using external assets. So anyone willing to answer, please take notice to bold questions in ...
8
votes
2answers
75 views

Does ActionScript have an equivalent of a “core dump”?

Here's my situation: I'm working on an AS3-based game and I'd like to have a "Report a problem!" function within the game so that users can submit feedback to me. When my user reports a problem, I'd ...
8
votes
3answers
112 views

Actionscript: Why is it possible to assign a variable before it is declared?

inspired by the question int a[] = {1,2,}; Weird comma allowed. Any particular reason? I remembered a question concerning the syntax in Adobe's Actionscript. For some reason it is possible (at least ...
8
votes
2answers
403 views

Custom metadata in AS3/Flex?

How to create and to work with custom metadata in ActionScript3/Flex?
8
votes
5answers
251 views

Securely provide a unique secret code to winner of flash game?

Here's what I want to do: when a player wins a game (coded in flash/actionscript), they are given a personalized secret key, which they can email to me in exchange for a prize. I can then validate the ...
8
votes
6answers
939 views

Best Tools for Debugging Flash ActionScript 3 (AS3)

Does anyone want to share the best debugging tools they have found for Actionscript 3 (AS3) and Flash CS5? I've just done a search and found a few, but would love to hear from people who've actually ...
8
votes
6answers
352 views

Parse durations in simple English

I would like to find an actionscript library that can take strings like: Two days 2h one month a week and parse them into duration (returning the time in some unit). It seems like it's been done ...
8
votes
3answers
544 views

Event-driven CMS - advantages and disadvantages

I'm trying to identify some of the pros and cons of having a CMS that is event driven. Event driven is not uncommon. You see it in many scripting languages like Actionscript, javascript, jquery that ...
8
votes
6answers
481 views

Valid JavaScript code that is NOT valid ActionScript 3.0 code?

Most JavaScript code is also syntactically valid ActionScript 3.0 code. However, there are some exceptions which leads me to my question: Which constructs/features in JavaScript are syntactically ...
8
votes
4answers
2k views

How can I get an instance's “memory location” in ActionScript?

FlexBuilder's debugger will show you the "memory location" (or, I can only assume, something roughly analagous) of any in-scope instance: But I'd like to get this information in code (sort of like ...
8
votes
10answers
1k views

Alternative to Flex Framework

Is there an alternative ActionScript 3 lightweight framework out there similar to Flex, but not as huge. Flex is fairly large, and SWF's being no less than 150Kb big, I'm just thinking it must be ...
8
votes
20answers
2k views

Are browser based online games possible?

I'm not talking about BB-type text based but rich rpgs with spriting, etc. With the current advancements in javascript for rich browser interfaces, would it be possible to create semi-massive ...
8
votes
3answers
1k views

FOSS tools for Flash development

I'm looking into doing some development for Flash. Do I need to buy expensive commercial tools or are there some FOSS tools out there I can get started with? Clearly there are a lot of tools out ...
7
votes
4answers
399 views

swf to exe, real world experience

i'm facing a challenge of rebrushing and updating an almost 10-years old Screenweaver project, and looking for a decent modern swf-exe convertor. Don't have much time to evaluate all the options, ...
7
votes
5answers
651 views

How can I get a smooth text crawl using Flex?

I'm working on a standalone Flash application (written using Flex 3/ActionScript 3) that features a text crawl, like what you might see at the bottom of your TV when watching a cable news channel; ...
7
votes
5answers
320 views

My computer got stupid. 0 + 20 = 19.921875!!! Help me!

You know it's bugger-all when your computer can't get a sum right! I have not the slightest idea why this is happening: _root.attachMovie("clippy","aClip",_root.getNextHighestDepth()); trace("alpha ...
7
votes
3answers
3k views

Flex's FileReference.save() can only be called in a user event handler — how can I get around this?

I need to call FileReference.save() after a web service call has completed, but this method has a restriction: "In Flash Player, you can only call this method successfully in response to a user event ...
7
votes
2answers
3k views

actionscript (flex): how to know whether a property of object exists (or defined)?

I am a Java developer who tries Flex. Here is my problem: I behave actionScript objects as hashmap but when the object do not have the property it gives exception: No such variable. Here I expect ...
7
votes
3answers
4k views

AS3 Timers vs. ENTER_FRAME performance

I'm building a game that got some moving things all the time, so I'm using a lot of Timer instances to control repetition and trigger motion. Now the thing is that I started to notice some ...
7
votes
7answers
15k views

For VS Foreach on Array performance (in AS3/Flex)

Which one is faster? Why? var messages:Array = [.....] // 1 - for var len:int = messages.length; for (var i:int = 0; i < len; i++) { var o:Object = messages[i]; // ... } // 2 - foreach ...
7
votes
2answers
1k 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, ...

1 2 3 4 5 97