want to learn AS
Out of context: Reply #4
- Started
- Last post
- 17 Responses
- Hello-Sexy0
i would recommend basic programming techniques first.
jumping right into a mook book or tutorial make it hard to learn. yea you can get something to work but you dont know why its working or how to take that and apply it elsewhere.
if you are very serious about it,
start with the very basics.learn what a variable is. a constant, a public variable, a private variable, the types of variables (string, boolean, integer, etc) what typecasting is.
move to basic variable manipluation
move to a simple if statement. if else. then a switch statement.
then for loops, while loops, do while. learn what the purpose of loops are, what the pros and cons are of each type.
start learning what a function is. how its used. what parameters are, recursive functions.
learn how to reuse code by using functions.
then classes, namespaces.
yes it may seem daunting, but really once you know what is in the garage, then start learning whats in each toolbox.
otherwise you're going to learn bad habits and take longer in the end....