Images don't appear immediately?

I have an applet with run and stop methods. I load all my images in the init() method. When my applet is ran, some images don't appear right away. You have refresh the browser screen or reload the applet. AFter refreshing, all the images work fine. It's a one time error. I am also using the double buffering. Have you any ideas/guesses y that would be happenin?
Regards & Thanks,
Helix
P.S: Sry, I didn't post my code, I was hoping this might be sufficient info for help. If not, tell me.

Complete shot in the dark, but you might try and change the caching option of your browser to "Check for newer version of stored pages: Every visit to the web page". It is possible that you need to add code to the web page to force the browser to not use cached resources. As I mentioned kind of a shot in the dark, but the fact that your images all show up on refresh made me think of this possibility.

Similar Messages

  • Bridge:  Images don't appear in Content Folder

    (iMac OS X 10.5.2 (Leopard); 4 GB Ram; PS CS 3; Bridge 2.1.1.9; Raw 4.3.1)
    All my images are on the MacIntosh hard drive under Cover Flow view. In Bridge, there are two main folders that contain images:: Window Documents ( deleted images from a color management program from a external hard drive/PC computer that I previously owned)) and Pictures (images transferred from PC to MAC). Problem: No images appear from the Window Documents Folder in the Content Pane in Bridge. Most images don't appear on the Content Pane from the Pictures folder with the exception of a few file folders. In the Preview Pane (Bridge) there are all sort of weird glitches. Previous to this problem I worked 7 1/2 hours dragging and dropping images from files in the Window Document Folder into selected folders in Pictures and deleting the images to Trash that weren't going to be kept. Everything ended well that day....no problems but the next day when I opened Bridge I couldn't access most of my images. At the bottom left hand corner of Bridge it tells me how many images there are but they don't appear. Summary: What I do know is that the images are on the hard drive, my computer is trying to open them up but something is preventing them from appearing in the Content Pane. Before I reach for that second glass of wine, can you please help? I am so frustrated and don't know where to turn for help in this matter. Thank you so very much. PS. I also can find the images in Finder when I right click on the mouse button on a file. I've tried using Tools>;Cache>Build and Export Cache. Images will appear but after I close Bridge they disappear into their deep dark hole!

    Solved the problem myself. I retyped the name of each folder (same name) under Pictures and added a space plus #1 after each folder name. Images appeared almost immediately on the content pane after that was done. Later I will then open up on my hard drive, under Cover Flow, two windows....one from the Pictures Folder and the other one from the Window Documents that contain the images transferred from an old hard drive. I will then select the images I want to keep and drag and drop the images from the Window Documents to the sub-folders in Pictures and that should do it. Attempting to do it from within Bridge will cause the images in Pictures to disappear so this other way is safer. Then I will trash my Window Document folder when I'm done. If anyone has experience this problem this might be a way to see if my solution might work for you. (I formerly had a window system and now have a iMac).

  • Some images don't appear in iPhone, but do on desktop.

    Can someone download this PDF and let me know why the jpg images appear fine when viewing with desktop browser, but some images in the same document don't appear when viewing in Safari on the iPhone? Vector artwork and text show fine. Shows white space where JPGs should be.
    Specifically, pages 1 and 4:
    http://www.teamassociated.com/pdf/cars_and_trucks/TC6/Factory_Team/tc6ft_manual-mobile-4rg b.pdf

    I just heard about this day before yesterday at the InDesign Print and ePublishing Conference in Washington, DC. When using display on an iOS device JPEG 2000 is not supported. There are two flavors of JPEG: JPEG & JPEG 2000.
    Here's a Wikipedia article about JPEG 2000:
    http://en.wikipedia.org/wiki/JPEG_2000
    If I go to page 1 and 4 in your PDF and use Output Preview in Acrobat Pro (in Acro 9 > Advanced Print Production > Output Preview). Click on the Object Inspector tab and click on the image. It uses a JPEG 2000 filter.
    Since I don't know how the image was created and saved, I'll leave it to you to resave it as normal JPEG.

  • Image display (Image don't appear the first time?)

    Applet at: http://saladinsite.tripod.com/Project/MiniProject.htm
    Code at and Bottom: http://saladinsite.tripod.com/Project/MiniProject.java
    Hi,
    I just created my very first applet. It's a simple quiz. I'll agree it's very unefficient.. but heh.. good for first try.
    There is a lil problem I am having. Sometimes when I load the applet, the background image don't show up. Sometimes, the happy/cry images (corresponding to right/wrong answer) don't show up (check the applet to see what I am talkin about) It only happens once tho. It's strange. Take a look at the applet, you will see. Btw: It's not the downloadin of image that cuzes the bug. Same problem happens in appletviewer. If it doesn't appear the first time, the next time you go back to it, it will appear.
    My teacher has also struggled with this problem but failed. Hope you guys can help me out.
    Thanks,
    Gant
    LONG Code again:
    import java.awt.*;
    import java.applet.*;
    import java.net.*;
         public class MiniProject extends Applet implements Runnable {
              boolean flag=true;
              Image happy,cry,cartoon,test,buffer;
              Graphics bufferg;
              Thread main;
                   int x = 50;
                   int y = 50;
                   int a,b,c;
                   String str;
                   double score =0;
                   double correct = 0.0;
                   TextField txt, percent, invis;
                   String boxName[] = {"Addition (+)", "Substraction (-)","Multiplication (x)","Division (�)"};
                   CheckboxGroup checkGr = new CheckboxGroup();
                   AudioClip RedMove, Applause, BadMove, NewGame, sad;
              public void init() {
                   URL codeBase = getCodeBase();
                   happy = getImage(getCodeBase(),"happy.gif");
                   cry = getImage(getCodeBase(),"cry.gif");
                   cartoon = getImage(getCodeBase(),"cartoon.gif");
                   test = getImage(getCodeBase(),"test.gif");
                   RedMove = getAudioClip(codeBase, "RedMove.au");
                   Applause = getAudioClip(codeBase, "Applause.au");
                   BadMove = getAudioClip(codeBase, "BadMove.au");
                   NewGame = getAudioClip(codeBase, "NewGame.au");
                   sad = getAudioClip(codeBase, "sad.au");
                   invis = new TextField("",1) ;
                   invis.setVisible(false);
                   setBackground(Color.white);
                   setLayout(new BorderLayout() );
                   Panel p1 = new Panel();
                   add("South",p1);
                   p1.setBackground(Color.gray);
                   p1.add(new Button("Start") );
                   p1.add(new Button("Exit") );
                   p1.add(new Button("Help") );
                   p1.add(new Button("Credits") );
                             p1.add(new Label(" Score in (%):") );
                             percent = new TextField("",3);
                             percent.setEditable(false);
                             percent.setBackground(Color.gray);
                             p1.add(percent);
                   Panel p2 = new Panel();
                   p2.setBackground(Color.gray);
                   add("North",p2);
                   p2.add(new Label("Quiz with: ") );
              Panel p3 = new Panel();
              p3.setLayout(new FlowLayout(FlowLayout.CENTER, 25, 75));
                   txt = new TextField("", 3);
                   txt.setText("");
    txt.setEditable(false);
                   Font f = new Font("Helvetica", Font.BOLD, 36);
                   txt.setFont(f);
              p3.add(txt);
              add("East",p3);
              p3.setBackground(Color.white);
              for (int i=0; i<boxName.length; i++)
                   p2.add(new Checkbox(boxName, checkGr, false) );
              buffer=createImage(size().width,size().height);
              bufferg=buffer.getGraphics();
              startM();
         } //end init
              public void run(){
              while(main!=null){
                   try {
                   main.sleep(50);
                   catch(Exception e){}
         public void stop(){
              if(main!=null){main.stop();}
         public void startM() {
                        bufferg.setColor(Color.white);
                        bufferg.fillRect(0,0,400,400);
                        bufferg.setColor(Color.black);
                             Font f = new Font("Helvetica", Font.PLAIN, 14);
                             bufferg.setFont(f);
                             bufferg.drawImage(cartoon,0,50,this);
                        bufferg.drawString("^ Click on a Quiz above to begin!", 25,47);
                        txt.setEditable(false);
                        txt.setBackground(Color.white);
                        txt.setText("");
                        percent.setText("");
                             Font f4 = new Font("Helvetica", Font.BOLD, 28);
                             bufferg.setFont(f4);
                             bufferg.setColor(Color.red);
                             bufferg.drawString("WELCOME!",15,90);
                             bufferg.setColor(Color.black);
                             bufferg.drawString("to the Interactive",55, 155);
                             bufferg.drawString("Grade 9 Math Quiz",85, 200);
                             Font f5 = new Font("Helvetica", Font.PLAIN, 18);
                             bufferg.setFont(f5);
                             bufferg.drawString("Designed by: Wasay R.",175,360);
         public void clearM() {
              bufferg.fillRect(0,0,450,400);
         public boolean action(Event evt, Object obj) {
              if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Credits") ) {
                             NewGame.play();
                             URL url = getCodeBase(); // get url of the applet
                             try {
                        getAppletContext().showDocument (new URL(url+"credits.htm"));
                             } catch(MalformedURLException e) {
                             showStatus("URL not found");
              if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Help") ) {
                             NewGame.play();
                             URL url = getCodeBase(); // get url of the applet
                             try {
                        getAppletContext().showDocument (new URL(url+"help.htm"));
                             } catch(MalformedURLException e) {
                             showStatus("URL not found");
              if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Exit") ) {
                             NewGame.play();
                             URL url = getCodeBase(); // get url of the applet
                             try {
                        getAppletContext().showDocument (new URL(url+"end.htm"));
                             } catch(MalformedURLException e) {
                             showStatus("URL not found");
              if (evt.target instanceof Checkbox && flag) {
                   flag=false;
                   NewGame.play();
                   txt.setEditable(true);
                   Color c = new Color(204,204,204);
                   txt.setBackground(c);
                   bufferg.setColor(Color.white);
                   clearM();
                   handleCheckbox(evt);
                   if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Start") ) {
                             flag=true;
                             y=50;
                             x=50;
                             score=0;
                             correct=0;
                             startM();
              if (evt.target==txt && score<10) {
                   String find = (invis.getText() ).substring(0,1) ;
                   if (find.equals("+")) {
                             handle2();
                             paint( Create(0) );
                             txt.setText("");
                             score++;
                   else if (find.equals("-") ) {
                        handle2();
                        paint( Create(1) );
                        txt.setText("");
                        score++;
                   else if (find.equals("x") ) {
                        handle2();
                        paint( Create(2) );
                        txt.setText("");
                        score++;
                   else if (find.equals("/") ) {
                        handle2();
                        paint( Create(3) );
                        txt.setText("");
                        score++;
              if (score==10) {
                   if (correct>=5 && !(evt.target instanceof Checkbox) )
                        Applause.play();
                   else if (correct<5 && !(evt.target instanceof Checkbox) )
                        sad.play();
                   txt.setText("");
                   txt.setBackground(Color.white);
                   txt.setEditable(false);
                        bufferg.setColor(Color.white);
                        bufferg.fillRect(100,100,350,75);
                        bufferg.setColor(Color.black);
                        bufferg.drawRect(65,110,225,75);
                             Font f = new Font("Helvetica", Font.BOLD, 28);
                             bufferg.setFont(f);
                             bufferg.setColor(Color.red);
                             bufferg.drawString("Quiz Complete!", 75,143);
                             Font f2 = new Font("Helvetica", Font.PLAIN, 18);
                             bufferg.setFont(f2);
                             bufferg.setColor(Color.black);
                             bufferg.drawString( ("Your Score: " + String.valueOf( Math.round( (correct/score*100)/0.01 )*0.01 )+"%"),101,170);
                             Font f3 = new Font("Helvetica", Font.PLAIN, 14);
                             bufferg.setFont(f3);
                             bufferg.drawString("Click Start and select a Quiz at the Top to begin",19,240);
                             bufferg.drawRect(10,227,326,0);
                             bufferg.drawRect(336,38,0,189);
                             bufferg.drawRect(10,243,326,0);
                             bufferg.drawRect(10,243,0,85);
              percent.setText( String.valueOf( Math.round( (correct/score*100)/0.01 )*0.01 ) );
              repaint();
              return true;
                   private void handle2() {
                        str = invis.getText();
                             Font f = new Font("Helvetica", Font.BOLD, 14);
                             bufferg.setFont(f);
                             bufferg.drawString("Correct:",15,70);
                             bufferg.drawString("Incorrect:",4,345);
                        if ( (str.substring(0,1) ).equals("+") )
                             if (Integer.parseInt(txt.getText() )==(a+b) ) {
                                       invis.setText("+correct");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++;
                                       RedMove.play();}
                             else {
                                       invis.setText("+wrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
                        else if ( (str.substring(0,1) ).equals("-") )
                             if (Integer.parseInt(txt.getText() )==(a-b) ) {
                                       invis.setText("-correct");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++; RedMove.play();}
                             else {
                                       invis.setText("-wrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
                        else if ( (str.substring(0,1) ).equals("x") )
                             if (Integer.parseInt(txt.getText() )==(a*c) ) {
                                       invis.setText("xcorrect");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++; RedMove.play();}
                             else {
                                       invis.setText("xwrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
                        else if ( (str.substring(0,1) ).equals("/") )
                             if (Integer.parseInt(txt.getText() )==(a/c) ) {
                                       invis.setText("/correct");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++; RedMove.play();}
                             else {
                                       invis.setText("/wrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
              public String Multi() {
                        a = ( (int) (Math.random()*100) )+10;
                        c = ( (int) (Math.random()*10) );
                   while(c==0 || c==1)
                        c = ( (int) (Math.random()*10) );
                   String a1 = String.valueOf(a);
                   String a2 = String.valueOf(c);     
                   return (a1+" x "+a2+" = ");
                   public String Divi() {
                        a = 2*( (int) (100*Math.random() ) )+2;
                        c = 2*( (int) (10*Math.random() ) )+2;
                        while (a%c!=0)
                             c = 2*( (int) (10*Math.random() ) )+2;
                   String a1 = String.valueOf(a);
                   String a2 = String.valueOf(c);     
                   return (a1+" � "+a2+" = ");
              public Graphics Create(int i) {
              repaint();
              Dimension d=size();
              bufferg.setColor(getBackground());
              bufferg.fillRect(100,100,350,75);
              bufferg.setColor(Color.yellow);
                   a = ( (int) (Math.random()*100) );
                   b = ( (int) (Math.random()*100) );
                   String a1 = String.valueOf(a);
                   String a2 = String.valueOf(b);
                   Font f = new Font("Helvetica", Font.BOLD, 36);
                   bufferg.setFont(f);
                   bufferg.setColor(Color.black);
                   if (i==0)
                        bufferg.drawString(a1+" + "+a2+" = ", 145,150);
                   else if (i==1)
                        bufferg.drawString(a1+" - "+a2+" = ", 145,150);
                   else if (i==2)
                        bufferg.drawString( Multi() , 145,150);                    
                   else if (i==3)
                        bufferg.drawString( Divi() , 145,150);
                        return bufferg;
         private void handleCheckbox(Event evt) {
              Checkbox cb = (Checkbox)evt.target;
                   String str = cb.getLabel();
                   bufferg.drawImage(test,0,50,this);
                   if (str==boxName[0]) {
                        paint( Create(0) );
                        invis.setText("+");
                   else if (str==boxName[1]) {
                        paint( Create(1) );
                        invis.setText("-");
                   else if (str==boxName[2]) {
                        paint( Create(2) );
                        invis.setText("x");
                   else if (str==boxName[3]) {
                        paint( Create(3) );     
                        invis.setText("/");
         } //end handleCheckBox
         public void update(Graphics g){
              paint(g);
         public void paint(Graphics g) {
              g.drawImage(buffer,0,0,this);
    }//end class

    Its not easy to follow your code without the [ code] +[ /code] tags and your link may as well not be there, the code one. I would resolve this by reducing the overhead ie: stripping down the code as much as I could and then adding them back one by one. DIVIDE and CONQUER!!!
    1. Take out the audio data (I suspect this may be the key problem)
    2. Take out the Thread 'main' and have an actionListener attached to your answer field to handle the changes
    3. Take out java.net and your URLs
    4. use a MediaTracker and WaitForAll()
    5. Strip it down further - AS MUCH AS YOU CAN (you can easily reassemble it quickly again) and then look at the program flow
    6. Add more boolean logic to give you control over all your elements ie
    if(myAnswer==answer) smiley=true;
    else smiley = false;
    // or whatever, as I said I could only scan through your code as it is difficult to read in its present format.
    Finally: this is good work I like the smileys and the instant %'s, the general layout, good /intelligent use of random() to generate different Q's each time. It's a good application, just remember that applets can be unreliable and I think your basic problem is that you have too much data here.
    Strip it right down, focus on your logical flow and then put back the elements one-by-one

  • New images don't appear on upload [subject edited by moderator]

    So, maybe it is a delevoper issue although I can not figure out why it happens at all!
    Here is my procedure:
    I design the artwork in Photoshop and use Photoshop to slice
    I create the template in Dreamweaver (2014)
    I create the stylesheet (css)
    I place the images and text and never deviate from the stylesheet
    I apply the template to the different pages.
    I check my links
    I check the site in the built in browsers, i.e. Safari, Chrome and Firefox
    I open my host Access Panel, Upload the files in my public folder as instructed, check whether it did upload
    The first time I uploaded the site this way it worked perfectly. The problem started developing about a month ago. For instance, the photoshop template has a background slice (content_bkgd.jpg & banner_bkgd.jpg). During Nov I added that bit of xmas artwork to the background in Photoshop (the top of the tree flows into the banner.jpg - as the slice fell). But uploading the changed background to the host meet with failure as all new images do. I checked everything I could imagine: did I upload the changed stylesheet, did I upload all the changed images, files. I asked the host to see whether the new files did not by accident ended up in the wrong folder, did it indeed upload - the host has no idea. A few times people who handled the query managed to correct the problem within minutes saying that its just one of those things! B@ut most of them say it is a developer problem - any suggestion anyone?

    Afrihost (South Africa)
    They tell me to upload to the public folder and only there
    They even checked and said it did upload but that it does not appear because of my developing mistake
    The url: https://c-tomatxua.aserv.co.za/
    of afrihost.co.za
    my username: [deleted... Mod]
    my password: [deleted... Mod]
    [personal information removed... Mod - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]
    i am totally kaput!

  • Images don't appear when moving an album into a new project

    I've been scanning negatives into Aperture using a project (Scans) as a "holding" point until I determine which actual project to move the images to. I put these scanned images into various albums within Scans. When I've decided what actual project to move them to, I drag the album to that project, then drag the images themselves (or vice versa). A lot of times, the images will move to that project but won't show up in the album I just dragged unless I quit and restart Aperture. I never had this problem before upgrading to v.3.
    I've also had a flicker problem when comparing a version to its master (posted elsewhere in the forum).

    Well not really, Aperture holds all your image files in Projects. If you can think of a project as a box of negatives it will help you. Then put your prints in Albums, so to speak. You can put the Albums any place you wish, but the negatives stay in the project box. Allan.

  • Images don't appear in Mail

    Lately I've been receiving emails that contain little blue boxes with question marks instead of the graphics. This has happened with email from friends as well as one from Olympus. It's infrequent, the majority of the emails I receive display the pics, but it seems to be happening more often lately and I can't figure out how to view them. Any thoughts

    No, unfortunately that's not the case. Would it were something so simple. There is no load images or junk button on these emails at all. The more I think about it, the more likely it seems that the problem is on the sender's end. I received an email today entitle "Spectacular Pictures" that consisted of some text followed by a giant blank space containing a small blue box with a question mark in it, followed by more text, then another big space with blue box, etc. I went to my mail on the Comcast server and opened it there (I keep everything on the server until deleted) with the same results. I expected to find a list of attachments at the bottom, but there was nothing.

  • Adobe Muse with Edge Animate components plays great on the Mac but images don't show in Windows. Any suggestions?

    I am using CC with both Edge Animate and Muse. After uploading to the website host it plays great on the Mac but images don't appear when I'm using Windows. Any suggestions?

    Hi, VelveteenWebDesignGroup-
    You're in luck!  We just added in a feature to the latest version of Edge Animate CC (3.0) to enable the CDN option for OAM publish (what we call the "Animate Deployment Package").  This means that your Animate compositions can now references jQuery and the Animate runtime from the network instead of from the project directory.  (Please note that this will only make sense for Dreamweaver and Muse integration with OAM and won't make sense for InDesign.)
    To turn this on, launch Animate and go to File > Publish Settings.  Then select the Animate Deployment Package on the left and click "Host runtime files on Adobe CDN."  Save and publish, and you should be good to go.
    Hope this helps,
    -Elaine

  • First two images don't load first time podcast is loaded in Safari

    I created a podcast with GarageBand, and have 4 images in the podcast track. When I export to iWeb, I let the images be constrained to 300dpi by the app. After uploading, when I first open the site in a freshly launched Safari, go to the episode, let the movie fully load, the click play, and the 1st two images don't appear. When I rewind and play, they then render. Doesn't happen in Camino. Any suggestions?
    Bob

    Try publishing your site to a folder on the desktop and double clicking the index.html file to see if the problem shows up. If it does, the problem is in iWeb.
    If it doesn't, then you should try a "Publish All", empty your browser cache and look again.

  • Image Processing and machine vision don't appear in Function Palette

    Hi,
    I have problem and I can't solve it
    Image Processing and machine vision don't appear in Function Palette, Although I set up NI imaq and NI Vision Acquisition Why??
    Anyone can help me?
    Solved!
    Go to Solution.

    If the image is already a Grayscale U8 image you would just have to save it to a bitmap file using the IMAQ WriteFile VI. If not, use the IMAQ Cast Image VI to convert it to a Grayscale U8 and then save it.
    Also, it would probably be better to create a new thread for questions like these.
    Cameron T
    Applications Engineer
    National Instruments

  • Images on Robohelp are very poor quality/blurry or don't appear at all

    Hello,
    Any help on this problem would be greatly appreciated as I have been attempting to solve this for several hours a day for the past week.
    I have a simple employee handbook in word (about 20 pages with images) that I’m trying to turn into an html-based document. I've tried a couple if things in order to get this file into robohelp. I've linked the word document to RoboHelp and worked with that, and I've also imported the word doc into framemaker and then linke my framemaker document to Robohelp.
    I’ve managed to create the html version with a table of contents doing it both ways, but there are a few images in the word document that turn out really bad in the html version. They look fine in the word document and in pdf version, but when I view them in RoboHelp or  in the html version of the document they’re very blurry and choppy. It almost looks as it pixels are missing. I’ve tried everything I could think of but nothing changes the quality of the image. As soon as I link the word document or framemaker document, when I click "view" on the specific image, or just view it from the handbook in Robohelp the image looks terrible.
    Someone suggested that I checkmark "do not re-generate image" under project settings but now some of my images aren't appearing at all. All of my images are the same type but I've also tried changing it to png, or bmp, jpeg but nothing changes. They're either blurry or don't appear at all.
    Thanks for any help or suggestions!

    I don't know if this will help you, but I've had issues with poor image quality when importing Word documents into RH7. I see a fuzziness problem with most images--screen shot or not--but it seems really pronounced if the image in Word is reduced to less than 100%. To resolve this, I've opted to manually copy any Word images to another application (I use SnagIt), save them at 100% to PNG format (JPG and GIFs also work), and import the saved image files to Robohelp. That sounds like that's what you ended up doing with Photoshop.
    Also, I wonder if it makes a difference how much the text was magnified/reduced when they took the original screen shots. I just did an experiment--using SnagIt, I took a screen capture of a block of text at 100% magnification. I then pasted the screen shot directly from SnagIt into my Robohelp document. It came in perfectly clean--couldn't see any obvious difference between the Robohelp text and the image of the Word text. I got the same results when I saved the screen capture to a PNG file and imported it that way. That leads me to believe the problem you're seeing is a result of having Word images automatically converted to RH.
    (In the example--unfortunately hard to see-- the text in the red box is from a screen capture; the rest of the text was entered in RH8--there's no discernable difference in quality.)

  • My mac space was full, and i noticed that i had 10,000 images, so i deleted all of my images and emptied the trash, now i they don't appear on iphoto or anywhere, is there anyway i could get all of those images back so i can then store them in a device?

    my mac space was full, and i noticed that i had 10,000 images, so i deleted all of my images and emptied the trash, now i they don't appear on iphoto or anywhere, is there anyway i could get all of those images back so i can then store them in a device?

    yes, its the macbook air and mac OS X 10.7.4, not sure how that goes, about the time machine and time capsule, i only started using it today, when they were already deleted, also read at the support and help of iphoto, that if you delete your images from the picture folder that the images will be corrupted permanently, does this mean there there is no actual way of getting them back?
    Thanks for the help x

  • Virtual images, sometime appear , sometimes don't appear

    whenever i open light room, i see duplicate images , which are appear sometimes and sometimes dissappear.

    This is an extremely brief explanation. Can you give us a longer and more detailed explanation of what you see (or don't see)? Please also show us a screen capture of the problem.
    Also, be sure to mention the version of Lightroom and what operating system you are using.

  • Cover Flow images don't fill Finder window?

    Hi everyone,
    I like to use Finder in Cover Flow mode to browse through images. However, if I expand Finder to fill the whole screen, and I expand the Cover Flow pane to take up most of the screen, the Cover Flow images don't expand to fill up the Cover Flow pane. I have the High Res screen, so maybe it looks normal on a lower res screen but I think it's odd that Cover Flow doesn't try to expand the images to fil the space. Is this behaviour normal and is there a way to change it?
    Cheers,
    Jim

    Solved the problem myself. I retyped the name of each folder (same name) under Pictures and added a space plus #1 after each folder name. Images appeared almost immediately on the content pane after that was done. Later I will then open up on my hard drive, under Cover Flow, two windows....one from the Pictures Folder and the other one from the Window Documents that contain the images transferred from an old hard drive. I will then select the images I want to keep and drag and drop the images from the Window Documents to the sub-folders in Pictures and that should do it. Attempting to do it from within Bridge will cause the images in Pictures to disappear so this other way is safer. Then I will trash my Window Document folder when I'm done. If anyone has experience this problem this might be a way to see if my solution might work for you. (I formerly had a window system and now have a iMac).

  • Some options don't appear in MAX

    I have an Agilent 86142A OSA connected via GPIB-USB-HS cable to my PC. MAX recognizes it in the tree, but a lot of options (like self-test, calibrate) don't appear. I'm new in MAX, so I'm not sure whether this is acceptable or not. Have I made some error in installing the device, or do some options simply not show up for particular devices? I've attached an image of MAX in this situation.
    If indeed the device is installed fine, how does one perform a test to see if the connection is good if the Self-Test icons don't appear?
    Please let me know if it seems the device has been detected properly and all is well.
    Thanks!
    Attachments:
    MAXimage.JPG ‏98 KB

    Everything looks find. You are not supposed to have options for self-test or calibrate. Those would only be for NI's DAQ cards.

Maybe you are looking for

  • HP laserjet p1102w does not work with Mac computer version 10.8

    since i upgraded my Mac to 10.8 operating system, I am not able to use the ePrint function from my HP Laserjet P1102W printer. I was told that the current version of the firmware 20130213 does not support this function. Does anyone know when the new

  • I got update on my lumia 535 in india

    I got update on my lumia 535 in india but I don't know what its feature in this update. Should I update my phone or not?

  • Ad Hoc Reporting

    Hi, Does Report Builder support ad hoc reporting on web application? Thanks

  • Resusing Country Specific Application - GT

    Hello, We need to setup Guatemala for all the Personal Information iViews, and we would like to reuse Mexico for this. The steps I followed were: 1) Assign Screen Structure to Infotype Version 2) Define Active Subtypes and Use Case 3) Country Specifi

  • Weird Splash Screen with 32.1

    We have this Download Error problem with our Magazine App. So I made an update with the new App Builder to v32.1. Now I get weird Splash Screens in the Developer App. If I'm starting the App horizontally I get the vertically Splash Screen for a short