Public Voice Network
- Xbox: New Generation Reve… 4343
- San Francisco 66
- DaftPunk 203203
- the gif animation thread 1844818448
- Kickstarter of the Day 6666
- Apple Manufacturing 1010
- blog 5770157701
- The drug that eats junkie… 1515
- Name this design style 3636
- New Title 1212
- Vid of the Day 1505115051
- The Purge 1111
- Pic of the Day 7469974699
- WTF Musée 88
- Tornado season 107107
- Kicks 1717
- Show some recent work 55525552
- Server-side Video FX 88
- draw something 439439
- MILF's and curvy chic… 275275
- Chick of the Day 1825118251
- Studio VS Agency VS Consu… 2020
- CSS WebKit image buttons? 88
- What is this thing called… 33
Actionscript classes (school) in NYC 1818 Responses
Last post: 3 years, 7 months ago | Thread started: Sep 30, 09, 6:53 a.m.
- CyBrain
I did a filter search, but predictably didn't get anything.
As much as QBNians have helped me this week, I could use a seminar, class, or some kind of in person education in the ways of AS3. I don't need any training in Flash tweens/animation, GUI stuff, just the code that right now seems like the Devil's Bible.
Up till now, I've been hitting the usual online sources Kirupa, actionscript.org, Adobe, gotoAndLearn and I went through Lynda's tutorials and read O'Reilly's Colin Moock book Essential Actionscript 3.
When, I get down to the work, it's still overwhelming. I'm not sure where to put variable and functions, how to target movie clips is a major chore and I can't get used to going down a rabbit hole of abstract understanding just to perform a simple chore.
Thanks in advance.
- Sep 30, 09, 6:53 a.m. – Permalink
- CyBrain
I'll put it this way. I'm working on my first site now, using classes. It's a little trickier this way, but I like having separate places rather than scrolling through a long frame script. I also needed to some static variables in a class because I struggle with targeting issues.


- Dog-earSep 30, 09, 7 a.m. – Permalink
- fyoucher1
I feel ya man. It's a big move to switch from procedural to OOP. Maybe your best bet would be to actually hire a personal teacher. Maybe try Craigslist and see if there is a ASer who can help get you over the hill you're on now. You're in NYC, there's got to be folks out there. Might be expensive but also might be worth the individual attention and focus.

- Dog-earSep 30, 09, 7:06 a.m. – Permalink
- jonturi
not sure if they do AS3 or if they offer comprehensively detailed instruction but they do offer 1 on 1 classes...
http://www.nobledesktop.com/inde…
- Dog-earSep 30, 09, 7:11 a.m. – Permalink
- CyBrain
I agree about needing the visual reference. I start out by placing all my assets on the stage and designing that way, Then I guide out that layer and put a linkage on the library item. That way, there's less fighting with AS3 which seems to want you coding everything.


- Dog-earSep 30, 09, 7:43 a.m. – Permalink
- CyBrain
You might run into problems if you have any loaded movies that need cross-scripting (the loaded movie needs to refer to something in the main movie). In that case, without a document class in the same folder you would have to publish a .swc file for the loaded movie.
I have no such experience, but I read about that in O'Reilly's Essentials Actionscript 3


- Dog-earSep 30, 09, 8:07 a.m. – Permalink
- vlakken
I just give loaded movies a pointer to an object that contains all the functions vars it needs.
Cos the main movie gives the pointer they are decoupled.
You can even use root as it is now unique to each movie by default.
I dont even write a document class as the ide does this


- Dog-earSep 30, 09, 8:15 a.m. – Permalink
- juskin
hey Cybrain did you get everything working yesterday? sorry I wasnt able to open the files and a take a further look, there expensive but try the lost actionscript weekend movies, they go nice and easy into full fledged AS3 object oriented programming...
http://oreilly.com/catalog/97805…now here something to consider when learning this stuff, most AS3 learning material kinda expects you to already know, or atleast understand basic operations and functionality within the actionscript language, like how to lets say loop thru an XML document, find out how many nodes there are, create movieclips for each, and place them on the stage 20 pixels apart. That kinda stuff transcends actionscript 1-3. I know people who still code in AS2 and create some very complex stuff, so it sounds like you need to go over all of the features of actionscript which I feel alot os AS3 stuff doesnt touch upon. I have recently bought a few cheap AS2 books on amazon that show real world examples, then I try to figure out how to port them over to AS3.

- Dog-earSep 30, 09, 11:50 a.m. – Permalink
- cuke426
hey i built out a simple set of classes and sent them to you last night, did you not receive them? if you rebuilt those files from scratch 10 times most all of your questions will be answered. if you have specific questions, ie static variables, then feel free to ask them.

- Dog-earSep 30, 09, 12:41 p.m. – Permalink
- SteveJobs
"I'm not sure where to put variable and functions"
not sure if i understand your confusion here, but you put them in your classes.
also, not sure what you mean by how to target movie clips.
finally, i think you are letting all the OO jargon and practices overwhelm you. i think once you've worked with as3 long enough, most of this stuff (encapsulation, abstraction, inheritance, polymorphism, composition) will not just come naturally, you'll actually find yourself needing it.


- Dog-earSep 30, 09, 12:50 p.m. – Permalink
- clearThoughts
Yeah get into OOP and MVC. It's not really about the language itself.


- Dog-earSep 30, 09, 1:38 p.m. – Permalink


