Results 1 to 10 of 10

Thread: I am proud.

  1. #1
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default I am proud.

    Well, today(since I'm sick and all), i've dedicated my time and effort to learning Flash CS3 Professional. And took the following tutorial:
    Flash in a flash - http://www.adobe.com/devnet/flash/ar...n_a_flash.html
    I wanted to make something, so here's what I made: http://niler.net/examples/flash/menu/flashMenu.html
    No sound effect, just a simple menu. I wanted to know what you guys thought. For those that know flash AS 3.0, tell me what I did wrong by downloading this.
    Jeremy | jfein.net

  2. #2
    Join Date
    Jun 2008
    Posts
    589
    Thanks
    13
    Thanked 54 Times in 54 Posts
    Blog Entries
    1

    Default

    Much.

    -magicyte

  3. #3
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    That menu is cool Nile... I'd love to learn Flash.
    - Mike

  4. #4
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Quote Originally Posted by mburt View Post
    That menu is cool Nile... I'd love to learn Flash.
    Thanks,
    http://www.adobe.com/devnet/flash/ar...n_a_flash.html
    Jeremy | jfein.net

  5. #5
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    It's good for a first experiment. There is nothing "wrong" with anything you've done.

    You've done a lot on the timeline. For something like a menu, that can get really complicated. As you become more comfortable with AS, you can start to move away from it.

    Also, using button instances for buttons can get limiting. I always use MovieClip instances for buttons. But in this case, it doesn't make a difference.

    Overall though, I can't say that I would change much using a timeline-centric approach.

    Good job.

  6. #6
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Thanks MedyMan.
    Jeremy | jfein.net

  7. #7
    Join Date
    Jun 2008
    Posts
    589
    Thanks
    13
    Thanked 54 Times in 54 Posts
    Blog Entries
    1

    Default

    Just kidding! I checked out the menu. I tried to learn Flash, but didn't get anywhere. By the way, get well soon!

    -magicyte

    P.S. I joined Niler.net

  8. #8
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    I agree with Medy here. If you are going to use AS 3 might as well get used to stacking MCs in one frame. Using the .as files for external scripting and move away from the timeline for animation and usage.

    HOWEVER... there is nothing wrong with this approach, and I still use Flash 8 more than CS3 as I like the functionality and the less confusing AS2 (which can do almost everything AS3 can, with less coding). And even when I do use CS3 I still code in AS2 format, it's just that much more simple.
    To each his own though.

    I would recommend you learn the value of .as files and how to put them to use for you next. From there you can expand your knowledge.

    If you really want to learn Flash, the BEST way is to build a Pong game. No joke. Build it from scratch. Pong uses almost every instance of everyday code you will use and building a working game (graphics aside) will give you so much general "know-how" you can figure out almost anything else you come across.

    Enjoy!
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  9. #9
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Code:
    AS2 (which can do almost everything AS3 can, with less coding). And even when I do use CS3 I still code in AS2 format, it's just that much more simple.
    Gotta disagree with you here Blizz. With the exception of mouse events, most things in AS3 are easier. And even with mouse events...it only looks intimidating. If you get used to it and really understand it...it makes a lot of sense.

    Simple example:
    Code:
    AS2
    var new:MovieClip = this.attachMovie("movie", "new_movie", this.getNextHighestDepth());
    
    AS3
    var new:MovieClip = new Movie();
    addChild(new);
    Anyway...as you said:

    Code:
    To each his own though.
    Love the Pong suggestion btw. I've never heard that before but you're 100% right. It does cover a lot of the basics that you would need.

  10. #10
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    Very nice Nile. Before implementing any navigation or other "required to use" flash modules into a website make sure you scope your audience. I am sure you know this, but flash requires a special plug in, and some people may not want to download the plug-in, which would prevent this person from using your site.

    Personally I do not like using flash, however there are some interesting features and morphs that I have seen. So just be aware of the audience your site is intended for, and I would suggest, for accessibility sake, to always design a "second site" that allows for those who do not have / want the appropriate flash plug-in.

    But looks good

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •