Questions tagged [actionscript]
ActionScript is an object-oriented scripting language used for RIAs, mobile applications, web applications, etc. ActionScript was initially developed by Macromedia and then acquired by Adobe. It targets to compile for Flash Player runtime which can be deployed in various platforms, including mobile platforms.
8 questions
4
votes
0
answers
83
views
Camera access for both JS and AIR
Flambe is a really neat tool, even though developer dissapeared around march, and the proper camera access is missing (I could move to openFL, but I'm way too deep at the moment). This is my take at ...
4
votes
1
answer
111
views
Simple expense tracker
I have posted below a small project of mine in AS3 regarding a super simple Expense Tracker. I finally made it basically functional, and I learnt A LOT in the way. But even I can tell that my design ...
3
votes
1
answer
413
views
Actionscript Graph data structure implementation
So, I am not sure if I should have Vertex extend Point, because the equals() and ...
5
votes
3
answers
694
views
Frogger game in Actionscript 3
I am creating a Frogger game in Flash AS3 and just wanted to see if anyone can help me improve it without breaking the game.
The reason I ask for it because I don't have any errors, but I do get over ...
3
votes
2
answers
256
views
Add events dispatching for ActionScript framework Robotlegs
I have the following function in a Service class
...
3
votes
10
answers
3k
views
How to simplify my else if statement
Alright so this isn't an issue with my program not working, it's more of a fact that I wanna learn to code better.
This is one of 6 if else statements that I use inside of my program. What I'm ...
4
votes
2
answers
244
views
Using Booleans to Manage State
I'm in the middle of writing my own little bullet shooter game much in the style of Touhou. Everything works fine so far but I'm disliking certain aspects of my code. Take this function for showing ...
4
votes
1
answer
334
views
Getting better speed from adjusting rows in a DockableToolBar
I've been using FlexLib for its dockable toolbar feature. When you shrink the window, it will try to wrap rows if the stage width is less than the row width. Unfortunately, it won't reverse the ...