ActionScript is an object-oriented scripting language used for RIAs, mobiles applications, web applications, etc. which 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 mobiles.
2
votes
10answers
618 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 ...
2
votes
2answers
157 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 ...
1
vote
2answers
108 views
Add events dispatching for ActionScript framework Robotlegs
I have the following function in a Service class
protected function writeToFile():void{
var destinationFile:File = File.applicationStorageDirectory.resolvePath(_newPath);
var ...
0
votes
0answers
197 views
Code Improvement on generating Tree Structure
I'm using actionscript/flex 4.5
I have a Class (DEF) with three main properties
COD_CLASSE is the ID of the object
COD_CLASSE_PADRE is the ID of the parent of the object
children is an ...