For IE8, can I load static image instead of Edge animation (see page)?

I'm just roughing out a new site and my Edge animation isn't showing in IE8. I've googled and can't find definitive info on whether Edge 4 has support for IE8. I'm assuming not. My question is... is there a way to load a static image for IE8 so at least there is an image to fill that space? This is just going to be a huge roadblock to me continuing to use Edge unfortunately! IE makes me crazy!!!!!!  http://www.duenorthdesign.com/hwt

Well if you look at the code in the url you supplied they are serving NON-IE browsers <![if !IE]> desginated by the ! mark the css and scripts files that are needed to make edge run correclty. Looking at the code in your page you don't have any of those scripts attached.
<![if !IE]>
<!--Adobe Edge Runtime-->
    <script type="text/javascript" src="edge_includes/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="edge_includes/jquery.easing.1.3.js"></script>
    <script type="text/javascript" src="edge_includes/edge.0.1.1.min.js"></script>
    <script type="text/javascript" src="edge_includes/edge.symbol.0.1.1.min.js"></script>
    <script type="text/javascript" charset="utf-8" src="index_edge.js"></script>
    <link rel="stylesheet" href="index_edge.css"/>
<!--Adobe Edge Runtime End-->
   <![endif]>

Similar Messages

  • Why You Can't Load Some Images On Your 5th Generation ipod

    Why You Can't Load some images on your 5th Gen ipod.
    - OK here is the scoop: I could not load some images on my 5th gen ipod and yet other images would load no problemo. Images were JPEG, jpg, PSD (all approved image types for the 5th gen ipod)
    - After doing several tests like restoring the software on the ipod, reinstalling itunes I still could not find the problem, then I noticed as soon as I would open an image in Photoshop CS2/CS3 that was otherwise loading on the ipod no problemo, when I would save that same image in Photoshop the image would not load in my ipod.
    - So after playing with several settings in Photoshop I found the problem:
    -In Photoshop go to File handling:
    -Image Previews:
    - And click on:Never Save
    You do not want to save a photo with a "Image Preview" when saving any file type that you want to load on your 5th gen ipod. it would seem the ipod will not accept any images with a "Image Preview" embedded into the file, JPEG, PSD, jpg etc.
    I hope this will help some of you because I just waisted a whole day to find this out the hard way.
    Cheers,
    Mac Fans
    BTW I use a Mac Pro/Intel OSX Tiger 10.4.9

    Also I just found out when you are saving an image in Photoshop uncheck the " Embed Color Profile" box.
    So do not embed your images with a "Preview" and DO NOT embed a "Color Profile" when saving images in Photoshop or the images MAY not load on your ipod.
    Have Fun
    Message was edited by: MacPro77

  • Just got a Nikon D610 and CS5 for Mac can't open the images -- message says installed version of camera raw doesn't support the camera.  Downloaded the Raw 6.2 update for Mac, but installation failed. Now what?

    just got a Nikon D610 and CS5 for Mac can't open the images -- message says installed version of camera raw doesn't support the camera.  Downloaded the Raw 6.2 update for Mac, but installation failed. Now what?

    The D610 didn't get out-of-the-box RAW support until Photoshop CC.
    You can either upgrade to CC or use the DNG Converter to convert and open your DNGs in CS5.

  • Once you purchase CC for AE can you load it on two machines?

    once you purchase CC for AE can you load it on two machines?

    Yes.
    This is addressed here:
    Creative Cloud / Common Questions

  • Behavior for calling static image instead of swf?

    On our webpage we currently have a flash image running. We
    also use a Dreamweaver behavior that takes a user without the Flash
    Player installed to a separate page that has a static jpg image
    instead of the Flash image.
    Is there a script, behavior or method available that would
    call the static jpg image instead of the Flash image for non-Flash
    Player users without sending the user to a separate page?
    Thanks.

    You can add an image tag inside the object tag. Just make
    sure the image tag is the last line before the closing tag of the
    object here is an example

  • How can i load a image into a midlet?

    Hi, i placed the png file together wif the midlet in the src directory.
    Image img = Image.createImage("title.png");
    I tried the above code but when i try to load the image in got this error
    Failed loading image.
    anione can help?

    just place your file in /res/ directory not in /src/

  • IWeb 09, Pages 09, and Keynote 09 can't load iPhoto images in media browser

    Ever since yesterday, my iWeb 09, Pages 09, and Keynote 09 have been experiencing problems loading iPhoto 09 images in the media browser. I have no problems loading my audio files, movie files, and widgets, but when it comes to iPhoto picture files, the system just hangs. Luckily, it doesn't crash; it just says "Loading iPhoto images" forever.
    I'm guessing that the problem is with iPhoto 09, because the media browser has no problems loading my Aperture picture files.
    Does anyone have any ideas how I can get iWeb, Pages, and Keynote to load my iPhoto pics in the media browser?
    Thanks!

    1. Quit iPhoto.
    2. Go to your Pictures Folder (or where ever you have your Library) and find the iPhoto Library there (Your Donor Library).
    3. Right Click on it, and from the resulting menu select ‘Show Package Contents’. A Finder window will open and the Library will be exposed.
    4. Find the following files
    AlbumData.xml
    AlbumData2.xml
    and move them to the desktop.
    5. Close up the Library and restart iPhoto. This will force iPhoto to rebuild those files which are key to sharing.
    Then restart the other apps and see does that help.
    By the way: where is your Library? On the Start Up Disk? On an external?
    Regards
    TD

  • Can't load PNG images in CS3

    I'm unable to load PNG images using Photoshop CS3. Whenever I attempt to do so, I get a message saying, "Could not complete your request because it is not the right kind of document."
    Help on this matter would be much appreciated as I am fairly new to using Photoshop.

    I am thinking it is a png file from fireworks.

  • How  can I  load an  image  in a scene?

    I want to load an image in a scene and I have tried it using the
    steve morris example( HAVI example ) , I am using a STB and when I send my xlet I don�t see this imagen at the tv.
    Source code is available from
    http://www.interactivetvweb.org/resources/code/havi/HaviXlet.zip
    Somebody knows another way to do it ???

    I assume you mean a JLabel as an AWT Label cannot display an Image.
    // POINT THE IMAGE BACK TO THE SERVER FROM WHICH THE APPLET WAS DOWNLOADED
    // BY USING GETCODEBASE(). OMIT THAT AND YOU WILL SEE THAT YOU GET A SECURITY
    // EXCEPTION AS THE APPLET WILL TRY TO LOCTE THE IMAGE ON THE LOCAL MACHINE AND
    // APPLETS BY DEFAULT CANNOT ACCESS RESOURCES ON THE CLIENT
    // assumes .gif file exists in same directory as HTML running the Applet
    Image image = getImage(getCodeBase(), "ImageName.gif");
    ImageIcon icon = new ImageIcon(image);
    JLabel - new JLabel(icon);
    // check out the getScaledInstance() method of Image class to resize your image

  • Why Mail can´t load html images when it should?

    Hi, This is odd: Mail 6.2 seems unable to load html images on e-mail received even if the preference is set properly. Any clue?

    not at all. It happens since I´ve upgraded to Mountain Lion a few days back

  • How can i use static image in a form

    I want to use a static image in the form I mean i need some images to show to end user and images but are static images, i was trying to copy paste image from from outside to forms but could not do it.
    Please what is the way to add static image in the form.
    regards
    Maz

    Hi
    Advice_: Pls note don't change the path of ur image cause this will hide displaying it into ur form.
    Regards,
    Amatu Allah.

  • Trigger Edge Animation on page load

    I am using multiple Edge Animations in a DPS document I am creating.  When I open the book, all of the animation begin to play at the same time.
    Is there a way to trigger the animation to start when the user turns to the page the animation is on?

    I'm trying to accomplish the same with recent versions of indesign and edge CC, but I'm not having sucess with autoplay and .125 delay.
    Is there a work around for CC?
    Thanks,
    Erik

  • Can't load an image in flash builder

    Hi, I recently copied my project from one computer to another.  On my old computer, everything worked fine, but on my new computer, when it tries to load images, it gives me this error :
    Error #2148: SWF file http://localhost/MyProject-debug/MyProject.swf/[[DYNAMIC]]/2 cannot access local resource file:///C:/assets/MyImage.jpg. Only local-with-filesystem and trusted local SWF files may access local resources.
    But that's not where it gets REALLY frustrating.  So I changed the location of the image to a bin-debug folder in my project, and it doesn't give me an error anymore... it gives me a broken image icon instead.  The image looks fine in Flex Builder, but when I view it in my web browser, I get a broken image icon!  I know it's pointing to the right spot.  Any idea why this could be?

    **having relative path would eliminate a lot of errors, else have complete path like Http://localhost:800 ...... shoud b mentioned for each and every image which is not usable.

  • Can't load disk image when doing first backup

    Hi
    I've had to erase my Time Capsule's Time Machine sparesebundle as it had a corruption. And now I am trying to do a first backup again.
    Unfortunately, I keep getting an error message telling me the machine can't create a disk image; I have no idea why. I have tried changing my computer name in case that makes a difference (but I don't see why as the previous name worked fine for a year or more).
    Since trying to start this new process, I have noticed that sometimes in the TM preference pane that the TC name is given a Time Capsule-1 as opposed to its normal name of Time Capsule.
    Below is the log captured from the TM widget.
    Starting standard backup
    Mounted network destination using URL: afp://graemeaustin@Time%20Capsule.afpovertcp.tcp.local/Time%20Capsule
    Backup destination mounted at path: /Volumes/Time Capsule-1
    Creating disk image /Volumes/Time Capsule-1/Austin MacBook_001f5bf6a447.sparsebundle
    2010-04-04 12:13:09.184 diskimages-helper[466:1603] Error loading /Library/Plug-ins/DiskImages/NUMPlugin.bundle/Contents/MacOS/NUMPlugin: dlopen(/Library/Plug-ins/DiskImages/NUMPlugin.bundle/Contents/MacOS/NUMPlugin, 262): no suitable image found. Did find:
    /Library/Plug-ins/DiskImages/NUMPlugin.bundle/Contents/MacOS/NUMPlugin: mach-o, but wrong architecture
    2010-04-04 12:13:09.186 diskimages-helper[466:1603] Cannot find function pointer VRPreviewCFPlugInFactory for factory 20D1C6B2-6A02-11D7-B5A6-000393D45566 in CFBundle/CFPlugIn 0x521da0 </Library/Plug-ins/DiskImages/NUMPlugin.bundle> (bundle, not loaded)
    2010-04-04 12:13:09.189 diskimages-helper[466:1603] Error loading /Library/Plug-ins/DiskImages/NUMPlugin.bundle/Contents/MacOS/NUMPlugin: dlopen(/Library/Plug-ins/DiskImages/NUMPlugin.bundle/Contents/MacOS/NUMPlugin, 262): no suitable image found. Did find:
    /Library/Plug-ins/DiskImages/NUMPlugin.bundle/Contents/MacOS/NUMPlugin: mach-o, but wrong architecture
    2010-04-04 12:13:09.191 diskimages-helper[466:1603] Cannot find function pointer VRPreviewCFPlugInFactory for factory 20D1C6B2-6A02-11D7-B5A6-000393D45566 in CFBundle/CFPlugIn 0x521da0 </Library/Plug-ins/DiskImages/NUMPlugin.bundle> (bundle, not loaded)
    Error 35 creating backup disk image
    Failed to create disk image
    Backup failed with error: 20
    Ejected Time Machine network volume.
    Any help is of course so very welcome.
    Thanks in advance
    Graeme

    I tried to start the backup again, after logging out and back in again (as I had done several times before), but this time the sparsebundle loaded ok and the backup started properly.
    So there's no need for anyone to spend any time on me.
    Graeme

  • How can I load preview images into an extra file?

    Hi,
    I've got a question concerning those preview images. I wrote a plugin which uses the actual paths of the photos in the catalog an stores those paths of each photo into a log file. Then an external program has access to that file for further handling. So now I would like to use preview photos instead of the raw images. First, because the user might want to use the picture he/she edited with Lightroom; And then because of the size.Processing a preview image of level 5 would be more efficient than the original photo.
    So how can I get those preview photos? And more important: is it possible to store them in an extra file in a jpg format for instance, so that an external program can make use of them?

    Look at source code in PreviewExporter plugin.
    robcole.com - PreviewExporter

Maybe you are looking for