Results 1 to 4 of 4

Thread: Differences between Flash Player 6 and 8

  1. #1
    Join Date
    Feb 2008
    Posts
    33
    Thanks
    4
    Thanked 1 Time in 1 Post

    Default Differences between Flash Player 6 and 8

    Can someone please tell me what some of the specific differences are between Flash Player 6 and 8? I have some code that I am currently working on updating, but still using AS2.
    It works great if it is published for Flash Player 6. However, if I change the settings to publish for Flash Player 8 several things quit working. But it works if the settings are publish for Flash Player 6 and I actually play the movie in Flash Player 8.

    I am still working on changing/updating some of the code and am hoping that it helps fix this problem, but it'd be nice if I understood some of the differences so I know what actually has to be changed.

    Thanks for your help.

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

    Default

    Do you mean Flash Player 7 and 8? As far as I remember, AS 2.0 wasn't supported until Flash Player 7.

    So, you might have AS 1.0 on your hands.

  3. The Following User Says Thank You to Medyman For This Useful Post:

    crimsonsmeagol (09-12-2008)

  4. #3
    Join Date
    Sep 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hi, I'm a flash newbie and I'm just starting to get my head round flash!
    I've been working on some premade templates in flash mx2004, and everything seems fine. When I import these saved flash documents into Flash 8, and then change my publishing settings to version flash player 8, (needed to use filters etc) the on off button to control my audio that plays with the scene doesn't work!
    Any ideas, the action script for the on off button that works in flash mx 2004 is as follows;

    on (release) {
    if (_root.sto == 1) {
    Soun.setVolume(100);
    _root.sto = 0;
    } else {
    Soun.setVolume(0);
    _root.sto = 1;
    }
    }

    you can get more information visit http://www.infysolutions.com
    Thanks in advance for any help
    Last edited by nicole123; 09-11-2008 at 11:33 AM.

  5. #4
    Join Date
    Feb 2008
    Posts
    33
    Thanks
    4
    Thanked 1 Time in 1 Post

    Default

    Quote Originally Posted by Medyman View Post
    Do you mean Flash Player 7 and 8? As far as I remember, AS 2.0 wasn't supported until Flash Player 7.

    So, you might have AS 1.0 on your hands.
    Thanks, I'm sure you are right. It's been a little while since I worked with AS 2.0 so I didn't realize the few difference I thought I saw were actually AS 1.0, as I learned different ways of programming in 2.0 but never learned 1.0.

    Thanks for the help. I guess I get to go learn a couple things about 1.0 so I can finish up the project now.

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
  •