Public Voice Network
- RIP Tony Soprano 55
- RIP James Gandolfini 2929
- Drumming World Record 88
- I am Bradley Manning 1515
- blog 5785457854
- QBNTPhE 2013 108108
- Vid of the Day 1529715297
- US State Outlines? 1212
- Four tet is Burial 1515
- EC: David Rudnick 22
- instagram 672672
- Video Games... 997997
- Black People :/ 191191
- PRISM 9191
- Spoonerism of the day 3636
- Package Design 11
- a screen printed, black-l… 22
- Pic of the Day 7541775417
- PS4 vs X-Box One 4747
- The Million Dollar YouTub… 2020
- Chick of the Day 1831118311
- Waterproof Camera for a k… 66
- the gif animation thread 1880418804
- Music Videos 624624
Actionscript classes (school) in NYC 1818 Responses
Last post: 3 years, 8 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


