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.)
-1
votes
0answers
7 views
AS3 Move objcet back to first position when “click”
After play this game
http://www.brainpopjr.com/readingandwriting/word/adjectivesandadverbs/scrollingbackground/
Im thinking to make a game like this....but i dont know the code , for move the "hand"
...
1
vote
1answer
6 views
Manage objects even nonexistent “add listener object AS3 Which does not exist”
how to add event listener in object not exist?
example i have 3 movieclps inside 3 buttons in one movieclip and in other 2 buttons.
i have one CLASS BASE to add the same functionaliti like this:
...
2
votes
1answer
15 views
What is ActionScript 3? How does it work?
I am actually new to android programming and I was wondering how an game engine such as the starling engine works. I have previously programmed in canvas, surfaceView and I was able to make simple 2D ...
0
votes
1answer
11 views
Flex Skin addEventListener
I have Spark TextInput with a Skin. This Skin has 3 states and need to be able to change of state depending on the Event listened.
The holder of the TextInput is a Panel which dispatch an Event when ...
0
votes
0answers
12 views
Flash CS6 AS3: Click listener on overlapping movieclips only fires top movieclip
I have several Movieclips which overlap one another, each one has a different graphic of a body part. I would like the user to be able to click on a body part and it highlights.
I've set up event ...
0
votes
1answer
16 views
AS3 slow webcam with 1080p on i3 laptop
I made an AIR application that uses the logitech c920 webcam for image capturing. The camera can display and record 720p and 1080p perfectly when I'm using the Logitech software. But when I use 720p ...
0
votes
1answer
13 views
AIR(ActionScript) for iOS FacebookMobile.login() use browser?
I want to use facebook graph api from air for ios app.
When FacebookMobile.login(), i use stagewebview. is successed.
but, i want to login that use safari.
FacebookMobille.login() ...
0
votes
0answers
12 views
Local variable inside linked movieclip (from library) seems to reset to default state
I didn't touch Actionscript in years but this blows my mind... It should be fairly easy, though.
Ok, I created a simple test scenario. I have a MovieClip in my Library named "mcTest". It's a simple ...
0
votes
1answer
14 views
Syntax error 1073
I'm getting this compiling error but am not quite sure how to fix it -
1073: Syntax error: expecting a catch or a finally clause.
function __setProp___id98__Dage_APOP_Content_0()
{
if ...
0
votes
2answers
27 views
how to call objects created in a loop?
Newbie question:
If I create several shape objects in a loop, like:
var i:int;
for (i = 0; i < 3; i++) {
var circle:Shape = new Shape();
circle.graphics.beginFill(color);
...
0
votes
0answers
14 views
How does transform manager work
I'm trying to do something about transform tools in as3. And I found this
which so helpful to me. However, I still have so many questions.
First, if I want to transform some custom image. What ...
0
votes
0answers
8 views
2 .fla files sharing the same .as. Is it possible to include headers conditionally based on an .ane?
I have a Flash CC and AS3 document which I intend to deploy on both iOS and Android platforms.
What I need to do next is integrate the app with Facebook. What I thought was the most logical way ...
0
votes
0answers
30 views
as3 Error type was not found but already import
I have a problems when I want to compile my code. There are errors
Type was not found or was not a compile-time constant: SliderEvent
But I have already import it.
import fl.events.SliderEvent;
...
0
votes
0answers
19 views
Customized itemRenderer with default and limited items
In my flex project I have a list with customized itemRenderer. I will provide data from a XML file. I want this itemRenderer
Always contains only 6 items and not less and not more
If the result of ...
1
vote
0answers
17 views
ByteArray.clear() not working for shared ByteArrays?
It appears that ByteArray.clear() doesn't do anything when I share a ByteArray with a worker. Take this code as an example:
package
{
import flash.display.Sprite;
import flash.system.Worker;
...