Adobe Flash is a cross-platform multimedia runtime used to embed animations, video, and interactive applications into web pages.

learn more… | top users | synonyms

0
votes
0answers
20 views

Adobe Air Mobile AS3 app: challenges and how to overcome them?

I made a PC flash game for LD 26 - minimalism and I am working on porting it to Android. Some questions I'd like to ask: Is it bad to heavily use vector graphics (ie. this.graphics.lineTo()) in ...
2
votes
2answers
110 views

What needs to be done to port a Windows Flash game to Android?

My team has developed a game using Flash (with Lua embeded) that targets Windows. And we want to port that game to Android (also iOS in the future). It's acceptable to rewrite the Flash part of ...
-1
votes
0answers
37 views

Animation in timelines [closed]

Im using MAYA 3D and adobe flash. I was wondering how I can make an animation of an animal birth, its for an app. So within a 24 hr period you can view the egg growing with the little critter inside ...
-5
votes
0answers
94 views

Classic random script [closed]

I dont understand why random(99); and engine<=14) and engine<=69) and else { //this is the remainding percentage which is accorded to "9". randomnumber = 9; # on (release) { ...
0
votes
1answer
142 views

Real cash gambling app

I am making a cash game like deal or no deal for use as an android app, using adobe software. The idea is player wagers 50 pence through Paypal plays the game wins, say, £10 pounds and then cash out. ...
-4
votes
1answer
64 views

Get location of nearest array object [duplicate]

Is there an algorithm that would calculate the location of the nearest MovieClip in an array? Perhaps a loop? If so, what?
0
votes
1answer
57 views

How to stretch Movie Clip according to user's touch coordinates?

I have code like this: touchX = stage.stageX; touchY = stage.stageY; I also have a player movieclip that I'm trying to make shoot lasers. So I got the MovieClip to appear and rotate according to ...
-1
votes
1answer
102 views

Flixel or Pygame for a small game? [closed]

I have some experience in Bash and Python, Lua. I've always wanted to try and make point & click quest games. Most quest games I loved aesthetically and gameplay wise were made with Flash. So ...
-1
votes
1answer
60 views

What is faster, TimerEvent.TIMER or if(timer.running)?

In my game, I'm trying to prevent lag. I have timers for pushback. I'm using if(pushtimer.running), but is it faster to do pushtimer.addEventListener(TimerEvent.TIMER)? Basically, should I add a ...
-4
votes
2answers
54 views

addChild with same MovieClip after RemoveChild

I have quite a bit of code like this: var mov = new movclass; if(somethinghappens){ addChild(mov); } inside the movclass class: //im not going to put code right now, so just imagine a thirty ...
3
votes
3answers
204 views

Best way to network the movement of 2D tanks?

I'm working on a multiplayer Flash game with a Python server and I have a quick question regarding how I should send positional updates for tanks for other players. Should I choose Option A: When ...
0
votes
0answers
51 views

Flash CS6 Spritesheets and XNA

So new with Adobe Flash CS6 comes the new Feature to export Movie Clips as a Spritesheet which seems very nice! I have a few questions to CS6: http://imgur.com/enllkyL Its nifty but it lost its "up ...
0
votes
1answer
101 views

Develop a 2d isometric mobile game on Flash [closed]

I'm building a game on Flash that will run on web/Android/iOS. The game is 2d isometric.I heard that developing mobile apps on Flash sucks and the graphics looks just awful.It'd be quite uncomfortable ...
0
votes
2answers
53 views

Hide movieclip parts that are out of bounds

I'm making a game where one takes a picture of their face to use on a character. I have them zoom in on the picture, but the bitmapdata extends out of its movieclip. How do I assign bounds to my ...
0
votes
1answer
69 views

Camera in Flash

Im having a hard time trying to work out how to implement a smooth camera in flash. In something like openGL i would use a transformation matrix to move the camera around the scene. However with ...
1
vote
1answer
66 views

A controlled trapezoid transformation with perspective projecton

I'm trying to implement a controlled trapezoid transformation in Adobe Flash's ActionScript using the built-in perspective projection facility. To give you an idea of how the effect looks like: ...
0
votes
0answers
36 views

Are Flash AMF calls blocking on AS3 client side?

Are Flash AMF calls blocking on AS3 client side i.e. Do they block the client till the response is returned from the server side? What is the underlying transport protocol used for AMF, If it is HTTP ...
0
votes
2answers
65 views

Changing colour while keeping gradient

I'm making a Flash game with ActionScript 3 and I have a square with a gradient applied to it. I am trying to programmatically changing the colour of the square depending on time, for example, some ...
0
votes
0answers
49 views

Make colour change depending on time

I'm making a Flash game (ActionScript 3) and for dynamics I'd like to make the background change colour depending on the clients' time of day. I have a rough idea on how I want to do this, At ...
-1
votes
2answers
130 views

Semi Transparent Background in Scene [closed]

In my game I want to create game over scene which is semi transparent so game scene become partially visible. Game over scene contain several button that are not transparent but I need only ...
0
votes
1answer
60 views

Revolve FlxSprites Around a Central FlxSprite in Flash Game made with Flixel

I have been working on a Flash game made in Flash Builder using the Flixel library. I have been trying to dynamically create a group of FlxSprites , and revolve them around a player controlled class ...
2
votes
1answer
38 views

Deep copying or cloning in actioscript 3

I would like to make a mirror reflection of an entity in Flashpunk. So I would like to copy a spritemap from one Entity to another (reflectionEntity). If I use something like this ...
0
votes
1answer
151 views

Rotate Box Sprite With Circle Body

I want to rotate my rectangular sprite with circle body. The problem is the body doest not attached to the centre of the sprite. This was the default behaviour of the body and sprite. But I want that ...
1
vote
1answer
48 views

Flixel: Is it possible to use a spritesheet for FlxButtonPlus?

I'm trying to change the graphic on a FlxButtonPlus. I want to get the graphic from a spritesheet. However, if I try the ' regular' way (make an animation and play it), it refuses to use just the part ...
0
votes
1answer
93 views

How to check the device type using Adobe AIR for iOS

How do I check what kind of device the user is running my Adobe AIR app on? Example: if(device == ipad3) { stagestuff.width = 300; }
1
vote
0answers
65 views

How do I make a custom tileset for Flixel that supports autotiling?

I've been Googling this problem for a while now. I'm currently porting one of my Java games to Flixel, and I want to use the original 16x16 tileset I made. In the original game I implemented my own ...
2
votes
3answers
119 views

Swap Child and Child's Child

Is it possible to use swapChildren() with a child and a child's child? Every time I try, I get this error: ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller. Why ...
0
votes
2answers
124 views

Using timer to reverse enemy movement in Flash game made with Flixel

I am creating a 2d flash game using Flixel 2.5 in Flash Builder. I am trying to reverse enemy movement on an interval so that they will move back and forth over a set space. I felt that a timer would ...
0
votes
2answers
78 views

Is it better to import photoshop files or illustrator files into flash? [closed]

I was wondering what would be better to import into flash for when I animate. My intention is to animate my characters and objects and then export as a png sequence and make a sprite sheet then take ...
0
votes
1answer
102 views

Flash game made with Flixel does not appear when using regular zoom [closed]

I am having an issue getting my Flash game (made using the Flixel library) to display when I use Zoom = 1 in the call to Super() in the game's constructor. I have made a map using Dame which is ...
0
votes
0answers
20 views

Virtual Camera preventing correct use of Touch Events

http://www.youtube.com/embed/jkk0k6HvDa4 How come when I try to use e.stageX and e.stageY the virtual camera messes the coordinates up? (watch video)
4
votes
0answers
217 views

FlashPunk + Flashdevelop - How to use sponsor provided preloader

I have developed a flash game using FlashPunk (on FlashDevelop). And now that I am trying to add a sponsor preloader and splashscreen to my game, I realize the flashpunk forums are down, and have been ...
0
votes
0answers
149 views

ActionScript 2.0 - Correct Top Obstacle Collision

I am making a super mario game in flash. I just started working on the collision but I met a problem whenever I step on the top corner of my wal. In super mario, when you step on the blocks, you will ...
0
votes
1answer
127 views

Use of FlxG.camera.follow to follow a character vertically

I am developing a prototype for a game in Flixel in which a character floats upward continually to traverse the level. I would like to have a "tall" layout for levels and set the FlxG.camera to follow ...
0
votes
1answer
65 views

Coordinates user taps

I am using e.stageX and e.stageY to locate the user tap, only I have a vcam that constantly changes the view, until eventually off the stage. Is there another way to do this? Like e.SomeMovieclip.x ...
-4
votes
1answer
194 views

How was the Castle Crashers game for X-box made? [closed]

The graphics and animations for Castle Crashers were definitely made with Adobe Flash. But as far as I know X-box doesn't directly support Flash and Adobe Air technology. I love flash for 2D game ...
0
votes
0answers
151 views

Smudge and Erase Image using Flash and AS3

I am developing an app where in I have to smudge and erase a portion of the image which is loaded on stage. The logic I am using is adding two Images on stage one above the other. I am able to ...
-6
votes
2answers
120 views

X and Y values same as width and height? [closed]

I'm trying to make an expandable box in flash. The registration of down and up is to the left. the registration of left is in the middle. This is the code: down.width -= 10; up.width -= 10; left.x ...
0
votes
1answer
151 views

Hello World with FlashDevelop, Flixel, AS3: uneffective SWF macro

I just started with FlashDevelop and Flixel, and I already have a question. I created this basic hello world: package { import org.flixel.*; [SWF(width = "640", height = "480", ...
0
votes
1answer
107 views

Increasing height increases width

I have a game, where the user presses a button to spend money and increase the height of a Movie Clip. I use the following: height ++. The problem: When I test this out, it seems the width ...
3
votes
2answers
293 views

How to determine mouse position outside stage, and center the cursor?

I was wondering if it is possible to have my flash game determine the position of the mouse, even when the cursor is not inside the stage. My movie clip should move horizontally between x = 100 and ...
1
vote
2answers
102 views

ScaleX and Y for stretching MovieClip

I'm developing a game, and the game has a shop. In that shop there is an option for a house expansion. This is a movieclip that I want the user to be able to spend their coins to increase their ...
-4
votes
1answer
78 views

Error 2007 after gotoAndStop [closed]

My most unfavorite errors, error 2007 and error 1009. TypeError: Error #2007: Parameter hitTestObject must be non-null. at flash.display::DisplayObject/_hitTest() at ...
2
votes
1answer
162 views

Handle Multiple Scene

For my game, now I adopt the strategy to create multiple scene. For this I have to ask two question please provide your view for my and other members for improvement. I have created single ...
1
vote
1answer
200 views

Use FlxAnim to Animate a FlxSprite in Flixel on FlashBuilder

I am trying to animate a FlxSprite, whose image I loaded from an embedded sprite sheet. I instantiate the sprite like this: // embedding a png file given a relative path ...
0
votes
2answers
170 views

Platform slope angle detection [duplicate]

Possible Duplicate: How do I calculate the angle of the slope at a point on a 2D bitmap terrain? I am planning to make a platform game with my own little engine and I need to know how to ...
3
votes
1answer
234 views

Change the tilemap shown on stage in Flixel

I am building a simple platformer using Flixel, beginning with the source code from Flixel creator's EZPlatformer . I would like to adjust the level's tilemap when the player sprite enters/overlaps ...
1
vote
1answer
523 views

How fast do games in Flash C++ Compiler execute compared to C++?

Flash Player can now run C++ code, that is cross complied with the Adobe Flash C++ Compiler. How fast does such code run in comparison to a C++ application running as an EXE, in the context of gaming? ...
0
votes
0answers
319 views

Socket.io v.9 with Actionscript

I'm attempting to develop an online multiplayer game using Node.js for the server and Flash to display the client. I've been reading up a bit and have found quite a few recommendations for the ...
1
vote
4answers
852 views

Tile-based maps in AS3

I want to make a tile-based platformer in AS3. I want my game to read an external maps file (in xml or json or somethimg similar) to draw a tile-based map. I've seen loads of tutorials for this in ...

1 2 3 4 5 7