Images not loading online

import java.awt.event.*;
import java.awt.*;
import java.applet.*;
public class EnglishProjApp extends Applet implements ActionListener
     Image current, img1, img2, img3, img4, img5, img6;
     Button next, back, first;
     String s;
     public void init()
          next = new Button("next");
          next.addActionListener(this);
          add(next);
          back = new Button("back");
          back.addActionListener(this);
          add(back);
          first = new Button("first");
          first.addActionListener(this);
          add(first);
          img1 = getImage(getCodeBase(), "img1.gif");
          img2 = getImage(getCodeBase(), "img2.gif");
          img3 = getImage(getCodeBase(), "img3.gif");
          img4 = getImage(getCodeBase(), "img4.gif");
          img5 = getImage(getCodeBase(), "img5.gif");
          img6 = getImage(getCodeBase(), "img6.gif");
          current = img1;
     public void paint(Graphics g)
          g.drawImage(current, 0, 30, this);
          g.drawString(s.valueOf(getCodeBase()), 0, 100);
     public void actionPerformed(ActionEvent e)
          if (e.getSource() == next)
               if (current == img1) current = img2;
               else if(current == img2) current = img3;
               else if(current == img3) current = img4;
               else if(current == img4) current = img5;
               else if(current == img5) current = img6;
          else if(e.getSource() == back)
               if(current == img6) current = img5;
               else if(current == img5) current = img4;
               else if(current == img4) current = img3;
               else if(current == img3) current = img2;
               else if(current == img2) current = img1;
          else if (e.getSource() == first) current = img1;
          repaint();
As you can see this code is an applet which loads pictures and lets the user flick through them. It works offline but now i have put it online at http://www.geocities.com/jimr1603/index.html the pictures are not being shown. the pictures are on http://www.geocities.com/jimr1603/img1 to img6. The pictures are not particually large as the total of the page, classfile and pictures is about 80k. Any help on this will be appreciated.

wow this forum moves fast
anyway as is my nature i have updated the original code to include a simple game (beats revising) as another class with a popup window
<code>
import java.awt.event.*;
import java.awt.*;
import java.applet.*;
import java.util.*;
public class EnglishProjApp extends Applet implements ActionListener
     Image current, img1, img2, img3, img4, img5, img6;
     Button next, back, first, game;
     gameWindow gameW = new gameWindow();
     public void init()
          next = new Button("next");
          next.addActionListener(this);
          add(next);
          back = new Button("back");
          back.addActionListener(this);
          add(back);
          first = new Button("first");
          first.addActionListener(this);
          add(first);
          game = new Button("play a game");
          game.addActionListener(this);
          add(game);
          img1 = getImage(getCodeBase(), "img1");
          img2 = getImage(getCodeBase(), "img2");
          img3 = getImage(getCodeBase(), "img3");
          img4 = getImage(getCodeBase(), "img4");
          img5 = getImage(getCodeBase(), "img5");
          img6 = getImage(getCodeBase(), "img6");
          current = img1;
     public void paint(Graphics g)
     g.drawImage(current, 0, 30, this);
     public void actionPerformed(ActionEvent e)
          if (e.getSource() == next)
               if (current == img1) current = img2;
               else if(current == img2) current = img3;
               else if(current == img3) current = img4;
               else if(current == img4) current = img5;
               else if(current == img5) current = img6;
          else if(e.getSource() == back)
               if(current == img6) current = img5;
               else if(current == img5) current = img4;
               else if(current == img4) current = img3;
               else if(current == img3) current = img2;
               else if(current == img2) current = img1;
          else if (e.getSource() == first) current = img1;
          else if (e.getSource() == game){
               gameW.setVisible(true);
               gameW.setSize(300, 200);
          repaint();
class gameWindow extends Frame implements ActionListener
     Button button1;
     TextField text1;
     Label lbl1;
     Random rn = new Random();
     int me, you, tries;
     gameWindow()
          super("guess the number");
          me = rn.nextInt(1000);
          setLayout(new FlowLayout());
          text1 = new TextField("type your guess here");
          add(text1);
          button1 = new Button("guess");
          add(button1);
          button1.addActionListener(this);
          lbl1 = new Label("i'm thinking of a number between 0 and 1000");
          add(lbl1);
          addWindowListener(new WindowAdapter() {public void
             windowClosing(WindowEvent e) {setVisible(false);}});
     public void actionPerformed(ActionEvent ev)
          if (ev.getSource() == button1)
               tries++;
               try
                    you = (Integer.parseInt(text1.getText()));
                    if (you == me){
                         text1.setText("you got it in " + tries );
                         me = rn.nextInt(1000);
                         you = 0;
                         tries = 0;
                         lbl1.setText("i'm thinking of a new number");
                    else if (you < me) lbl1.setText
                    ("higher");
                    else if (you > me) lbl1.setText
                    ("lower");                    
               catch(Exception ex)
                    lbl1.setText("enter a number first");
}</code>
it works offline but (again) i am having trouble with the conversion to online. Both class files produced are online and in the same folder but the applet does not load and gives this in the console:
java.lang.NoClassDefFoundError: gameWindow$1
     at gameWindow.<init>(EnglishProjApp.java:106)
     at EnglishProjApp.<init>(EnglishProjApp.java:10)
     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
     at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
     at java.lang.reflect.Constructor.newInstance(Unknown Source)
     at java.lang.Class.newInstance0(Unknown Source)
     at java.lang.Class.newInstance(Unknown Source)
     at sun.applet.AppletPanel.createApplet(Unknown Source)
     at sun.plugin.AppletViewer.createApplet(Unknown Source)
     at sun.applet.AppletPanel.runLoader(Unknown Source)
     at sun.applet.AppletPanel.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
java.lang.NoClassDefFoundError: gameWindow$1
     at gameWindow.<init>(EnglishProjApp.java:106)
     at EnglishProjApp.<init>(EnglishProjApp.java:10)
     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
     at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
     at java.lang.reflect.Constructor.newInstance(Unknown Source)
     at java.lang.Class.newInstance0(Unknown Source)
     at java.lang.Class.newInstance(Unknown Source)
     at sun.applet.AppletPanel.createApplet(Unknown Source)
     at sun.plugin.AppletViewer.createApplet(Unknown Source)
     at sun.applet.AppletPanel.runLoader(Unknown Source)
     at sun.applet.AppletPanel.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Ive just realised that i think it wants the class file called gameWindow$1 to be uploaded but i was uploading gameWindow but geocities says gameWindow$1 is an invalid file name
p.s i tried media tracker with this and it didnt work, if anyone has code examples of media tracker (or simpler :-) ) working please tell me

Similar Messages

  • Images not loading when I visit a website.  I I get is a blank box with a question mark in it.  How do I fix this?

    Images not loading on my browser in Safari or Google Chrome or Firefox when I visit a website.  How do I fix this?

      Can you run EtreCheck and post the report here please?
      EtreCheck:  https://discussions.apple.com/docs/DOC-6173

  • HELP! Images not loading and Firefox taskbar icon is a white file.

    I went through all the suggestions in the image not loading help page and same with the add ins and nothing helping. The images load fine on Google Chrome so I know it's not the site. It might just be Adobe Flash images, but that's as far as I know how to pinpoint.
    As far as the task bar goes, it's just a while file icon instead of the Firefox one. It doesn't bother me, but I just thought it might be related.
    I'd appreciate any help! Anybody! Thanks,
    Stef

    What do you see if you right-click the area where such a missing image should be?
    Is that a context menu for images with "View Image Info"?
    Are there any icons on the location bar that plugins are used or mixed content is blocked?
    If images are missing then check that you do not block images from some domains.
    *Press the F10 key or tap the Alt key to bring up the hidden Menu bar.
    Check the permissions for the domain in the currently selected tab in "Tools > Page Info > Permissions"
    Check "Tools > Page Info > Media" for blocked images
    *Select the first image link and use the cursor Down key to scroll through the list.
    *If an image in the list is grayed and "<i>Block Images from...</i>" has a checkmark then remove this checkmark to unblock images from this domain.
    Make sure that you do not block (third-party) images, the <b>permissions.default.image</b> pref on the <b>about:config</b> page should be 1.
    Make sure that you haven't enabled a High Contrast theme in the Windows/Mac Accessibility settings.
    Make sure that you allow pages to choose their own colors.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    Note that these settings affect background images.
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    There are extensions like Adblock Plus (Firefox/Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images and other content.
    See also:
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    *http://kb.mozillazine.org/Websites_look_wrong

  • My macbook will not load online videos

    My macbook will not load online videos such as youtube or CNN. the videos will just be a black screen and will not load. i have tried using different browsers and also have uninstalled and reinstalled Adobe. what else could it be? Thanks

    If you can't install or update Flash, follow these instructions.
    If you have installed the latest version of Flash, please take each of the following steps that you haven't already tried. After each step, relaunch Safari and test. For a "missing plug-in" error, start with Step 8. Back up all data before making any changes.
    Step 1
    You might have to log out or restart the computer before a Flash update takes effect.
    Step 2
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data...
    and confirm. Close the window. Then select
               ▹ System Preferences… ▹ Flash Player ▹ Advanced
    and click Delete All. Close the preference pane.
    Step 3
    If you're only having trouble with YouTube videos, log in to YouTube and load this page. You may see a link with the text "Leave the HTML5 Trial." If so, click that link.
    Step 4
    a. If you get a warning of a "blocked" or "outdated" plug-in, then select the Security tab in the Safari preferences window. In the list of plugins on the left, there should be one—and only one—entry for "Adobe Flash Player," showing the same version number that you installed. Select that entry. On the right there will be a list of websites for which you have specifically allowed Flash, if any. It's normal for the list to be empty. Below that is a menu labeled
              When visiting other websites
    From that menu, select either Allow or Ask.
    b. If you still get the alerts, then go back to the Flash Player preference pane and select the Advanced tab. Click Check Now. Quit and relaunch the browser.
    c. If the alerts still persist, triple-click anywhere in the line below on this page to select it:
    /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources
    Right-click or control-click the highlighted text and select
              Services ▹ Open
    from the contextual menu.* A folder should open. Inside it, there should be a file named "XProtect.meta.plist". If that file is missing and you know why it's missing, restore it from a backup or copy it from another Mac running the same version of OS X. Otherwise, reinstall OS X.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    Step 5
    In the Safari preferences window, select the Advanced tab and uncheck the box marked
              Stop plug-ins to save power
    Step 6
    Open this folder as in Step 4:
    /Library/Internet Plug-Ins
    Delete the following item, or anything with a similar name, if present:
              Flash Player (failing).plugin 
    You may be prompted for your login password.
    Step 7
    Re-download and reinstall Flash. Download it from the domain "get.adobe.com". Don't click a link from any other website, including this one, because you can't trust links. They may be an attempt to trick you into installing malware masquerading as Flash. Type the address into the browser window. Never download a Flash update from anywhere else.
    Step 8
    If you get a "missing plug-in" error, select
              Safari ▹ Preferences... ▹ Security
    from the Safari menu bar and check the box marked  
              Allow (or Enable) plug-ins
    Then click the button marked
              Manage Website Settings...
    if present and make sure that the website is not blocked for Flash.
    Step 9
    Select
              Safari ▹ Preferences... ▹ Extensions
    from the Safari menu bar. If any extensions are installed, disable them.

  • Some images not loading on web pages

    Using my laptop which Has Windows 7, some images are not loading on every web page, for example the header bar with the fox is not displayed on the firefox home page. I can't log out of my online banking as the yes or no boxes are not displayed. The problem also occurs on IE8. I have tried all the suggestions on the help pages. Iam running the same antivirus on my desktop so it's not the problem. The desktop is Windows XP, so I think it must be something in Windows 7

    Try the sites from another User Account. If you need guidance for establishing a new account, here it is:
    Here is guidance from Apple on how to set up the account. You can ignore step 7 in the article.
    Also, on the system preference>Accounts panel, click on "log-in" options. There, select "fast user switching". This allows you to go back and forth between user accounts via an icon in your Menu Bar at the top of the computer screen.
    Log-on to the new account and start Safari. If the sites are accessible in the new account, then your problem is specific to your regular user account. Otherwise, similar response means a system-wide problem.
    If you find them accessible in the new user account, go back to your regular user account and
    - move the Safari Cache file to the trash (found in your User Library>Caches folder). Restart Safari.
    - If no go, then I'd go to the Safari preferences>Security>Cookies and "remove" the related cookies, trying the site again.
    - If no go, quit Safari, then move the cookies.plist file found in the same library>Cookies folder to the desktop, again restarting Safari. If no go here, put this file back in its original location.
    Post back with results.

  • FireFox images not loading in local folders (firebug error-Failed to load given URL)

    I am having difficulty when developing websites in local folders (Windows7 computer). The webpages I make are showing images in IE9 & Chrome but not FireFox (nor Safari nor Opera).
    In FireFox I get Firebug "Failed to load given URL" prompt.
    I am using html5 & external linked css stylesheet & the html/html5 & css code validates.
    I have tried using rel path ie images/image.gif & absolute path references ie C:/RPD_Programming/RPD WEB/amwcsnew/index.html
    and have tried using % to eliminate whitespace in references but I cannot get FireFox to display images!!
    This has been a problem for me for around 2 weeks now & is very frustrating. Some website code/templates I have downloaded from the internet display the websites properly (ie load images fine) when I open them locally in FireFox. Why does my code not allow the images to load in FireFox (paths/permissions/other issue??). How can I fix this?
    Here is example css & html5 not displaying images from local directory in FireFox (fine in IE9 & Chrome):
    style.css
    /* CSS Document */
    /*Basic Reset*/
    margin:0;
    padding:0;
    html{
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
    display: block;
    body{
    width:1200px;
    margin:0 auto;
    header{
    height:450px;
    background:url("C:/RPD_Programming/RPD WEB/amwcsnew/images/header.gif");
    background-repeat:no-repeat;
    #mid{height:750px;
    background:url('C:/RPD_Programming/RPD_WEB/amwcsnew/images/mid.gif')no-repeat;
    footer{height:286px;
    background:url('C:/RPD_Programming/RPD WEB/amwcsnew/images/footer.gif')no-repeat;
    index.html
    <!doctype html><!-- simplified doctype works for all previous versions of HTML as well -->
    <!--html5 template from www.impressivewebs.com_modified by RPD-->
    <!-- Paul Irish's technique for targeting IE, modified to only target IE6, applied to the html element instead of body -->
    <!--[if lt IE 7 ]><html lang="en" class="no-js ie6"><![endif]-->
    <!--[if (gt IE 6)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
    <head>
    <!-- simplified character encoding -->
    <meta charset="utf-8">
    <title>amwcs-new</title>
    <meta name="description" content="amwcs">
    <meta name="author" content="rpd">
    <!-- Delete these two icon references once you've placed them in the root directory with these file names -->
    <!-- favicon 16x16 -->
    <link rel="shortcut icon" href="/favicon.ico">
    <!-- apple touch icon 57x57 -->
    <link rel="apple-touch-icon" href="/apple-touch-icon.png">
    <!-- Main style sheet. Change version number in query string to force styles refresh -->
    <!-- Link element no longer needs type attribute -->
    <!-- <link rel="stylesheet" type="text/css" media="all" href="css/style.css" />-->
    <link rel="stylesheet" href="css/style.css?v=2">
    <!-- Modernizr for feature detection of CSS3 and HTML5; must be placed in the "head" -->
    <!-- Script tag no longer needs type attribute -->
    <script src="js/modernizr-1.6.min.js"></script>
    <!-- Remove the script reference below if you're using Modernizr -->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    </head>
    <!-- If possible, use the body as the container -->
    <!-- The "home" class is an example of a dynamic class created on the server for page-specific targeting
    <body class="home">-->
    <body>
    <!-- ******************************************************************** -->
    <!-- The content below is for demonstration of some common HTML5 elements -->
    <!-- More than likely you'll rip out everything except header/section/footer and start fresh -->
    <!-- First header has an ID so you can give it individual styles, and target stuff inside it
    <header id="hd1"> No way Hosay-not by default! Default is <header> tag (RPD edit) -->
    <header>
    <!-- "hgroup" is used to make two headings into one, to prevent a new document node from forming -->
    <hgroup>
    <h1>amwcs</h1>
    <h2>tagline</h2>
    </hgroup>
    <!-- Main nav, styled by targeting "#hd1 nav"; you can have more than one nav element per page -->
    <nav>
    <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">About</a></li>
    <li><a href="#">Services</a></li>
    <li><a href="#">Contact</a></li>
    </ul>
    </nav>
    </header><!--End header & or #hd1 header div id if used-->
    <!-- This is the main "div" that wraps the content generically; don't use "section" for this -->
    <div id="mid">
    <!-- The first of two "section" elements for demo purposes; optional class added for styling (hs1 = "home section 1") -->
    <section class="hs1">
    <!-- Each section should begin with a new h1 (not h2), and optionally a header -->
    <!-- You can have more than one header/footer pair on a page
    <header>
    <h1>This is a Page Sub Title</h1>
    </header> -->
    <p>Some content...</p>
    <!-- The h2 below is a sub heading relative to the h1 in this section, not for the whole document -->
    <h2>Demonstrating EM and STRONG</h2>
    <!-- "strong" is used for SEO and contextual hierarchy -->
    <p><strong>This text will have more importance (SEO-wise and contextually)</strong></p>
    <!-- "b" is used for stylistic offset of text that's NOT important contextually -->
    <p><b>This text has visual importance but has no contextual or SEO importance</b></p>
    <!-- "em" is used for colloquial-style emphasis -->
    <p>This is a <em>very</em> colloquial expression.</p>
    <!-- There can be multiple footers on each page -->
    <!-- Secondary headers and footers don't necesarily need ids; they can be targeted via context (i.e. ".hs1 footer")
    <footer>
    <!-- incite a riot: http://24ways.org/2009/incite-a-riot
    <p>Author: <cite>Louis Lazaris</cite></p>
    </footer> -->
    </section><!-- .hs1 -->
    <!-- This is another section; doesn't have header/footer because it's not required -->
    <section class="hs2">
    <h1>This is another section</h1>
    <p>This is some dummy content</p>
    </section><!-- .hs2 -->
    </div><!-- #mid -->
    <!-- The "aside" element could be a sidebar (outside an article or section) -->
    <!-- Or it could reference other tangentially-related content within an article or section
    <aside id="sidebar">
    <p>Sidebar content</p>
    </aside>-->
    <!-- The main footer has an ID for targeting, similar to the main header -->
    <footer >
    <p>copyright &copy; year</p>
    </footer>
    <!-- Remote jQuery with local fallback; taken from HTML5 Boilerplate http://html5boilerplate.com -->
    <!-- jQuery version might not be the latest; check jquery.com -->
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
    <script>!window.jQuery && document.write(unescape('%3Cscript src="js/jquery-1.4.4.min.js"%3E%3C/script%3E'))</script>
    <!-- Below is your script file, which has a basic JavaScript design pattern that you can optionally use -->
    <!-- Keep this and plugin scripts at the bottom for faster page load; combining and minifying scripts is recommended -->
    <script src="js/general.js"></script>
    <!-- asynchronous analytics code by Mathias Bynens; change UA-XXXXX-X to your own code; http://mathiasbynens.be/notes/async-analytics-snippet -->
    <!-- this can also be placed in the <head> if you want page views to be tracked quicker -->
    <script>
    var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
    (function(d, t) {
    var g = d.createElement(t),
    s = d.getElementsByTagName(t)[0];
    g.async = true;
    g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    s.parentNode.insertBefore(g, s);
    })(document, 'script');
    </script>
    </body>
    </html>
    I am most grateful for help & look forward to replies & fixing this-thanks
    NB
    Is there a FireFox guide/manual in pdf format available anywhere? I have not found one yet & a FireFox reference might be useful!

    You need to use file:// as the protocol instead of C:/. The latter may never work (C:\ might).
    Where is the main HTML located ?
    Easiest if to store the images in a sub folder of the location because you can't go back via ../ beyond that root location for security reasons.
    See:
    *http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • LR images not loading  in PS editor

    I have PS on my internal  H drive and LR on my C drive.  In LR, when I export an image to PS the Photoshop program comes up but the image does not load.  I just moved my PS to the H drive to save room on my ssd C drive.

    Separate subject:
    What do you mean by "moved" Photoshop? ?? !!   
    Short of first deactivating your Photoshop install on your C: drive, then uninstalling Photoshop, then installing Photoshop anywhere else from scratch (from the original medium) and activating it, you are guaranteed to make an awful mess of the installation.
    Still, post #1 applies anyway.

  • Images not loading at run-time

    See website uaesocial.joolo.com
    The images are not loading... I've verified the path. The
    images show when I'm working on the project offline but when I
    upload it, it doesn't show... path is on the same domain, e.g.
    assets/pictures/pic1.jpg
    I tried using SWFLoader instead of Image and it still won't
    work.
    Any ideas?!

    have you tried changing your links and putting the images in
    the same directory as your flex file. as this maybe the
    flash-players sandbox issue.

  • Images not loaded correctly

    <i>Locking duplicate thread.<br>Please continue here: [[/questions/1056930]]</i>
    Dear reader,
    Since a week my firefox experiences strange image loading behavior. The problem is seen on various pages, in particular when there are more images/pictures shown (e.g. youtube). The problem does not happen with other browsers.
    The problem is this: All images are shown, but the images are mixed up. For example, images A,B,C,D should have been loaded. Instead images B,B,E,E,E are shown. When I hover over the images, the correct images are loaded. See attached picture: The top row is just after loading. The bottom row is shown after I have hover all images.
    As you can image, this is extremely annoying. I have to read the text and/or hover all images to make a choice or understand what an item is all about.
    I have tried the following with no success:
    - Cleared cache
    - Cleared all (cookies, history, cache, etc.)
    - Refreshed my profile
    - Created new profile
    - Reinstalled firefox
    - Disabled all add-ons
    The only thing that I haven't done, but which could solve the problem is updating my video card drivers. I have an old card (NVIDIA GeForce GTX 275). The reason that I don't upgrade is that new NVIDIA drives cause (hard reset) crashes all the time. Also, any other browser works normally.
    Thanks for any tips/advice you might give me.
    Regards,
    Eyestolks.

    Now with attached image that you can load...

  • Images not loading in CQ 5.5

    images from /etc/properties not loading in Adobe CQ 5.5? Does anyone have any solution to resolve the issue.
    We want images to be loaded for components.
    Thanks very much for your help..
    Thanks & Regards,
    Kumar

    Thanks Justin....
    This is for author/publish and it should be not the issue either the CQ instance is author or publish.
    Let me give you some more input.
    In CQ 5.4 the background image loading properly and image location is at  \etc\design\..\us\en\images
    And the following css just works fine.
    background: url("../../images/company.png") no-repeat scroll right -27px transparent;
        color: #232323;
    But same piece of code not working in CQ 5.5.
    We found in CQ5.5 some unnecessary urls appending to images and that makes the URL invalid.
    As per my understanding CQ5.5 should support backword compatability i.e. CQ 5.4 components should work fine in CQ 5.5.
    Please help me with this.Thank you.
    Thanks & Regards,
    Kumar

  • Web pages and/or images not loading

    This problem started a few weeks ago once every few days or so, then got more and ore frequent where now it is happening multiple times each day.
    I am using Safari 6.1 on an iMac running OS 10.7.5
    Random web pages (some way more than others) will not load when I go to them. Sometimes, the text of the pages will load, but no images. Sometimes the URL progress bar will go across about an inch and the screen will go to blank white (this is most often) and it will just sit there. If I leave it alone, usually the web page will finally load about 4-10 minutes later on its own.
    I have talked with my ISP and we have tried the following fixes, with no positive results:
    When the problem happens, I try pinging the website {using Network utilities) and it always pings just fine.
    When the problem happens, I run Traceroute (using Network utilities) and email him a screen shot of the results.
    I have changed my DNS numbers to OpenDNS, per his comments.
    I have removed the router and plugged in direct.
    I have replaced all my Cat5 cables with new Cat6 cables.
    While the problem is happening, he can ping me just fine from his end.
    When the problem happens, I open Firefox and go to the same site, and have the same blank results in Firefox.
    When the problem happens, I can open a new Safari window and go to other sites just fine.
    This morning, I had the same issues, so I left it to clear on its own. I then went to Outlook to check my email and I had two emails where the images would not load at all, just like the web pages. So I left it alone for over 20 minutes and still no loading. Then I quit Outlook, re-opened it and the images came in just fine. During that 20 minutes, the web pages loaded in Safari in the background.
    I found and read a discussion about this issue  (  https://discussions.apple.com/message/22125235#22125235  ) and per that conversation, I created a GUEST user account, closed out of my account and logged in as a GUEST. I then used Safari to browse the web ans while it was faster, eventually after about 30 minutes, I found a page that would not load (one of my usual suspect pages). I then sat back and let it go and after 5 minutes, the page loaded just fine.
    HELP!!!!!
    John

    Interesting side note . . .
    After writing this (above), I clicked on the SUBMIT button at the bottom of the page and the screen went blank white and it sat there for more than five minutes, when it finally went through. SO, i had my problem occur while submitting my question about the problem!
    Awesome!

  • Images not Loading in Firefox

    I've got some trouble with loading images since flex 3 (and still with flex4).
    In my app I've got several Image tags meant to display jpeg files as follows:
         <mx:Image x="594" y="40" width="400" height="250" id="img_preview" horizontalAlign="center" autoLoad="false" />
    These images are supposed to load an url on runtime which I get from a dataset by means of an rpc:
         img_preview.load( thumbURL );
    Now the problem is that this works just fine on locally - but when I put the release build (or the debug-build) onto the web,
    I just get the missing image icon. This problem so far seems only to occur in firefox, since for example safari or ie working with
    the exact same file just as intendet.
    Ignoring the fact everything works everywhere else I checked the image urls, response headers for the images when loaded
    directly and so on - but found no errors.
    The images urls are absolute from the same domain as the flash movie and an appropriate crossdomain file exists for other
    reasons as well.
    Searching a little further by means of wireshark and firebug I found the flashplayer not opening any connections to the
    server, allthough I'm not quite sure if it's my inability to find the connection or the flashplayer who just want's to bug me to death.
    Any help would be greatly appreciated since I already lost SO MUCH TIME on this..

    Hi pvijeh, is that the explanation for a security error? I'm having trouble understanding the context.

  • Help with images not loading

    My Flash page is supposed to load images from Photobucket.
    However, the images are not loading. I've checked two things to see
    if they have an effect:
    1) Whether Photobucket has a policy file (crossdomain.xml) to
    allow external access. It does.
    2) Changing the allowScriptAccess parameter to "always".
    Here's the HTML page where the Flash file is being used:
    http://www.geocities.com/mikehorvath.geo/legopanotour.htm
    The page works fine on my harddrive. I'd appreciate any help.
    -Mike
    [edit]
    Duh! I didn't properly understand the purpose of policy
    files. The domain of my own site's server needs to be listed in
    Photobucket's policy file. Please ignore this message.

    same damn problem I am probably having...When using IE and
    deleting temporary internat files it disables/corrupts/removes
    proper function of the adobe flash player....You can reinstall all
    night long and it will claim a "successful" installation but, it is
    not....YOU MUST FIRST UNINSTALL ADOBE FLASH PLAYER USING THE ONLY
    TOOL THAT WILL DO THIS WHICH IS THE FLASH PLAYER UNINSTALLER FROM
    THE ADOBE WEBSITE....BE SURE AND SAVE IT BECAUSE YOU WILL BE USING
    IT FOREVER.....Once you have used the uninstaller program you can
    then sucessfully and truthfully download the latest adobe flash
    player.......WILL SOMEBODY FROM ADOBE FIX THIS!........
    Adobe
    Uninstaller at bottom of page

  • How to debug image not loading intermittently exclusively on Firefox?

    The image (GIF67) is being generated and sent via binary stream from the server (using secure connection), Explorer and Chrome always display the image, Firefox intermittently fails to load it with no distinct success-fail pattern.
    I have verified that this is a Firefox issue, by analyzing the tcp packages and confirmed that the response from the server is always the same at bytes level either on the success as the fail scenario.
    How could I setup Firefox to log the render process of the image requested?
    Actions taken:
    -Tested with Firefox versions from 10 to 28, fails
    -Tested with Chrome and IE, image always renders correctly
    -Followed:
    https://support.mozilla.org/en-US/kb/firefox-cant-load-websites-other-browsers-can?esab=a&as=aaq
    https://support.mozilla.org/en-US/kb/fix-problems-images-not-show?esab=a&as=aaq
    -Modified Chrome and IE request headers to mimic the Firefox request, image renders correctly
    -Modified Firefox headers to mimic Chrome request, fails
    -Analyzed tcp packages, response is the same for fail and successful render
    -Reconstructed the image correctly by recovering the tcp packages from the requests of a successful rendering as well as for a bad rendering.
    Sometimes it is possible to make 50 requests and see the image being displayed correctly, some other times you could make 50 requests and not see the image displayed, but mostly it is possible to load the image 20 times and have 1 fail.
    Thanks in advance!

    Hey,
    So you mentioned that it is only for one image, does this also happen for an image with the same (gif67) type? Please also make sure Firefox is up to date and if it continues to happen in the latest version please see below :-)
    <blockquote>-Modified Chrome and IE request headers to mimic the Firefox request, image renders correctly</blockquote>
    Where? You modified the packet from the server? or the response given to Firefox and rendered it in another browser
    <blockquote>Analyzed tcp packages, response is the same for fail and successful render </blockquote>
    Please give an example.
    1 out of 20 times it fails, do you know if this is consistent on a different network or computer? Also, the format of the gif what kind of encoding? With this information and some good steps to consistently reproduce a bug in [bugzilla.mozilla.org] will help us investigate this as well.
    Thank you

  • Some images not loaded in flex Image Control.

    Hi,
        Can anybody help me. I am loading friends album image in flex Image control. Its strange that some image do not load even the path is fine and I can open in browser.  I think there is time out issue.
    Thanks in advance.

    Hi premkant81,
    Try to register the following event Listeners and try to trace out the problem...
    I hope you are using either Loader or URLLoader to load the images...Try to register the below  eventListeners for the Loader..and check
    HTTPStatusEvent.HTTP_STATUS
    SecurityErrorEvent.SECURITY_ERROR
    IOErrorEvent.IO_ERROR
    What is the size of the Image files you are loading...???
    Thanks,
    Bhasker Chari

Maybe you are looking for

  • Getting error while installing OIM 11g r2 PS1

    Hi All, I Tried to install PS1, Earlier i got error (SOA(applied 11.1.1.7) and OWSM schemas got failed to create) while configuring schemas on weblogic domain configuration. For this i uninstalled 11.1.1.7 and i installed 11.1.1.6 on that i applied s

  • Link to PDF in FormsCentral (desktop app)

    How do I create a link to a PDF on a website? Am on Acrobat Pro XI? Steps performed: 1. Highlighted text to convert to link (and link to PDF document on website) 2. Clicked Design tab and then clicked Insert/Edit link from top menu 3. On the Insert L

  • .jspx file with CDATA

    In my .jspx file, I have:           <script type="text/javascript" language="JavaScript">           // <![CDATA[ (JavaScript code)           // ]]>           </script>However, the CDATA tags get stripped in the markup that gets rendered to the browse

  • MacAir- Wifii "connected" no loading or "time out" errors

    I have a MacAir and all of the sudden the Wifii wouldn't connect to the wifii server at school.  Other students were having no issues.  It would say "time out" error. Then it would connect to the guest network and full bars would show but wont load a

  • Why gnome-ppp establish mobile broadband connection,not networkmanager

    I am using usb radio modem AirPlus MCD-650 on my summer cottage and trying to setup internet. I have both Ununtu and Archlinux partitions, but prefer to use Arch, because my computer is too old for heavy Ubuntu OS. There is no problem to connect to i