Wanna learn Actionscript.3.0 along with game development?

hi guys, i am sharing some best books to learn AS.3.0 along with game development including box2d.
best books ever.....(over 7 large pdf books)
you can build complete games from these pdf books.
you need flash professional CS4 or above. you can still use it with CS3...
see this video for links and book covers:
http://www.youtube.com/watch?v=fHzVBud3ah4

Dave,
> OK, so that sort of helps. I downloaded and installed it
> but when I went to create components like I have in my
> Flash 8.0 application I am writing, there are none
available.
Those are the v2 UI Components, which means they're written
in
ActionScript 2.0 and are therefore incompatible with AS3.
Using that
special version of Flash, you may still publish in AS2 if you
like (see
Publish Settings), in which case those Components will
reappear.
> Is this a watered down version so you can't do anything
> with forms.
What you have is not a watered down version at all. Rather,
it's a
souped up version of Flash 8, which is otherwise not capable
of publishing
for Flash Player 9 (in other words, ActionScript 3.0). The
title is a
mouthful, but Flash Professional 9 ActionScript 3.0 Preview
is a *preview
release* of Flash 9, which gives every indication that the
next full release
of Flash will support ActionScript 3.0, and presumably new
AS3-based
Components to match.
> Does this force me to have to get Flex2? I hope not.
Of course not! ;) If you want to develop with AS3 now
already, then
you'll have to do it with something that can compile Flash 9
SWFs. Flex
Builder 2 is an IDE and costs money, but the compiler (Flex 2
SDK) itself is
freeware.
http://www.adobe.com/products/flex/sdk/
If you can wait for Flash 9, then that could be yet another
choice --
presumably improved upon the preview release in your hands.
David Stiller
Adobe Community Expert
Dev blog,
http://www.quip.net/blog/
"Luck is the residue of good design."

Similar Messages

  • Where can I learn Flash CS5.5 basic + Game development?

    Hey where can I learn Flash CS5.5 basics along with game development with the Adobe Gaming SDK?

    By the way i own the site 02geek.com its an online school for programing and we do focus a lot of our time in flash. if you want a step by step from 0 to geek type of training give my site a try

  • Learning ActionScript for developing FLASH Games

    Hi ,
    I dont whether i can post this question here or there is any other Forum for ActionScript , if so sorry for that .
    Now to the question , I know some what ActionScript like Events , custom UI Components , and classes  as required for simple FLEX development .
    To what extent we need to learn ActionScript to develop Flash Games ??
    Can anybody suggest me as where to start with , what is the correct approach and is there any IDE avialable for that .
    Please share your ideas on this     

    hi,
    Depends on what sort of games you want to write, firstly you will definitely need to become familiar with actionscript, most gaming and 3d engines for flash games are done in pure actionscript. You can developer your games in flex even if you don't uses mxml basically the real power of games is in the code which means actionscript.
    http://pushbuttonengine.com/  a gaming engine for flex/ flash
    http://away3d.com/  3d engine for flex/flash
    http://www.flashrealtime.com/flash-game-library-engine-list/   a site that will have you reading lots of interesting stuff.
    David.

  • Learn Actionscript 3.0

    Hey,
    I want to learn Actionscript 3.0 because I have discovered
    that you can't do really nice flash stuff without knowing it. I
    have Flash CS3. I have no programming or language experience, I
    just know a little bit of HTML. What's the best way for me to go
    about learning actionscript?
    Thanks,

    eagledrc,
    > I want to learn Actionscript 3.0 because I have
    discovered
    > that you can't do really nice flash stuff without
    knowing it.
    AS3 is a tremendous, significant re-thinking and
    re-organization of the
    language. It's an improvement in terms of clarity,
    cohesiveness, and
    performace. In fact, at the risk of sounding like one of
    those late night
    plus-if-you-act-now commericials, I can honestly say that the
    more I use
    AS3, the more I appreciate it.
    That said, it's only fair -- to ActionScript and you! -- to
    mention that
    TONS of cool stuff can be done without ActionScript 3.0. For
    years now,
    people have been using pre-AS3 Flash to develop MP3 players,
    video players,
    scrolling platform games (like Mario Bros), multi-user games,
    particle
    effects, ebooks, interactive multimedia presentations,
    slideshows, and the
    list goes on. In many ways, the structure of AS3 makes it
    easier to work
    with, but in terms of actual features, I'll venture to say
    that only
    complex, advanced projects are likely to benefit from the
    speed increases.
    So ultimately, you have a choice. Many ad agencies and
    development
    houses are still publishing to Flash Player 7, just because
    the probability
    is a tad higher that a consumer has Flash Player 7 over 9. If
    you can
    publish for Flash Player 9, I'd say take the plunge and go
    with ActionScript
    3.0. I really think it makes more sense to newcomers than
    ActionScript 2.0
    as a new language. But all the same, keep a back burner open
    for AS2,
    because you're likely to run into files written in that
    version of the
    language for years to come.
    > I have Flash CS3. I have no programming or language
    experience,
    > I just know a little bit of HTML. What's the best way
    for me to go
    > about learning actionscript?
    If it's any encouragement, I didn't have any programming
    experience when
    I started out either. I came to Flash because I loved (and
    still love)
    multimedia. I've been fortunate enough to make a career out
    of (mostly)
    Flash, and the ability to program has certainly made that
    easier, as well as
    more creatively rewarding. If I could go back to an earlier
    me and give
    myself advice, I would steer me toward something called
    object-oriented
    programming (OOP). Even if that younger me didn't want to
    become a
    caffeine-addicted hardcore programmer, I would insist to
    myself that
    *thinking in terms of OOP* can help a developer make sense of
    the gargantuan
    document called the ActionScript 3.0 Language and Components
    Reference that
    lurks behind the F1 key.
    In the tiniest of nutshells, it can be put like this: the
    building
    blocks of ActionScript -- all the things you deal with, like
    movie clips,
    text fields, sounds, buttons, and so on -- are called
    objects. Objects are
    defined by something called classes, which are essentially
    blueprints for
    the objects they describe. Generally speaking, classes
    feature one or more
    of the following categories: properties (characteristics of
    the object),
    methods (things the object can do), and events (things the
    object can react
    to). Look for those headings when you flip through the
    documentation. If
    you're dealing with a movie clip, for example, look up the
    MovieClip class
    and see what features are available to you. Bear in mind that
    classes are
    organized into family trees -- they inherit functionality
    from ancestors --
    so make sure to click the "Show Inherited Public
    Properties/Methods/Events"
    hyperlink you'll find in each class entry. Without that, you
    won't get the
    full picture.
    Even if you don't write your own custom classes, you'll find
    that
    thinking in terms of a programmer -- thinking in terms of OOP
    -- will help
    you navigate the documentation.
    As far as books, I tend to like "Object-Oriented
    ActionScript 3.0"
    (friends of ED), by Todd Yard, Peter Elst, and Sas Jacobs.
    This one is
    geared toward programming and doesn't focus much on the Flash
    drawing tools.
    http://www.amazon.com/Object-Oriented-ActionScript-3-0-Todd-Yard/dp/1590598458/
    You may also get something out of "Foundation Flash CS3 for
    Designers"
    (friends of ED), which I wrote with my friend Tom Green.
    http://www.amazon.com/Foundation-Flash-CS3-Designers/dp/159059861X/
    Ours aims at striking a balance between programming and
    non-programming
    concepts. That doesn't make it better or worse reading
    material -- just
    gives it a different focus.
    I'm also a fan of Colin Moock's work (usually O'Reilly
    books), which
    tends to be extremely thorough, so take a gander at all of
    the above and
    read the reviews to see which one(s) may speak to your
    personal taste. Good
    luck with it!
    David Stiller
    Contributor, How to Cheat in Flash CS3
    http://tinyurl.com/2cp6na
    "Luck is the residue of good design."

  • When I export a PNG file on illustrator, I get random empty space along with my exported object. Is there any way I can make just my object export and nothing more?

    This is an example of my problem. This icon is the sole object in this document, and is the only thing being exported here. Yet when I do export it, a random bar of white space is exported along with it. I am currently using Illustrator to design the art for a video game, meaning that this empty space plays havoc with my end product, and I have to meticulously crop anything I export. Since I do have to make hundreds of individual sprites for this, I would love to learn how to fix this problem and save myself a lot of time. So, what exactly am I doing wrong here, and how can I fix it?

    quicklite,
    I believe the resulting/final size may extend just a tiny bit above a whole point/pixel (value) on the pixel grid.
    You may see by Edit>Preferences>General>Use Preview Bounds (if needed), then select one of the top Reference Points in the Transform palette and look at the Y value measured in points/pixels.
    If that is the case, the solution would be to get rid of that tiny bit.

  • Should I bother learning Actionscript 2 since there's actionscript 3?

    I've been toying around with flash for years, making animations mostly. I want to start making games though, because I'm majoring in videogame animation and I know I'm going to have actionscripting classes. I just wanted to know if learning actionscript 2 would do more harm than good since there's actionscript 3 now. And what are the differences?

    Well, I use AS2 because I feel it is easier to make games with. With AS2 you can add actions to ANY object. For instance, if you want to make a simple button, you just use the actions panel ON THAT OBJECT and type a simple code:
    on(release){
    _root.goToAndPlay(2);
    If you were using AS3, you HAVE to use the actions panel at the top. You can't have any actions in an object.
    It all depends on what you feel, I would recomend learning both, it is always best!

  • Hello,  I have iMac from Oct, 2010 and have OS 10.6.7 and multiple users.  Mail icon was accidently removed along with program.  Mail 4.4 is on other users but when I reloaded software my user got Mail 4.3. Mail 4.3 did not work with latest OS. Ideas?Matt

    Hello,  I have iMac Itel i3, from Oct, 2010 and have OS 10.6.7 and multiple users. 
    About 3-4 days ago the Mail icon in dock had question mark and was accidently removed, along with program on my user.  Oops.
    1. Mail 4.4 is on other users and works fine, but for me it does not work and tells me V4.3 does not work with latest OS X. 
    2. I reloaded software from my user with original disks  (Oct, 2010) and got Mail 4.3 again. Mail 4.3 did not work with latest OS.  I am unable to load Mail.  Gives Yellow error message.    
    "  You have Mail version 4.3 (1081/1084). It can’t be used on Mac OS X Version 10.6.7 (Build 10J869). For more information, click the Help button."
    3. Tried to update software and look for update for mail 4.3 on Apple site to no success.
    Hate to go to MS-Entorage ( I may need to learn something new and alien) mail program since contracts are in Mail/Address Book.
    Ideas?
    MattDeeds

    Matt,
    I would download and run the 10.6.7 combo update.
    http://support.apple.com/kb/DL1361
    Regards,
    Captfred

  • Why wouldn't my iPod Have a reset option to reset to factory settings I believe I received a display iPod it came with games you can't play if you click on them it says for demonstration only and I can not download any apps or games wth do I do

    i bought this 3 months ago didn't open it or anything I know big idiot but it was for my daughters bday today she opens it and stuck to the back of it was a yellow sticker saying display model. What..... Ok so we charge it she can't wait to download her little grs and play and nope it won't let me download any apps or games so I tried to sync it with her brothers and no it won't so I google it  to find out how to reset to factory settings looked so easy should have known I go to settings then general and yep no reset option so I try the iTunes thing with the laptop nope didn't work I am ready to try the hammer you know where you continually beat the darn thing till you feel better ugh please any suggestions would be so appreciated

    You should be able to force it into recovery mode and restore it. Provided, that is, that it's not also activation locked. If there's an iCloud account set up on it with Find my iPod enabled, you're pretty much hosed.
    You may want to try contacting Amazon to see if you can return it. Was it actually sold by Amazon, or by a 3rd party? Amazon is getting to be as bad as eBay any more with all the 3rd party sellers.
    Amazon is NOT an authorized source for any Apple products. What you got was, as you have already figured out, a demo model. It was probably either liquidated along with the rest of the inventory from a brick and mortar retailer that went bust or possibly even stolen.

  • Where can I find a good tutorial for mobile game developement with J2ME ?

    Hi All,
    I'm completely new to J2ME programming. But I have past experience on J2SE developement. Now I would like to know that where can I find a good tutorial for mobile game developement with J2ME ?
    I'll be very greatful if I can find a useful step-by-step tutorial (eg. "The Java Tutorial" for J2SE)
    Please point me ot the direction.
    Thanks
    ZuriJAckshoT

    ibook-widgets.com    have a free tutorial book in the iBooks store.  Search for "Create your first interactive book using iBooks Author"   they also  sell widgets.
    I  dont have any connection - I  found their eBook in the store long ago  and used it to learn more about iBA.
    The best advice though, is be patient,  go back over the process step by step, I cannot  access the Help files for some reason.. but i am sure its in their.

  • FAQ: How do I go about learning ActionScript 3.0?

    Here are a few hand-picked resources for getting started with AS3  that hopefully will give new users confidence to try ActionScript and to  know that they are looking at some of the best resources for learning  it. These are all video tutorials.
    Code Snippets and AS3 enhancements – Code snippets were introduced in Flash Pro CS5 and provide  pre-written code that you can apply as a way to get a lot of basic  functionality implemented without learning really any code. They are  also a great way to begin learning ActionScript 3.0 because they are  very small in most cases and reading them will quickly begin to shed  some light on the conventions that are used.
    ActionScript 3.0 101 – Flash Downunder – In this one, Paul Burnett gives a nice long intro lesson covering a lot of the basics. He’s a really good instructor with a good pace.
    Building an application – This is a quick lesson by Todd Perkins that gives a basic intro to some must-have concepts, including event listeners and stop() actions.
    ActionScript 101 with Doug Winnie – This is Doug’s show on Adobe TV. There are many, many episodes that  go from the basic to more specific topics. Most of the episodes are 5-7  minutes long. A great free resource from a very good teacher with a  manageable pace. Note that the episodes are listed in reverse  chronological order (newest first) on the Adobe TV page.
    In this set of tutorials, Ryan Hodson takes an interesting and interactive apporach to teaching AS3. This will get you typing ActionScript in Flash right away:
    Introduction to AS3

    Srami... welcome to the forum...
    your question is MASSIVELY broad and depends on your requirements and delivery expectations.
    Basically... 'best' for what?
    It's helpful if you provide some details for people to assist you.

  • [note] running multiple audio apps along with runescape

    Hello everyone
    For those battling with their java hogging the audio device *and for those who waste their time with runescape *included* *
    Install PulseAudio and follow their instruction, be sure to READ ( and more if you are like me that can't survive without listening to music).
    After installing and testing everything go to console type in:
    $ padsp opera
    Note I use opera, although I'm pretty sure most of you use firefox. Don't bother though, firefox 3.5 will hang on, been looking on how to fix it but not close enough.
    if you run
    $ pavucontrol
    you should be able to see all the applications that uses audio routed onto it and be able to manipulate the volume of each one
    Alright going back to the 'dadsp opera' step, go to runescape.org or whatever site that contains java mini games or application that uses audio, run it and you should be able to get it working. In the 'pavucontrol' it'd be marked as "OSS Emulation"
    Along with this, be sure to check on libflashsupport-pulse (using 32 bit one personally)
    Sorry if this wasn't the section, wanted to post this since it wasn't anywhere. I'd hope it be helpful to others
    Cheers

    Ok, fixed it!  Sorry if I wasted anyone's time.  I converted the struggling clips from aac to mp3 and now everything's good.

  • A beeping sound, along with a little white light blinking on/off on my MacBook Pro?

    My MacBook Pro is making a loud beeping sound along with a little white light blinking on and off at the bottom of the keyboard. None of the keys are working so I do not have the ability to shut it down. Any idea how to stop the beeping sound?

    Apple One to One is a paid service which has to be purchased when the computer is purchased.
    http://www.apple.com/retail/learn/one-to-one/
    Appointments at the Genius Bar however are free (evaluation, troubleshooting, etc) - repairs would have to be paid for if out of warranty.

  • Busy Image  to go along with Busy Cursor

    Hello,
      I am looking for the best way to show a busy image to go along with the Busy Cursor in a title window inside of my flex app.  I originally thought I could just embed a GIF image and it would animate just like a regular GIF does, but this doesnt happen without using some other 3rd party actionscript.  I know there are animations that can do this, but I am unfamilar with how these exactly work and if I have to start with an original image to animate.  I also dont know much about making a .fla file either then export it to a .swf.  Just looking for a direction to focus on since there seems to be multiple ways to accomplish this.  It just needs to be a circle that fades a section out as it rotates.  Thank you for taking the time to read my post.  Please let me know if you are confused or need any further information.
    Thanks again!
    James

    Greeting!
    I have a similar model "L455-S5008".  Motherboard # "K000093580".
    I have a post about it on the video section. Please look at the pic I uploaded & tell me what it is.
    My client's system does the same thing except it has no cursor just a black screen & all power to the laptop board. Along with  dvd/rw, wireless,HDD & power indicators illuminated. It just powers on & off own its own with no response when I press the esc or F10 buttons like some models do & cause it to stay running. This is a pic of the small chip.
    Attachments:
    100_1364.JPG ‏487 KB

  • Director MX 2004 Games - Game Development with Macromedia Director examples

    hi,
    do you know where can I get examples for Director MX 2004
    Games - Game Development with Macromedia Director from?

    Hi,
    Look at the Inspriation Macromedia Direcor Games and
    Entertainment links at:
    http://www.adobe.com/products/director/special/inspiration/games/
    I have cool Director content links at:
    http://www.fbe.unsw.edu.au/learning/director/resources/#cool
    regards
    Dean
    Director Lecturer / Consultant
    http://www.fbe.unsw.edu.au/learning/director
    http://www.multimediacreative.com.au

  • Help! I am giving away my iPhone 3Gs to my sister along with it's data plan, I want to delete my iCloud account on this phone, will delete my iCloud account too? And what about deleting my personal datas on iPhone, will it delete my data on iTunes?

    Help! I am giving away my iPhone 3Gs to my sister along with it's data plan. I want to delete all of my personal data on my phone, will it delete my data on iTunes too? And same goes for iCloud; I want to delete my acount on my phone because, I guess this is a more convenient way to delete my personal data but I'm not sure if it will delete my iCloud account too or not because I'm getting an iPhone 4S and I'm hoping, the back up data like games & apps and music on my 3Gs will be transfered to 4S.
    Thanks!

    All you have to do is this: Sync your 3GS to create a current backup. Then either: Settings>General>Reset>Erase All Content & Settings or restore it as a "New" device in iTunes. Both accomplish the same thing, erasing all of your data & settings from the phone. You can now give it to your sister, she can plug it into her computer, name it what she wants & sync her content to it. You then restore your 4S from the backup of the 3GS you created when you started. Follow this by syncing your content to your new phone & your 4S will look just like your 3GS.

Maybe you are looking for

  • Deleting Limit Items on PO even though follow on documents exist

    Dear SRM Experts I am hoping someone can explain the below behaviour: Where PO's have follows on documents i.e. confirmation and /or invoice you cannot delete PO's items on a PO. This makes sense. However we also have PO's with Limit items(created vi

  • Reader bookmarks does not show chapter names on iPad 3

    HI, When I open a PDF ebook in Adobe reader on iPad 3 and try to see the table of contents by clicking the bookmarks icon in the bottom right. It only shows "chapter1", "chapter2" etc and not the chapter titles. When I open the same PDF on my iphone

  • Artwork in Itunes: I still don't get it - please help me peach!

    The response and the links provided by 'wrongway peachfuzz' instruct me to change artwork in itunes using 'get info' and artwork appears correctly when I follow instructions. But when I subscribe from another mac, the artwork does not appear. I have

  • Can any one tell me how to send one PO to mutilple mail ids in vendor maste

    Hi Experts, Can any one tell me how to send one PO as a mail to multiple vendors who are all maintained in my vendor master record Suppose I have 3 mail ids in my Vendor master record and I created a PO with that vendor, will that PO goes to all the

  • Query size by scheduling(IMPORTANT)

    If a user will schedule a report in user edition he receives the following error "Exceeded maximum query size". But if the user executes immediately (without scheduling) the query is working.....? How can i solve this problem. I tried many things wit