Adobe ActionScript 3 is the open source, object-oriented programming (OOP) language of the Adobe Flash and Air platforms. (ActionScript 3 is a dialect of ECMAScript.) AS3 can be used to create applications for iOS, Android, and Blackberry, as well as web programs deployed using Flash Player and ...
110
votes
16answers
14k 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, ...
147
votes
6answers
39k 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()
...
11
votes
5answers
6k 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 ...
22
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
10answers
17k 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 ...
8
votes
13answers
15k views
How to deal with Number precision in Actionscript?
I have BigDecimal objects serialized with BlazeDS to Actionscript. Once they hit Actionscript as Number objects, they have values like:
140475.32 turns into 140475.31999999999998
How do I deal with ...
1
vote
1answer
2k views
Having troubles calling a Controller Post Method
Here's my method
[AcceptVerbs(HttpVerbs.Post)]
public void SaveImage(FormCollection formValues)
{
byte[] contents = Convert.FromBase64String(Request.Form["file"]);
...
15
votes
4answers
4k 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 ...
2
votes
5answers
19k views
Load AS2 SWF Into AS3 SWF and pass vars in URL
I've got an AS3 SWF that I'm going to be loading other SWFs into. These child SWFs all take a single parameter on the URL. I can't seem to get it working when loading an AS2 child, and it needs to be ...
4
votes
0answers
310 views
What does HTML5 offer over Adobe Technologies? [closed]
Possible Duplicate:
html5 vs flash - full comparison chart anywhere?
What I mean is, assume I have a Flex application, with Java at server end. I have .mxml pages and .as for object based ...
13
votes
24answers
3k views
Hidden features/tricks of Flash development, Flash language (AS2/3), and Flash IDE [closed]
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
13answers
15k 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 ...
12
votes
7answers
19k views
Detect Mouse leave stage while dragging in Actionscript 3
Event.MOUSE_LEAVE is great in Actionscript 3, but it doesn't seem to fire if the user is holding their left (or right for that matter) mouse button down.
Is there a way to detect if the mouse leaves ...
1
vote
8answers
3k views
Suggestions for (semi) securing high-scores in Flash/PHP game
...I have read a few threads on here that have discussed various methods and was just looking for some feedback on a proposed solution we came up with. In one of the threads a comment was posted ...
7
votes
1answer
9k views
Save video captured from webcam using Flash
I'd like to use Flash to capure video from the user's webcam and then save it on the same server that hosts the Flash file. The web server will be running ASP.Net technology. Seems easy, right?
Lot ...
10
votes
10answers
35k views
Howto embed images in Actionscript 3 / Flex 3 the right way?
I'm creating a game where a lot of images are being used in Actionscript / Flex 3 (Flash). Now that I've reached the designer stage, I have to work out a structural way of using embedded images (which ...
10
votes
4answers
2k views
How to pass arguments into event listener function in flex/actionscript?
Since when using sql lite if you try and do a function at the same moment it throws an error, im just trying to make a function that will check if its executing, and if it is try again in 10 ...
6
votes
5answers
15k views
How can I send a ByteArray (from Flash) and some form data to php?
I have a sketch pad made in Flash AS3 like this one here: http://henryjones.us/articles/using-the-as3-jpeg-encoder
I want to send the jpg to the server and some data from a html form field with php. ...
0
votes
4answers
445 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 ...
7
votes
5answers
6k views
Best IDE for ActionScript 3 coding [closed]
What do you think which is best IDE for coding ActionScript-3 with most of the support..
I know following IDEs..If anyone knows any other better...
Flash CS3 - horrible - but have to use to debug!
...
1
vote
2answers
193 views
How to pass a String from a SWF into another SWF
hoping this is an easy enough question :)
Some details:
I am using Flash CS5, never touched Flex. Also the SWF that is doing the loading will be a client SWF, so hoping for a solution that could work ...
0
votes
3answers
672 views
Adobe AIR - Custom Preloader with Image
Folks,
I have designed an Adobe AIR application. I want to show some preloader on it, before it opens up.
Can anyone guide me with tutorials on preloader aimed for AIR specifically or any already ...
2
votes
1answer
117 views
Yet another “local file access in actionscript-3” q-u-e-stion
I hope I can get some help with my actionscript problem.
(inb4: 'What exactly are you trying to accomplish (other than opening an arbitrary file without user permission)?' link)
I am trying to ...
2
votes
3answers
1k views
AS3/Flex 4: Most Practical Way To Find Nested Children
I'm sort of jumping in headfirst to some Flex/AIR stuff. I have a pretty solid background with AS3, but given the inherent hierarchal complexity of Flex (compared to regular Flash), I'm running into ...
1
vote
3answers
415 views
Flash CS5 reference a display object in the constructor of a non-document class
After learning of this excellent method of accessing an object placed on the stage in Flash CS5 in a class other than the document class (found in this thread), I have run into a stumbling point. I am ...
0
votes
3answers
1k views
how do I replace all the links in a text using regex in as3?
I am using a regular expression to find links in a generic string and highlight that text(underline, a href, anything).
Here's what I have so far:
var linkRegEx:RegExp = new ...
15
votes
5answers
21k 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.
10
votes
7answers
10k views
Insert commas into number string
Hey there, I'm trying to perform a backwards regular expression search on a string to divide it into groups of 3 digits. As far as i can see from the AS3 documentation, searching backwards is not ...
7
votes
3answers
7k views
How do I Pass an Image from Flash to ASP.NET?
Quick version:
How do I get an image that was generated on the users browser back to the server?
The current plan is this:
The Flash developer will convert the bitmap to JPEG
He will then POST the ...
1
vote
2answers
212 views
Flex documentation: what do the experts use?
I've recently started using Flex and Adobe's Flash Builder 4.5, and I'm feeling somewhat overwhelmed by the number of frameworks and classes. I'm aware of Adobe's online ActionScript documentation, ...
17
votes
3answers
7k 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 ...
6
votes
7answers
386 views
How should a programmer go about getting started with Flash/Flex/ActionScript?
What is the shortest path between zero (ie no flash related development software on my computer or information about where to obtain it or get started) to running a "hello world" ActionScript?
I'm ...
5
votes
5answers
4k 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!
4
votes
2answers
455 views
ActionScript - Difference Between Primitive / Non-Primitive Objects for Memory Management?
my understanding is that primitive types (uint, string, Number, etc.) of a class do not need to be set to null for garbage collection.
for example, i am not required to write this dispose() method in ...
7
votes
5answers
13k views
Object Focus problem with Safari and Chrome browsers
I have the following javascript being called to request a focus when page is loaded.
This code works 100% OK with Firefox and IE7, but Chrome and Safari do not seem to move the focus at all. How to ...
4
votes
5answers
17k views
Reading the text file line by line and push to an array in AS3
I need code is as3 to reading a text file line by line and insert in to an array using AS3.
is it possible to do it with out having any special character.
sample.txt
Car
van
scooter
...
0
votes
8answers
3k views
Optimizing transition/movement smoothness for a 2D flash game
Update 6:
Fenomenas suggested me to re-create everything as simple as possible. I had my doubts that this would make any difference as the algorithm remains the same, and performance did not seem to ...
4
votes
8answers
42k views
How to convert bytearray to image or image to bytearray?
How to assign bytearray value to panel background image. If anybody have idea or experiance plz help me to overcome the problem. BRIEF EXP:
I have panel control and want to load image getting from ...
3
votes
3answers
314 views
Point closest to combined geometric shapes (compound shape)
I have a single point and a set of shapes. I need to know if the point is contained within the compound shape of those shapes. That is, where all of the shapes intersect.
But that is the easy part.
If ...
2
votes
1answer
493 views
Flash parallel programming
Since Flash doesn't support thread, how does it manage to deal with multiple animations ? Is it only internally that Flash uses threads but which are not accessible to the programmer ?
How on the ...
0
votes
1answer
260 views
Is it impossible with Flash to get the Instance Creator?
I want to add a listener to the parent of a slider which is receiving the event from a non-gui class the EventDispatcherManager. So I tried to get the parent of the slider which should return the main ...
0
votes
6answers
203 views
How to get started with Actionscript?
I would like to learn a bit about using actionscript. I currently know zero about flash and such, so I kind of want to learn a bit so I am not so lost when it comes to this subject. Could someone post ...
3
votes
1answer
1k views
AS3 Passing and getting data to ASP
I've been researching for days on the issude but till now I still haven found a solution yet.
I have 0 knowledge on ASP. And I just want to able to pass and get var/text from ASP.
Anyone kind enuff ...
3
votes
1answer
2k views
flash actionscript access filesystem without air?
Is there any workaround to allow actionscript3 write to file system without adobe air?
The reason is because, in order to use adobe air, each of the web visitors will need to install add-on air ...
2
votes
3answers
395 views
Flash AS3 … (rest) parameter
OK, so we all know that using the ... (rest) parameter in a function lets us pass any number of arguments, as in the example in the Adobe AS3 manual:
function traceArgArray(x: int, ... args) {
for ...
0
votes
3answers
256 views
Alternative to embedding a font in as3
I have quite a basic question to ensure I am not missing something obvious!
Does anyone know of an alternative to embedding fonts? I am developing a global app which will change the font for Asian ...
0
votes
2answers
377 views
Flash Socket Policy - Policy is served, but client aborts connection to socket
I have a service set up on port 2400. When I run the Flash client from Flash itself, it runs fine because it bypasses security policy.
When I try to connect by running the SWF on my desktop, or from ...
0
votes
2answers
558 views
Error in Flash addition
Make a new AS3 Document in Flash, paste in the following code and run it:
var a:Number=0;
trace(a) // 0
a+=0.3;
trace(a) // 0.3
a+=0.3;
trace(a) // 0.6
a+=0.3;
trace(a) // 0.8999999999999999
...
13
votes
2answers
1k 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(
...
7
votes
11answers
15k views
What is the best way to get the minimum or maximum value from an Array of numbers?
Let's say I have an Array of numbers: [2,3,3,4,2,2,5,6,7,2]
What is the best way to find the minimum or maximum value in that Array?
Right now, to get the maximum, I am looping through the Array, ...