Tagged Questions
Adobe ActionScript is the open source object orientated programming language of the Adobe Flash Platform. ActionScript 3 is a dialect of ECMAScript, targeted for Adobe Flash Player 9 and higher.
0
votes
1answer
36 views
Game state from Web to iPhone version?
I'm currently in the planning stages for an Web and iPhone game. I'm developing it with Adobe AS3/Air. I was wondering if it's possible for people to be able to play the Web version, save their state ...
0
votes
2answers
83 views
AS3 Internal preloader (one swf) for flash game with Embeded() images?
So I am using the Flash IDE.
And I am trying to make a preloader on Frame 1 so that it displays and loads progress before anything else is exported/loaded. So all my assets from the Library are on ...
0
votes
0answers
58 views
Tutorial on creating simple fighting like Mortal Kombat in ActionScript 3.0 [closed]
I'm looking for a simple tutorial on creating a side-on fighting game like Mortal Kombat, but at its most simplest. So two fighters on a stage (one looking right and the other looking left) and the ...
-2
votes
1answer
73 views
Flash multi-player system: one player moves the other stops when using the mouse
I started making a small multi-player avatar chat to start my self with flash and multi-player. Everything worked fine when I was using arrows to move but when I started using the mouse something goes ...
1
vote
2answers
69 views
Make object follow mouse angle?
what I'm trying to do is make the paddle follow the mouse position(red dot).
I know how to rotate the paddle relatively to the center of the screen, but I'm not sure how to determinate the ...
1
vote
3answers
218 views
Multiplayer API with Unity 3.5 and AS3
On the faq for the current preview release, http://unity3d.com/unity/preview/faq it says that while networking is not currently supported for flash compilation, we can write our own in AS3 using the ...
1
vote
1answer
110 views
How to detect collisions in AS3?
I'm trying to make a simple game, when the ball falls into certain block, you win.
Mechanics: The ball falls through several obstacles, in the end there are two blocks, if the ball touches the left ...
3
votes
1answer
71 views
how to draw a dashed curved line to a point in as3?
How can I draw a dashed curved line to a x,y point in as3? Basically I'm creating a game where you have a turret, and I want the arc the turret would fire a projectile along to be displayed as a ...
0
votes
2answers
100 views
AS3 > Mouse Event not happening?
Background: Trying to make a ball appear in the same location the mouse is positioned. Using Box2D Library. Working on a class file (.as)
Issue: The mouse event does not work (I click but nothing ...
0
votes
1answer
78 views
How can I respond to mouse events in AS3?
Background:
Trying to make a simple "drop the ball" game.
The code is located inside the first frame of the timeline. Nothing more is on the stage.
Issue:
Using QuickBox2D I made a simple If ...
0
votes
1answer
85 views
AS3: StageWidth for BOX2D?
I know BOX2D uses meters, and AS3 uses pixels.
I'm trying to create objects which are limited to the stageWidth.
If I do this variable:
for (var i:int = 0; i<(stage.stageWidth); i++){...}
...
0
votes
1answer
91 views
AS3: limit objects to stage width?
I want to limit the creation of objects acording to the stage width.
My method is the following:
for (var i:int = 0; i<7; i++){
If I put something like this, it won't work
for (var i:int = ...
0
votes
1answer
96 views
AS3 Replay all the child timelines?
Flash CS5 AS3
Is there a way to reset all the timelines while/if the Frame 1 en Scene 1 is called?
I happen to have lots symbols with timelines, if I gotoAndPlay Scene 1 frame 1, most symbols won't ...
1
vote
1answer
221 views
Best way to create neon glow line effect in AS3?
What's the best way to create a neon glow line effect in Flash AS3? Say similar to what's going on in the game gravitron360 on the xbox 360?
Would it be a good idea to create movieclips with plain ...
3
votes
2answers
117 views
How to make it so units don't stack up in one location? [closed]
Possible Duplicate:
Is there a simple way to stop enemies standing in the same spot?
So I'm making a game in AS3, it's a strategy DotA-like game (for flash game equivalent, there's UDE) so ...