Dissapearing Images

I'm not sure why but I am noticing images dissapearing
occasionally in Internet Explorer and Firefox. When I test the
pages in Dreamweaver they show up fine.
After uploading they show up on some computers and not
others. This is very strange. Does anyone know why this is
happening and how I can fix it? Heres a link to one of the pages Im
having the problem with.
http://www.rockviolinist.com/
Currently I CANT see the images on my laptop, yet they show
up fine on my desktop. Any help would be great.
TIA,
Amelia

Disable Norton by removing it completely. It's a wonder they
haven't been
sued for doing this....
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"StargrrlGrafx" <[email protected]> wrote in
message
news:eh3153$npp$[email protected]..
> Hi thanks,
>
> It the small thumnails just above the "Buy Now" buttons.
They are small
> photos
> of the merchandise. This has happened before with my
banners and I changed
> the
> names and they showed up again. Its pretty strange. I
tried disabling
> Norton
> and they still dont show up (on the laptop). I'll try
the other. Thanks
> for the
> tip. Still I wish I knew what the cause is.
>
> Amelia
>

Similar Messages

  • Dissapearing Image

    I am having trouble with the following code, which reads in a set of .png images that are named 1 -26 respectively, and outputs 25 of them in a grid. I draw each image to an offscreen image, back, which I then draw to the JFrame.
    When I run the program, I see the image for a second (actually much less time) and then it dissapears.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.image.*;
    public class wordtest extends JFrame{
         ImageIcon lett;
         ImageIcon [] letters;
         ImageIcon correct;
         ImageIcon incorrect;
         ImageIcon outOfPlace;
        public wordtest() {
             letters = new ImageIcon [26];
             BufferedImage back = new BufferedImage(230,230,BufferedImage.TYPE_INT_ARGB_PRE); // image to which i draw the 25 sepatate images
             outOfPlace = new ImageIcon("outofplace.png");
             try{                               // loading the 26 images
                 for(int i = 0; i < 26; i++){
                      System.out.println("Image pre-Loaded");
                   lett = new ImageIcon((i +1) + ".png");
                   letters[i] = lett;
         catch(Exception e){
              System.out.println("File loading Exception");
              System.out.println(e);
         setSize(500,500);    //set size of JFrame
        //     validate();
             Graphics2D g =  back.createGraphics();  //get the graphics context for off screen image
             int curr = 0;     //counter for drawing each image from the array
             try{
             for(int j = 0; j < 5; j++){
                  for (int k = 0; k < 5; k++){
                       System.out.println("Image pre drawn");
                       g.drawImage(letters[curr].getImage(), j*46,k*46,null);
                       System.out.println("Image drawn");
                       curr++;
             catch(Exception e ){
                  System.out.println("printing exception");
                  System.out.println(e);
             g.dispose();
             setVisible(true);
             Graphics f = getGraphics();
             f.drawImage(back,10,10,null);  //draw offscreen image
             f.dispose();
        //     validate();
        public static void main(String[] args){
             wordtest larry = new wordtest();
    }

    import java.awt.*;
    import java.awt.font.*;
    import java.awt.image.*;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class WT extends JFrame{
        ImageIcon[] letters;
        ImageIcon outOfPlace;
        ImageComponent imageComponent;
        public WT() {
            generateImagesToLoad();
            ImageIcon[] icons = loadImages();
            BufferedImage image = makeImage(icons);
            imageComponent = new ImageComponent(image);
            getContentPane().add(imageComponent);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            setSize(500,500);    //set size of JFrame
            setVisible(true);
        private ImageIcon[] loadImages() {
            ImageIcon[] letters = new ImageIcon [26];
            outOfPlace = new ImageIcon("outofplace.png");
            for(int j = 0; j < 26; j++){
                letters[j] = new ImageIcon("wtImages/" + (j+1) + ".png");
                int loadStatus = letters[j].getImageLoadStatus();
                // ImageIcon doesn't throw exceptions so you have to
                // check on the loading status/success on your own.
                if(loadStatus != MediaTracker.COMPLETE) {
                    String errorStr = "letters["+j+"] loadStatus = ";
                    switch(loadStatus) {
                        case MediaTracker.ABORTED:
                            errorStr += "ABORTED";
                            break;
                        case MediaTracker.ERRORED:
                            errorStr += "ERRORED";
                    System.out.println(errorStr);
            return letters;
        private BufferedImage makeImage(ImageIcon[] letters) {
            // image to which i draw the 25 sepatate images
            BufferedImage back = new BufferedImage(230,230,BufferedImage.TYPE_INT_ARGB_PRE);
            // get the graphics context for off screen image
            Graphics2D g = back.createGraphics();
            int curr = 0;     //counter for drawing each image from the array
            try{
                for(int j = 0; j < 5; j++){
                    for (int k = 0; k < 5; k++){
                        g.drawImage(letters[curr].getImage(), j*46,k*46,null);
                        curr++;
            } catch(Exception e ){
                System.out.println("printing exception");
                System.out.println(e);
            g.dispose();
            return back;
        private void generateImagesToLoad() {
            // Make up some images to save for loading above.
            int w = 46;
            int h = 46;
            BufferedImage[] toSave = new BufferedImage[26];
            for(int j = 0; j < toSave.length; j++) {
                int type = BufferedImage.TYPE_INT_ARGB_PRE;
                toSave[j] = new BufferedImage(w, h, type);
                Graphics2D g2 = toSave[j].createGraphics();
                g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                    RenderingHints.VALUE_ANTIALIAS_ON);
                g2.setPaint(Color.blue);
                g2.drawRect(0,0,w-1,h-1);
                g2.setPaint(Color.red);
                g2.setFont(g2.getFont().deriveFont(16f));
                FontRenderContext frc = g2.getFontRenderContext();
                String s = String.valueOf(j+1);
                float sw = (float)g2.getFont().getStringBounds(s, frc).getWidth();
                float sh = g2.getFont().getLineMetrics(s, frc).getAscent();
                float x = (w - sw)/2;
                float y = (h + sh)/2;
                g2.drawString(s, x, y);
            // Save the images to file.
            File folder = new File("wtImages");
            if(!folder.exists()) {
                folder.mkdir();
                for(int j = 0; j < toSave.length; j++) {
                    File file = new File(folder, (j+1)+".png");
                    try {
                        ImageIO.write(toSave[j], "png", file);
                    } catch(IOException e) {
                        System.out.println("IO Error for " + file.getPath());
        public static void main(String[] args){
            WT larry = new WT();
    class ImageComponent extends JPanel {
        BufferedImage image;
        public ImageComponent(BufferedImage image) {
            this.image = image;
            setPreferredSize(new Dimension(image.getWidth(), image.getHeight()));
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            int x = (getWidth() - image.getWidth())/2;
            int y = (getHeight() - image.getHeight())/2;
            g.drawImage(image, x, y, this);
    }

  • Library on hard drive - dissapeared images...

    Hey all
    Have been using iphoto for some time and started to run out of space on my powerbook - so bought a portable hard drive and moved library on there.
    Worked perfectly for 6 months, but a week ago created a second library on my powerbook for when i don't have the drive. Different name. Swapping between them using the option key on loading up - again perfect.
    But in the last few days when i go to switch back to the hard drive version, I select the file - see that it is 40gb, click to open, BUT NONE OF THE PICTURES OR ALBUMS APPEAR...
    I have a backup, but will have lost some current work in progress. Any ideas??
    No error message, but it has said that thumbs needed updating which i said fine to...
    Cheers
    Ash

    Ash
    Why might that have happened in the first place?
    A damaged database file occurs when the app is interrupted while writing to the db. A crash, a force quit, minor hard disk issues... any of these can cause the problem.
    Is it alright having two libraries?
    Perfectly, iPhoto Library Manager makes managing this very easy - including moving pics/albums/events between the Libraries.
    do you personally use Aperture - as the reason behind all of this is that i am currently swapping between the two programs.
    I use Aperture, but my family prefer iPhoto for the simplicity. So I process my own RAW's in Aperture then output the jpegs for the iPhoto Library.
    Were it not for the others in the house I would have migrated over completely by now. Aperture can do everything that Aperture can, and then a whole lot more.
    I have a backup from 2 weeks ago, but have done at least 15 shoots since then - if i take the file to overwrite from the backup - what will happen to the images from this period?
    If you overwrite the db file then iPhoto will simply not know about those other shoots. So drag the event folders from the iPhoto Package File to the desktop and re-import them.
    If I take the opportunity now to migrate everything to Aperture - can i do that whilst keeping all the originals and modified intact
    Yes, use the Import iPhoto Library command.
    Regards
    TD

  • Photoshop CS 4 crashes on cooltype.dll and layers dissapear on when clicked on image

    Photoshop CS 4 crashes on cooltype.dll and layers dissapear on when clicked on image as if the photoshop is responding very slowly
    i found that photoshop crashes when opening existing project and crashes in cooltype font, did reinstall and delete preferences file, but found that when photoshop is  open and you click on the type tool then open the project then it opesn fine

    the computer doesnt have suitcase installed but will check the fonts
    also it doesnt switch off the layers when clicked on the eye icon, i have to click somewhere on the image to disable the layer, any solutions? or is that also related to the fonts?

  • The large image that displays the current weather has dissapeared?

    On my weather app and on the notification centre widget, the large image that displays the current weather (inbetween your location and the current temperature) has dissapeared. All the infomation given by the app and widget is correct and the smaller weather icons still appear within the app and widget but not the larger one?
    Can anyone explain the cause of this and give me a solution to fix it? Thanks

    Hi fedotenko,
    If your main objective is to print the images and merely not saving the images directly to the disk...I think you want to print these images without scrolling and the full content...So you can do something like below:
    // Here mainContainer is the container or box id the contents of which you want to print
       private function doPrintContainer():void
        var printJob:FlexPrintJob = new FlexPrintJob();
        if(printJob.start() != true) return;
        try
         var mainContainerHeight:int = mainContainer.height;
         //Increasing the height of the desired component to be printed.
         mainContainer.height = mainContainer.measuredMinHeight;
         mainContainer.verticalScrollPolicy = "off";
         //Adding the resized Component to our FlexPrintjob and then sending the print request
         printJob.addObject(this,FlexPrintJobScaleType.MATCH_WIDTH);    
         printJob.send();
         //Resizing the component back to normal size
         mainContainer.height = mainContainerHeight;
         mainContainer.verticalScrollPolicy = "auto";    
        catch(error:Error)
                     trace("Error : " + error.message);
    If this post answers your question or helps, please kindly mark it as such.
    Thanks,
    Bhasker Chari

  • Help! Why is my image dissapearing on loop?

    I am loading in images dynamically using XML, each into their own movieclip, it plays through once fine, but when I try to play it again the image has dissapeared. Why is my image dissapearing? Your help is GREATLY apreciated!

    Have a read in here for a few bits of handy help.
    http://discussions.apple.com/message.jspa?messageID=5922447#5922447

  • Image dissapears when cropping

    When using the crop tool, and I expand the cropped area outside the original image, the image dissapears and the area turns white.  How do I turn what ever "feature" this is off?

    When moving the crop beyond the image boundries, the added canvas is shown with the background colour.  To prevent this from happening, double click the background layer to make it a normal layer.  They additional canvas will then appear as transparent.

  • Objects dissapear after exporting image

    Hi, I´m a newbie at Illustrator and I have the following proble,:
    I have been designing a personal card, the first screenshot shows how it should like after exporting, but if you take a look at the second image… some objects literally dissapear. I tried exporting different formats (JPG, BMP…etc) and it´s all the same result. I attached the link of Illustrator project so you can download and try to guess what is going on here.
    Thanks in advance and sorry for my English
    Leandro
    https://www.sendspace.com/file/fbdwng

    Thank you for your help Mylenium! Honestly I have been working on this like 2 days from now "by ear", I saw a lot of tutorials at youtube trying to learn from scratch and to achieve this… Of course my knowledge is not enough to solve that stuff. There are things that you (trained people) see that I can´t see… or maybe I think it is ok and actually it isn´t. For example the saturation you talk about on the flute.
    The place where this prject will be printed (1000 copies) stablishes some rules to send files… for example:
    Size: 50 mm x 90 mm
    Images color MUST be in CMYK (C 60% M 50% Y 20% K 100% for black intense background)
    Font must be converted into Vectors
    I´m a little lost with this all that is new to me.
    Anyways I thank you for your words. I hope I can figure it out =)
    Leandro

  • Background image has dissapeared

    I have noticed that my homepage background image is missing
    from the banner area. The text "Welcome to Easley Mitsubishi should
    have an image behind it. That image is on the remote server and it
    will not display. I checked the code on the homepage and it
    correctly references the image. I also checked the code to see if
    maybe I had accidentally set the background of a preceding
    <p> or <td> or <th> or somthing as black and I
    can find nothing. Anyone got any ideas...as this is happening
    repeatedly and getting really annoying. The banner which should be
    seen is visible at the top of the page in the second link.
    Link 1
    Link
    2

    It displays on Fx 3.0.3
    Walt
    "Mobilebyrd" <[email protected]> wrote in
    message
    news:genqiq$ckv$[email protected]..
    >I have noticed that my homepage background image is
    missing from the banner
    > area. The text "Welcome to Easley Mitsubishi should have
    an image behind
    > it.
    > That image is on the remote server and it will not
    display. I checked the
    > code
    > on the homepage and it correctly references the image. I
    also checked the
    > code
    > to see if maybe I had accidentally set the background of
    a preceding <p>
    > or
    > <td> or <th> or somthing as black and I can
    find nothing. Anyone got any
    > ideas...as this is happening repeatedly and getting
    really annoying. The
    > banner
    > which should be seen is visible at the top of the page
    in the second link.
    >
    >
    >
    >
    http://www.easleymitsubishi.com
    >
    >
    http://www.easleymitsubishi.com/New_Vehicle_Search.htm
    >

  • Overlib images dissapear under Flash movie

    Hi all,
    Total noob with flash.
    I have some thumbnail images on my page, when you mouse over
    the images an overlib pops up with the full image. Not far above
    the thubmnails is a flash header, when the overlib images pop up
    part of them is going underneath the flash movie.
    Any ideas on how I can prevent this?
    I have tried replacing the flash movie with an image of the
    same size and it all works fine then so I know its not a layout
    issue.
    Thanks a lot for any help with this.

    BlueSolar,
    > I have some thumbnail images on my page, when you mouse
    > over the images an overlib pops up with the full image.
    Not far
    > above the thubmnails is a flash header, when the overlib
    images
    > pop up part of them is going underneath the flash movie.
    The reason this happens is because Flash is an example of
    so-called
    Active Content. Flash movies aren't actually *in* the HTML
    page in which
    they're embedded, they just look that way. The <object>
    or <embed> tags in
    the HTML tell the browser to launch an instance of the Flash
    Player at
    thus-and-such dimensions in this area of the document, and
    the Flash Player
    and browser work together to give the illusion that the SWF
    is a part of the
    page.
    > Any ideas on how I can prevent this?
    The only way to affect this issue involves an often buggy
    feature called
    WMODE.
    http://www.quip.net/blog/2006/flash/how-to-position-flash-beneath-other-content
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Images dissapearing when scrolling TileList.

    Hello,
    In the AIR application I am working on, I need to load a large number of images to a TileList on the clients computer. Since they can't be embedded, they were taking a long time to load since each image could be 3-4mb+. In an attempt to reduce the load time (initially and when reloading when scrolling) when the user selected a directory, I would load each image using a Loader and store a scaled down Bitmap of it in an Array. I bound the source property of the Image in the ItemRenderer to the Bitmap in the Array.
    This works really well and the images load faster however.. When I scroll and an image goes off the screen and I scroll back to it the tile is blank. Checking the debugger I see that as soon as the tile goes off the screen the BitmapData property of the Bitmap in the array becomes null.
    Any ideas on what might be causing this? I can post the code if it would help.
    I'm not limited to loading the images this way. I had just seen something similar and was trying to adapt it. If anyone has any other methods or controls that may work better please share!
    Thank you in advance for any help.

    I have the same problem.

  • Image Zoom Interaction dissapearing

    Hello everyone
    I have created a test project to test the results of advanced interactions. I published the result at:
    http://privatewrittentest.com/ipadtest/
    The interactions are a scrollable web object on the first slide (works fine)
    The second slide has a zoomable image and that seems to disappear at times no matter the browser, even packaging it as an app on the iPad (has anyone noticed this problem?)

    Sounds quite useful!
    You can use this form for sending Apple feedback about Safari:
    http://www.apple.com/feedback/safari.html

  • All of my folders of images for the past 2 years dissapeared out of lightroom 5

    I opened lightroom 5 on my pc and all of the images/folders I have imported disappeared. How do I get them back without duplicating thousands of photos on my computer??

    Look under File->Open Recent, open each of the catalogs listed there.

  • Error in Pages when exporting ePub with image cover: Other images dissapear

    That's it, if I insert an image in the first page, and select use first page as cover when exporting ePub, some (not all) other images inside the book will dissappear. I checked everything many times, and all the images are placed ok (not floating)...
    Any idea about this issue?
    Thanks in advance!

    Welcome to the Apple forums
    Exporting to ePub is new to Pages 4 with the 9.0.4 updaters. It appears that most Pages users don't have a need to export to ePub, so no replies. Sorry.
    For Yvan,
    The iPad Pages forum won't help in this situation. The iPad version of Pages can't export to ePub & Pages isn't involved in reading ePub files on the iPad.

  • "Phantom Squares" appear/dissapear over image with zoom in/out

    while editing in cs6 for the last few weeks, "phantom-squares" appear over top of parts of the image being edited and disappear or reappear with zooming in and out with scroll wheel.. Sometimes 1, sometimes 4. Squares seem to be  pieces of the actual image and sometimes are black. Happens on both PC (W7) and MAC which are both running Radeon GC's. images are .tiff files

    Thanks for the reply, i appreciate it. I downloaded the radeon catalyst suite on home pc and will give it a try.  Of course, the Mac is at studio where I edit so that's the one I really am hoping to figure out.. because it's on both PC & Mac at relatively the same time I was thinking it to be PS issue not computer/card, but who knows.....
    Dodging "phantoms" gets pretty stale after a couple hundred images each day..

Maybe you are looking for

  • Combo Box in a JTable not appearing

    Hi Swing, I have a snippet of code that I took from the Swing guide for JTables that adds a JComboBox into the 3rd column in the table. However, the ComboBox doesnt appear? Can anyone see what is going wrong? Code is below:- I can post more if needed

  • Connect By Prior Help

    Hi all, In Connect By Prior, How can i avoid, if some parent dont have child means, it should not come in the results....... Regards, Fame

  • Tablespace 88% full will impact performance?

    Hi, I have a tablespace with 10 datafile in a disk.The tablespaces id 88% full with 9 datafiles being 99% and 1 left with 10% .will this impact the performance. or is it ok

  • ReferenceError: Error #1056: Cannot create property handler

    After updating my lcds application to LCSD 4.6  I get many of these errors. In debug log I can see, that java sends this handler property for some objects, e.g. (com.mm_katalogy.model.MutaceStrankyDTO_$$_javassist_40){id=4} (1675022032) {            

  • Terminal doesn't show changes immediately

    Hi, since some days I have an annoying problem: When I type something, for example 10 x [Return], my xterm doesn't "react" immediately. Nothing happens for at least several seconds. When I switch the window and switch back the input / command is show