Macintosh and Firefox problems

Ask a Question related to Macromedia Flash Player, Design and Development.

  1. #1

    Default Macintosh and Firefox problems

    I am designing a website for a client, I have programmed an automatic photo
    slideshow on the homepage and in the portraits and weddings gallery. I
    programmed the movie to load the images externally with the loadMovie command
    and then it resizes and positions the photos in the viewing area. It works
    fine on Windows IE but it does not work correctly on a Macintosh (IE) or
    Mozilla Firefox. On the MAC and Firefox it works intermittently. Please help.
    I posted it on my own website for testing purposes. The url is :
    [url]www.dccreative.org[/url]

    djnilo Guest

  2. Similar Questions and Discussions

    1. Macintosh OS X Path Problems when using DWfile.exists
      Hello, When working with a MACINTOSH OS X and when I try to do either a DWfile.exists( dreamweaver.getConfigurationPath() ); DWfile.exists(...
    2. LocalConnection problems on Macintosh
      I tired to write this bug to support, but was redirected to paying support... sad world! We can't open more than 10 different localconnections on...
    3. To All Macintosh Users: IE Mac or Safari or Firefox?
      To all Mac users: Which browser are you using? IE Mac 5.23 Safari Firefox Is anyone still using IE Mac 5.23 considering the Microsoft...
    4. REFER VINTAGE, LEGACY, OBSOLETE APPLE MACINTOSH PROBLEMS TO:
      REFER VINTAGE, LEGACY, OBSOLETE APPLE MACINTOSH PROBLEMS TO: B&R Computer Services 619-225-8281 We can help people who are using older,...
    5. Power Macintosh G3 SCSI CD Problems
      In article <4dabe7ac.0307090716.773e4301@posting.google.com>, gtxinfo@yahoo.com (gtxinfo) wrote: From first hand experience I would list the...
  3. #2

    Default Re: Macintosh and Firefox problems

    Try make it in PowerPoint first, then turn it into a smaller .swf file
    which you can post online easy:

    [url]http://www.sameshow.com/other/powerpoint-to-flash-good.html[/url]

    Check it out. hope it helps.

    susan57_zheng@yahoo.com Guest

  4. #3

    Default Re: Macintosh and Firefox problems

    Hi, djnilo,

    Wondershare Flash SlideShow Builder is a tool to create Flash
    slideshows from your photos. You may get it a try and see if it will do
    what you want.
    [url]http://www.flash-slide-show.com[/url]

    Regards,

    lookaaly@yahoo.com Guest

  5. #4

    Default Re: Macintosh and Firefox problems

    I have the same problem

    [url]www.ussesite.com[/url] works with ie but fails with 1.0,7 firefox
    wheeler1949 Guest

  6. #5

    Default Re: Macintosh and Firefox problems

    FLASH Player 8 does`n play the files as Flash Player 7

    We are programming files that are not reading as the same file with Flash Player 8.


    Penate Guest

  7. #6

    Default Re: Macintosh and Firefox problems

    FLASH Player 8 does`n play the files as Flash Player 7

    Change to Flash Player 7 again and you will see it works OK....... But, ....
    That is a big problem for every programmer.
    Do we have to tell users not to install Flash Player 8, because does not play
    the files as Flash Player 7 ???

    Penate Guest

  8. #7

    Default Re: Macintosh and Firefox problems

    Having the exact same danm problem with that firefox, good to know Im not alone. I just have quality issues when going to version 7. Think firefox will ever fix this problem - who's problem is it?
    RedFl Guest

  9. #8

    Default Re: Macintosh and Firefox problems

    I'm having the same frustrating problem as you guys. I have found no solution,
    but will post it if I figure anything out. For now, I am having to send
    fscommands to the page and load the slides into a div instead. That's a real
    drag.

    gomper Guest

  10. #9

    Default Re: Macintosh and Firefox problems

    Hey, I've found a great workaround. Drag a TextArea onto the stage - disable
    editing and enable html for it. Name it whatever you like - I called it
    'slideArea'. On the first frame of your movie, add these 2 lines to make the
    TextArea background color and borders transparent:

    _global.styles.TextArea.setStyle("disabledColor", "none");
    _global.styles.TextArea.setStyle("borderStyle", "none");

    Okay, then you just load the swf's or jpg's in dynamically with img tags - in
    my code, it looks similar to this:

    var mySlide = "http://myServer/slides/Slide" + _root.slides + ".swf";
    _level0.slideArea.text = "<img src='" + mySlide + "' width='" + _root.myWidth
    + "' height='" + _root.myHeight + "'>";

    It work perfectly for Mac or PC, IE or Firefox 1.0.7.

    gomper Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139