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.)

learn more… | top users | synonyms (1)

12
votes
6answers
2k 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 ...
4
votes
4answers
14k views

AS3 Pass FlashVars to loaded swf

I have a A.swf which loads B.swf onto a movieclip and needs to pass it some FlashVars. When loading B.swf with html, I can pass FlashVars fine. When passing from A.swf, it gets a Error #2044: ...
2
votes
2answers
5k views

How to increase the Quality of the camera using AS3?

I'm trying for a webcam based application. I started the code like this: import flash.media.Camera; import flash.media.Video; var cam:Camera = Camera.getCamera(); a.vid1.attachCamera(cam); ...
2
votes
1answer
1k 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
251 views

How do I linkify text using ActionScript 3

I have a text that I want to linkify (identify URLs and convert them to HTML links). The text could be multi-line, and could contain multiple urls like the example below. My current actionscript ...
6
votes
5answers
2k views

Difference Between Single and Double Quoted Strings in ActionScript

Is there any difference between single and double quoted strings in ActionScript?
5
votes
2answers
2k views

AS3 Vector of Arrays

Is there any performance benefit in storing Arrays in a Vector of type Array? e.g Option 1 private var _arrays:Vector.<Array> = new Vector.<Array>(2); _arrays[0] = new Array(10); ...
3
votes
3answers
1k views

How to pass ByteArray to C code in alchemy?

I want to pass a byte array object from flex code to C code.How to do that?
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 ...
0
votes
1answer
118 views

AS3 for ios : how to serialize an array and then save it

I have an multidimentional array and I want to serialize it and then save it using SharedObjects. I tried many things, but each time there is a problem. JSON : can't have types with it. ByteArray : ...
0
votes
3answers
531 views

as3 externally loaded swf from network to control externally loaded swf from network

I have had several posts like this but I have not gotten down to the final answer so I put this image together to try and explain what I am trying to do. I AM SO CLOSE. if you can help me THANK YOU ...
0
votes
4answers
665 views

In flash with as3.0, I have to call a function on the main stage from a movieClip

I have to call a function that is defined on the main stage of my project, and I have to call it from a MovieClip, what can I do? I'm using flash cs5.5 and AS3.0
0
votes
3answers
812 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
3answers
1k views

how do I replace all the links in a text using regex in as3? [duplicate]

Possible Duplicate: How do I linkify text using ActionScript 3 I am using a regular expression to find links in a generic string and highlight that text(underline, a href, anything). ...
18
votes
8answers
18k 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); ...
18
votes
4answers
10k views

How do I create a custom event class in Javascript?

How do I create a custom event class similar to ActionScript? What I mean by that is a class that I can use to fire off my own events, send the necessary data. I don't wanna use third-party libraries ...
13
votes
6answers
7k views

Possible to use Flex Framework/Components without using MXML?

Is it possible to use the Flex Framework and Components, without using MXML? I know ActionScript pretty decently, and don't feel like messing around with some new XML language just to get some simple ...
10
votes
3answers
6k views

Get Current Operating System In Adobe Air

I'm making an App using Adobe Flex/Air. I was wondering if there is any way to get the Operating System the Air app is running on?
5
votes
7answers
18k views

AS3:How to change a colored Bitmap's BitmapData to black and white?

How can I change the bitmapdata of a coloured Bitmap to Black and White in AS3 ? I'm developing a simple image editor tool for a CMS in flash. People should be able to switch the colour of the ...
15
votes
2answers
2k 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( ...
16
votes
6answers
5k views

How can I determine what flash player version a swf was published for?

I have a SWF of unknown origin, and I need to know which flash player version it was targeted at when it was published. What's the best way to get this info?
16
votes
5answers
7k views

What are the key differences between JavaScript and ActionScript 3?

I know both languages are from the same ECMA-262 standard. It seems that the two are becoming very similar with JavaScript adding event listeners for core Object instances through methods like freeze ...
4
votes
3answers
3k views

Flex: Render an unrealized UIComponent to BitmapData?

What is the best way to render to a UIComponent which hasn't been added to the stage? (I'm using UIComponents as renderers for objects, and want to render new copies for image export, filtering, ...
14
votes
8answers
14k views

Calculating Text Width In ActionScript And Flex

I'm trying to calculate how WIDE to make my button, based on the text that it will contain, and when I try to google for how to calcuate something as simplistic as the WIDTH OF SOME TEXT, I go ...
5
votes
3answers
5k views

Flash player notified on browser close or change page (as3)

I have to detect in my flash if the user closes his browser or goes to another page and the flash is not accessible anymore. How do i achieve that ?
3
votes
3answers
2k views

Moving symbol around drawing objects

I have imported a lot of paths from an Adobe Illustrator document right into a flash file. The paths exists as Drawing Objects inside the scene. Using pure actionscript, how can I move a symbol ...
1
vote
4answers
7k views

How to decode Json using native JSON or actionjson in Flex 3

I have the below Json (wf.json) { "workflow":{ "template":"Analysis1", "start":{ "instance":"HDA_run1", "user":"symtest", "date":"3-Mar-2012", ...
13
votes
8answers
25k 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 ...
11
votes
8answers
9k views

Passing parameters to event listeners / handlers

How do you pass parameters / variables through event listeners? I've overcome this problem fairly effectively using anonymous functions; which is an incredibly simple solution, but at the end of the ...
10
votes
3answers
837 views

How can I convert curveTo() to a list of Points?

Take the following AS3 that will draw a curved line using curveTo(): var line:Shape = new Shape(); line.x = line.y = 20; line.graphics.lineStyle(2, 0xFF0000); line.graphics.curveTo(200, 200, 200, ...
9
votes
3answers
9k views

Best way to get the color where a mouse was clicked in AS3

I have an image (mx) and i want to get the uint of the pixel that was clicked. Any ideas?
8
votes
6answers
4k views

Is it possible to secure swf files?

If we create an online SWF application, is there any way to secure it so that someone else doesn't download it and put it on their site? For instance, Webkinz is made with Flash, yet nobody is ...
7
votes
3answers
18k views

How to create a share button in AS3

I was wondering if anyone knew a good way of creating an AS3 Facebook share button? I need to be able to customize the title, description and picture. Thanks!
7
votes
4answers
7k views

actionscript 3 init()

I have often seen an init() within the constructor of AS3 classes, sometimes even being the only code in the constructor. Why would it be useful to do this, if you could simply use the constructor ...
4
votes
4answers
2k views

javascript to actionscript keypress passing utility?

Is there an existing javascript library for relaying key press events in the browser (or certain divs) into flash? I am hoping there might be a library kind of like this one for mousewheel events ? ...
2
votes
3answers
6k views

disable mouse wheel scrolling while cursor over flex app?

Is it possible to disable mousewheel scrolling on my webpage while the cursor is over my flex application? My flex application is a map that allows user to zoom in and out using the mousewheel; ...
9
votes
3answers
14k views

Actionscript 3: Can someone explain to me the concept of static variables and methods?

I'm learning AS3, and am a bit confused as to what a static variable or method does, or how it differs from a method or variable without this keyword. This should be simple enough to answer, I think. ...
6
votes
3answers
4k views

Find the point with radius and angle

I'm not a genius in geometry, I'd like to find a point in as3 with the radius and a angle but I don't remember the rule, I know this should be simple! Here's an example:
6
votes
3answers
32k views

Changing fill color of MovieClip Actionscript 3

i want to ask, how to change only fill color of an instance on the stage - i can do it by using ColorTransform object, but it changes color of the whole instance, not just the fill. I want to change ...
4
votes
4answers
4k views

Fast or asynchronous AS3 JPEG encoding

I'm currently using the JPGEncoder from the AS3 core lib to encode a bitmap to JPEG var enc:JPGEncoder = new JPGEncoder(90); var jpg:ByteArray = enc.encode(bitmap); Because the bitmap is rather ...
4
votes
7answers
24k views

stopping on the last frame (flash)

I want my movieclip to play once and stop on the last frame. I use the following code in the loop of my movieclip class. (this is as3) if(currentFrame == 120) stop(); 120 is the last frame. It ...
3
votes
2answers
2k views

AS3: Export a MovieClip or Canves to swf

Im having an app where the user can edit a simple greeting card and should be able to send it to another user. We currently doing it by exporting to graphic file and sending with some server script. ...
3
votes
2answers
4k views

how to debug swf browser crashes

My swf is occasionally crashing the browser (or just crashing the plugin as chrome tells me). How do I diagnose the bug? I am developing for flash player 9 using flex. Things I have tried: Turned ...
2
votes
4answers
5k views

How to use crossdomain.xml for my flash project…?

Guys.. This drives me crazy...I am trying to build a youtube player with flash and everytime I load a video, there is a runtime security sandbox error..I already put crossdomain.xml in my root ...
0
votes
5answers
4k views

maximum size of a sprite in as3?

Is there an upper bound to the size of a sprite in as3 / flash 10? I know bitmapData has limitations...
18
votes
4answers
6k 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: ...
7
votes
3answers
2k views

What is the difference between target and currenttarget in flex?

Can any one please tell me the difference between target and currenttarget in flex?
5
votes
7answers
7k views

How to upload a BitmapData Object straight to my server?

I wish to upload from my Flash Application (AS3) to imageshacks XML API. I wish to know how I can do this. "In Flash, we must POST the data using the UrlRequest and UrlLoader classes, however we run ...
4
votes
3answers
7k views

Unexpected Flash Security Exception When Using URLLoader

What I am trying to accomplish is to upload some binary data, specifically a ByteArray representing a PNG image, to a server using the URLLoader class in conjunction with URLRequest. When I set the ...
2
votes
2answers
1k views

Attaching movieclip along a path with rotation (Through AS3)

How could I do: To attach a movieclip (e.g. 'footsteps'), along a path (other movieclip). That would be within a interval for attaching one movieclip at a time. I would need rotation, i.e, the ...

1 2 3 4 5 39