A Flash Developer Resource Site

Results 1 to 5 of 5

Thread: Firefox and Safari won't load external JPGs

  1. #1

    Firefox and Safari won't load external JPGs

    PLEASE HELP ME!!!

    BACKGROUND: My SWF loads external JPGs that are located in an "images" subfolder. My SWF loads the external images properly when viewed in IE.

    PROBLEM: BUT, the images fail to load when viewed in Firefox and Safari . I ran a test and found that Firefox and Safari are failing to load external images when the images are in a subfolder. The external images WILL, however, load properly if they are in the same folder as the SWF.

    PROJECT:
    http://mcneillyconsulting.viewwork.c...sellfolio.html

    Can anyone indicate what I can do to get Firefox and Safari to load external images that are in a subfolder?

  2. #2
    ActionScript Insomniac
    Join Date
    Jan 2003
    Location
    43d03.21'N, 89d23.65'W
    Posts
    1,173
    Not sure what the problem is. The following works in Firefox on Windows:

    Code:
    var myFolder = "images";
    var myPic = "pic1.jpg";
    myClip.loadMovie(myFolder + "/" + myPic);
    It would help if you would post the exact code that isn't working.
    Unless otherwise specified, all code goes in Frame 1 of main timeline. FlashGizmo.com

  3. #3
    Junior Member
    Join Date
    Aug 2000
    Posts
    15
    use Safari, and open the Activity window. It will list out all the assets the browser is trying to load. See what the paths are for the images that aren't loading.

    This is almost certainly a pathing issue.

    Also note that external JPG files should not be saved as Progressive. These won't display properly (well, they won't display at all).


  4. #4
    Junior Member
    Join Date
    Aug 2000
    Posts
    15
    took a look at that again.

    2 things:

    you are pathing your things like this:

    blahblaah.com/images\imagename.jpg

    Uh, can't use that backwards slash. Should be:

    blahblaah.com/images/imagename.jpg

    Also, it's muy bad to have spaces and stuff in your filenames. Make sure you change those and put in dashes or underscores instead.


    ------

    Firefox and Safari actually pay attention to these little details, unlike IE which is a dumb retarded POS and lets you be sloppy.
    Last edited by xMetal; 03-30-2005 at 04:52 PM.


  5. #5
    xMetal, YOU ARE THE MAN!

    Thanks so much for finding this. I had no idea about the \ or / thing. It's fixed, now, after months of troubleshooting.

    And, mkantor, thank you for your response as well.

    Why can't all the browsers just get their act together? Uggghhh!!!

    Thanks again --- I appreciate all of your help.

Posting Permissions

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




Click Here to Expand Forum to Full Width

HTML5 Development Center