ScrollPane Problem breaking my heart...

HI .I Want to read in a number from a textfield.This number will decide how many textfileds will appear on a panel. I want to then add this panel to a ScrollPane.I have this working but when the panel is in the scrollPane it doesnt scroll down the full length of the panel
heres my code structure
Create Scrollpane
Read integer
Create panel with textFields
Add Panel to Scrollpane
Add ScrollPane
Is this the wrong way.....
Any help really appreciated

The client area of a ScrollPane is sized according to the components preferred size. The return value of the panels getPreferredSize is interesting. Does it have the value you expect?
public Dimension getPreferredSize()
     Dimension dim;
     dim=super.getPreferredSize();
     System.out.println(�Preferre size:�+dim.width+�, �+dim.height);
     Return dim;
}The other possible problem is the validation. When is the layout performed?
public void doLayout()
     System.out.println(�doLayout() called�);
}Try to add the above two methods to your panel class.
Ragnvald.

Similar Messages

  • ScrollPane Problem (please help!!!!)

    I've got a class PanneauImages (extends JPanel) and it contains (zone_photo) a canvas on which i draw images(several images ( a set of images) on one canvas, that's y i need a ScrollPane).
    In the application, we have a button to change the set of images, like to go from set 1 to set 2 etc...
    we may need the scroller to show for the first set for example, but not the second. so it's supposed to show for the 1st set, disapear for the 2nd and come back for set 3 for example.
    I have a method repaint in the canvas class....
    my problem is, that the scroller jsut doesn't move when i change the set of images. and the weird thing is that this happens only when I run the application on Windows. On LINUX i don't have any problems...
    here's the full code of the two classes...
    PS : the button that chages the set is contained in another class that contains the class PanneauImage...
    first, Panneau Images...
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.io.*;
    import javax.swing.*;
    import dbtables.*;
    * Classe : PanneauImages
    * Description : Cette classe represente un panneau contenant l'ensemble des images
    * elles meme contenues dans une zone
    * Societe : Medias France
    * @version 1.0
    class PanneauImages extends JPanel
         * La page resultat contenat cette page
         ResultPanel parent;
         * La zone contenant les images encadrees
         Imag zone_photo;
         * Dimensions
         int width, height;
         * La barre de defilement contenant les images
         ScrollPane sp;
         //===========================================================================================
         * Constructeur par defaut.
         * @param     res Le parent
         * @param     chain La dexieme partie de l'adresse
         * @return     Sans objet.
         public PanneauImages(ResultPanel res, int w, int h)
              parent = res;
              width = w;
              height = h;
              setLayout(new BorderLayout());
              sp = new ScrollPane(ScrollPane.SCROLLBARS_AS_NEEDED);
              zone_photo = new Imag(this, sp, width, height);     
              sp.add(zone_photo);
              Adjustable vadjust = sp.getVAdjustable();
              Adjustable hadjust = sp.getHAdjustable();
              add(sp, "Center");
         * redessiner les photos
         * @param     Sans objet.
         * @return     Sans
         public void redessiner()
              //zone_photo.changeHeight();
              zone_photo.effacer();
         zone_photo.repaint();
         * Trouver la meilleure taille pour le composant
         * @param     Sans objet.
         * @return     La taille optimale
         public Dimension getPreferredSize()
              return new Dimension(width, height);
         * Trouver la meilleure marge pour le composant
         * @param     Sans objet.
         * @return     La marge optimale
         public Insets getInsets()
              return new Insets(5,5,5,5);
    and Imag
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.io.*;
    import javax.swing.*;
    import dbtables.*;
    * Classe : Imag
    * Description : Cette classe represente plusieurs image dans des cadres
    * Societe : Medias France
    * @version 1.0
    class Imag extends Canvas
         * Le scrollPane contenant cette classe
         ScrollPane scroll;
         * La classe contenant ces images
         PanneauImages parent;
         * Variables
         int id,nb_images=0, indice=0, ancien_hauteur=0;
         int width, height;
         * Hauteur et largeur du cadre
         int hauteur, largeur;
         * tableau contenant les adresses des images
         java.awt.Image[] img;
         * les Coordonnees des images
         int x,y, xx, yy;
         * lee nombre d'images par ligne
         int nbImLigne;
         //===========================================================================================
         * Constructeur par defaut.
         * @param     par Le parent
         * @param     s Le scroller
         * @param     w la largeur du conteneur d'origine
         * @param     h La hauteur du conteneur d'origine
         * @return     Sans objet.
         public Imag(PanneauImages par,ScrollPane s, int w, int h)
              parent = par;
              width=w;
              height = h;
              indice=0;
              scroll = s;
              //le listener pour le zoom sur les images
              addMouseListener(new MouseAdapter()
                   public void mouseClicked(MouseEvent evt)
                   //Coordonnee x du click souris
                   int x;
                   //Coordonnee y du click souris
                   int y;
                   //Le numero de ligne ou l'on a clique
                   int resy;
                   //Le numero de colonne ou l'on a clique
                   int resx;
                   //Le numero de l'image selectionnee
                   int num_image;
                   //recuperer les coordonnee du click
                   y = evt.getY();
                   x = evt.getX();
                   //trouver la ligne et la colonne
                   resy = y / 210;
                   resx = x / 182;
                   //verifier si le click est effectivement sur une image
                   int i1 = 10+210*resy;
                   int i2 = 172+210*resy;
                   if((i1 < y) && (i2 > y))
                        //rien faire
                   else
                        resy = -1;
                   int i3 = 10+182*resx;
                   int i4 = 172+182*resx;
                   if((i3 < x ) && (i4 > x ))
                        //rien faire
                   else
                        resx = -1;
                   //si click bon
                   if((resx > -1) && (resy > -1))
                        num_image = (resy *nbImLigne)+resx;
                        if (num_image < nb_images)
                             //creation et ouverture d'une fenetre image
                             Frame f = new Frame("Zoom");
                             ImageZoom imgzoom = new ImageZoom(f, img[num_image]);
         * Dessiner les images
         * @param     r Le contexte graphique utilise pour le dessin.
         * @return     Sans objet.
         public void paint(Graphics g)
              //pollen courant
              int nbre = parent.parent.numPollen;
              //nombre d'images pour ce pollen
              nb_images = ((ReqPropPollen)parent.parent.vectResult.elementAt(nbre)).images.size();
              if (nb_images > 0)
              img = new java.awt.Image[nb_images];
              Photo p;
              //recuperer les images a dessiner
              for(int i = 0; i < nb_images; i++)
                   String s = ((dbtables.Image)((ReqPropPollen)parent.parent.vectResult.elementAt(nbre)).images.elementAt(i)).getChem_ima();
                   p = new Photo(this,s);
                   img[i] = p.img;
              int j;
              x=10;
              y=10;
              j=0;
              xx=0;
              yy=0;
              //variables utilisees pour distribuer les images dans la fenetre
              int xmax = parent.parent.parent.parent.getSize().width-70;
              //nbre d'images max par ligne
              nbImLigne = xmax/182;
              //cas ou on ne peut afficher qu'une colone d'images
              if (nbImLigne==0)
                   j = -1;
              //pour toutes les images, les dessiner
              for (int i=0; i<nb_images; i++)
                   largeur = img.getWidth(this);
                   hauteur = img[i].getHeight(this);
                   taille();
                   //tant qu'on peut dessiner une autre image sur la meme ligne...
                   if (j<nbImLigne)
                        g.drawRect(x-1,y-1,162,162); // trace un rectangle noir autour de la photo
                        g.drawImage(img[i],x+xx,y+yy,largeur, hauteur,this); // affiche la photo
                        x=x+182; //*(j+1);
                        j++;
                   else
                        j = 0;
                        x = 10;
                        y = y+210;
                        g.drawRect(x-1,y-1,162,162); // trace un rectangle noir autour de la photo
                        g.drawImage(img[i],x+xx,y+yy,largeur, hauteur,this); // affiche la photo
                        j++;
                        x=x+182;
              width = 0; //permet de ne pas afficher une barre horizontale
              int i1;
              int i2;
              if (nbImLigne==0)
                   i1 = nb_images;
                   i2 = nb_images - i1;
              else
                   i1 = nb_images/nbImLigne;
                   i2 = nb_images - (i1*nbImLigne);
              int i3;
              if(i2 > 0)
                   i3 = i1+1;
              else
                   i3 = i1;
              height = 210*i3;
              if (nbImLigne==0)
                   width = 182;
              else
                   width = 182*nbImLigne;
              //modifier la taille du Canvas
              setBounds(getX(), getY(), width, height);
              System.out.println("la largeur du canvas est de "+ getWidth());
              System.out.println("la hauteur du canvas est de "+ getHeight());
              else
                   System.out.println("pas d'images pour ce pollen");
         * Calculer les variables pour le placement des images
         * @param     Sans objet.
         * @return     Sans objet.
         public void taille()
              int haut_tmp = hauteur*160/largeur;
              if (haut_tmp >= 160)
                   largeur = largeur*160/hauteur;
                   hauteur=160;
                   xx = (160-largeur)/2;
                   yy = 0;
              else
                   largeur = 160;
                   hauteur = haut_tmp;
                   yy = (160-hauteur)/2;
                   xx = 0;
         * Mise a jour du Canvas sans effacer le fond a chaque fois
         * @param     p Le contexte graphique
         * @return     Sans objet.
         public void update(Graphics g)
         paint(g);
         * Effacer le fond du Canvas
         * @param     p Le contexte graphique
         * @return     Sans objet.
    public void effacer()
         Graphics g = getGraphics();
         g.clearRect(getX(), getY(), getWidth(), height);
         g.dispose();
         * Trouver la taille minimale pour le composant
         * @param     Sans objet.
         * @return     La taille minimale
         public Dimension getMinimumSize()
              return new Dimension(width, height);
         * Trouver la meilleure taille pour le composant
         * @param     Sans objet.
         * @return     La taille optimale
         public Dimension getPreferredSize()
              return new Dimension(width, height);
         * Trouver la meilleure marge pour le composant
         * @param     Sans objet.
         * @return     La marge
         public Insets getInsets()
              return new Insets(0,0,0,0);

    OMG! it's worse! now I have the scroller (both horizontal and vertical!)all the time!!! It's as if it doesn't even see the JComponent!
    I tried changing the method paint to paintComponent but it doesn't change anything :o(
    anyway, this is really weird, i don't understant why it's ok with LINUX and not with windows :o(
    thanx for trying anyway :o) :o) :o)

  • ScrollPane problems

    i have a scrollPane in a frame, and the scrollPane contains JPanels. The first JPanel appears and no scrollbar appears due to the JPanel fitting within the frame size..that's fine. Then upon a JButton click, a second JPanel appears in the first JPanel's place, this time the scrollbar appears because the JPanel size is larger then the frame size.
    The problem is that upon JButton click back to the original JPanel the scrollbar stays and the first JPanel resizes to the size of second JPanel? Behaviour should be for the scrollbar to disappear and the original JPanel to use it's original size??
    Anyone any ideas?

    You can try to work with the following methods:
    setMaximumSize(Dimension d)
    setPreferredSize(Dimension d)
    setMinimumSize(Dimension d)
    Perhaps it works when you set the first panels maximumsize.
    Djamal

  • Fbl5n problem break page print

    hi expert
    i have a problem!!
    when print this report (fbl5n) exist break page for client..
    who i can give out this break page??
    thxz sorry my bad english

    let me check ,please send the xml and rtf to [email protected]

  • 24" iMac breaking my heart

    I have really been through the mill the last couple of weeks.
    I installed 10.6.8 from Software Update, at which point my wi fi network just collapsed.  Had major weird issues trying even to work with my time capsule wired to either my iMac or MBP.  So Apple said, we'll send you a new TC. 
    New TC arrives, and when I go to start the process of setting it up, my iMac has a picture of a giant Hard Drive against a black screen.  I thought it was some kind of funky screen saver, but it became apparent that it was a pretty catastrophic crash.
    Called Apple support and they talked me through doing a complete restore from my TC - you know, the one that isn't working very well.  Six hours later, iMac appears to be working ok, but I have a corrupted iPhoto library (thankfully the picture and video files are in there, just no database file).  So Apple suggests restoring an older backup of my iPhoto library (again, from the wonky old TC).  So I start this process, and it estimates 96 hours.  I'm thinking, it'll revise that.  But no, it really is moving that slow.  After about 40 odd hours, the restore finally quit - again, no usable library. 
    At this stage, I'm freaking out, because my old TC has to be returned to Apple or they will charge me for the replacement, but I am now super reluctant to part with my only backups.  I use disk utility to archive my old TC backups to a separated HD.  I copy my picture and video files to another HD.  So I'm thinking at least I have my children's baby pictures.
    I basically start from scratch with iPhoto and import my photos from my old iPhoto library.  New TC is slowly backing everything up.  Finally does this.  Next stop: kernel panic.  Get the thing running from a 10.6 disk, Apple advises an archive install, which fails twice.  So I erase the hard drive, reinstall, then use migration assistant to bring in my data.  Next thing - it freezes.  I hard reboot, it takes approximately 40 minutes to restart - even from the 10.6 disk.  I'm on the phone with Apple through this 40 minute drama and they keep saying, as long as the computer sees the hard drive, the hard drive is probably fine.  It eventually starts up, bunch of permission repairs, etc. It appears to work normally for about 30 hours, turning it on and off, restarting normally.  I do another TM backup (had to erase my only active backup because the fresh install wouldn't recognize the old backup).  Did a few more backups on TC - imported a few pictures from my phone (didn't delete from my phone) - bought an album on iTunes and did a TM backup, just to be sure it was picking up new files.
    Thank god, that backup completed, because this morning, I can see the computer froze about an hour after I went to bed.  Had to hard reboot, and I'm getting the big file with a "?"  I've tried resetting the PRAM, leaving it unplugged, booting in safe mode and trying to boot from the 10.6 disk.  I either get the "?" or it just ejects the DVD.  I am fairly sure the HDD is gone.  But I'm really terrified of calling Apple again, because they are going to try messing around for another several hours of hard drive erasing reinstalling, etc.  At what point can you be reasonably sure you've got a hardware problem?  I would think not being able to boot from a DVD is probably a pretty safe sign? I have spent HOURS on the phone over the last two weeks.  It has ruined my time off work - my kids hate me. 
    All through this the SMART status has never reported anything, but is that completely reliable?
    Has anyone been through anything similar? Has anyone ever recovered data from an archived TM backup?

    Good news: my data is safe!
    The iMac: remains to be seen.  It's waiting in the iMac hospital - the quick look they took suggests bad logic or RAM.  I assume I should be hoping it's RAM as it looks like logic boards are not cheap.
    I really don't want to have to buy a new computer, but I don't want to pour a ton of money into it.  For starters, I really can't afford it.  And I don't really feel any huge desire to upgrade - this computer is perfect for our needs.  I don't particularly desire a 27" monitor, and I wouldn't want to get a smaller one.
    What would be the major distinction between the behavior of a computer with bad RAM versus a dying/dead logic board?
    I had a lot of system freezes, one kernel panic, a few very s l o w startups and finally, as above, it wouldn't boot from anything.  They really struggled to get it to boot from anything yesterday - they had a few different external drives hooked up to it.

  • It will break my heart, but must I abandon Firefox?

    UPDATE 9th Feb <br />Issue now SOLVED in the other thread.<br /> Disabling McAfee SiteAdvisor resolves the issue in this instance. [/questions/984055?page=2#answer-532036] <br />Note presence of ''McAfee MSS+ NPAPI Plugin''
    Please see and continue with thread [/questions/984055] ~J99 Modified February 1, 2014 9:39:33 PM BST by John99
    Almost two weeks ago, after years of admirably flawless performance, my Firefox 26.0 was struck by recurrent episodes of complete unresponsiveness, and frequent crashes.
    Efforts to remedy these problems, involving disabling various add-ons and JS, failed.
    Now I have some important new information. When operating normally, Firefox never uses more than about 3% or, rarely 5% of my CPU, even when I have many tabs open to websites, even when several of those websites are playing videos, etc. (I have had the Task Manager open constantly this week in order to be able to close Firefox when it's so unresponsive I can't use X to close it, so I was in a position to observe CPU usage.) But when Firefox is in the early stages of an episode of unresponsiveness (for example, when I can't download files or play videos) the CPU usage is greater than 25%. What's even more remarkable is that if I then close all tabs, and have only one “New Tab” open (so that I'm theoretically not using Firefox at all), the CPU usage remains over 25%!!
    Over the past few days I've a) confirmed and reconfirmed this perfect correlation between Firefox's unresponsiveness and a dramatic, unprecedented increase in CPU usage to in excess of 25%, occurring completely out of the blue, in no way triggered by my doing anything, and b) verified that when Firefox is responding normally, NOTHING I do causes the usage to go above about 5%.
    But the question is: what is causing this abnormal CPU usage that is clearly associated with Firefox's unresponsiveness?
    For the record, I have run repeated scans using Windows Defender and MalwareBytes and nothing malicious has been detected, and I have had no other problems with my computer besides the ones with Firefox. Chrome continues to operate perfectly normally.

    I suggest you continue this conversation in the thread you have already opened.
    The fact that you are using the CPU heavily compared with normal may help explain the Firefox unresponsiveness.
    The question is what is it doing.
    *Is it a direct Firefox process taking up this CPU use.
    ** If so why. <br />is malware running and making use of Firefox ?<br />Is this only on close down ?<br >is it only on a particular site ?
    *Is it the plugincontgainer ?
    *Is it another process that may affect or slowdown Firefox ?
    ** can you identify the process.
    ** is security software involved, scanning or updating
    Presumably sysinternals software - now available from microsoft - will help you answer such questions.
    Ensure you give the information in the other thread so it may be considered along with the details you have already posted.
    *''' The thread is ''After years of happily using Firefox, sudden, recurrent calamity'' [/questions/984055]'''
    Back to basics
    You really need to troubleshoot by using Firefox
    *in a new clean profile
    * with all plugins disabled
    *in Firefox's safemode
    *even try it with only this forum open as the only tab
    I would hope in such a configuration you do not get
    * 25% CPU usage.
    * Crashes
    We should be able to work from that to figure out what else is implicated in your problems.
    Please answer in the other thread [/questions/984055] .

  • Safari keeps crashing and breaking my heart

    Hello smart computer fixers! This problem just started this afternoon. I had Safari open and it quit unexpectedly, which happens occasionally, so I started it up again, only to have it quit unexpectedly. It will stay on a website for a few seconds before unexpectedly quitting now every time. I would really appreciate any help you can give me!
    Here is the most recent error report:
    Process: Safari [284]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0 (5533.16)
    Build Info: WebBrowser-75331600~3
    Code Type: X86 (Native)
    Parent Process: launchd [107]
    Interval Since Last Report: 77 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 38 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2010-07-21 23:08:39.692 -0500
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: D8B7BDD5-9742-465C-AFF3-BC4306479E0A
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000014
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x95480390 __CFRunLoopFindSource + 48
    1 com.apple.CoreFoundation 0x95487f8c CFSetApplyFunction + 140
    2 com.apple.CoreFoundation 0x9547e8f9 __CFRunLoopModeFindSourceForMachPort + 89
    3 com.apple.CoreFoundation 0x95482f5e CFRunLoopRunSpecific + 2014
    4 com.apple.CoreFoundation 0x95483aa8 CFRunLoopRunInMode + 88
    5 com.apple.HIToolbox 0x94a3c2ac RunCurrentEventLoopInMode + 283
    6 com.apple.HIToolbox 0x94a3c0c5 ReceiveNextEventCommon + 374
    7 com.apple.HIToolbox 0x94a3bf39 BlockUntilNextEventMatchingListInMode + 106
    8 com.apple.AppKit 0x969de6d5 _DPSNextEvent + 657
    9 com.apple.AppKit 0x969ddf88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10 com.apple.Safari 0x00015e67 0x1000 + 85607
    11 com.apple.AppKit 0x969d6f9f -[NSApplication run] + 795
    12 com.apple.AppKit 0x969a41d8 NSApplicationMain + 574
    13 com.apple.Safari 0x0000a3c6 0x1000 + 37830
    Thread 1:
    0 libSystem.B.dylib 0x9312d44e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93157dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x97328dff ***::TCMalloc_PageHeap::scavengerThread() + 175
    3 com.apple.JavaScriptCore 0x9732911f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4 libSystem.B.dylib 0x93157155 pthreadstart + 321
    5 libSystem.B.dylib 0x93157012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x9312d44e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93157dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x9040f894 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3 com.apple.WebCore 0x9040ba71 WebCore::IconDatabase::iconDatabaseSyncThread() + 193
    4 libSystem.B.dylib 0x93157155 pthreadstart + 321
    5 libSystem.B.dylib 0x93157012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0xffff0f26 __memcpy + 1926 (cpu_capabilities.h:246)
    1 libsqlite3.0.dylib 0x93400652 allocateBtreePage + 1810
    2 libsqlite3.0.dylib 0x93403a83 incrVacuumStep + 851
    3 libsqlite3.0.dylib 0x9344d6ce sqlite3VdbeExec + 2606
    4 libsqlite3.0.dylib 0x93458ea2 sqlite3Step + 386
    5 libsqlite3.0.dylib 0x93439624 sqlite3_exec + 260
    6 com.apple.CFNetwork 0x92344276 __CFURLCache::ExecSQLStatement(sqlite3*, char const*, int ()(void, int, char**, char**), void*, long) + 64
    7 com.apple.CFNetwork 0x92320bdd ProcessCacheTasks(__CFURLCache*) + 1433
    8 com.apple.CFNetwork 0x9231a377 CFURLCacheTimerCallback(__CFRunLoopTimer*, void*) + 165
    9 com.apple.CoreFoundation 0x954838f5 CFRunLoopRunSpecific + 4469
    10 com.apple.CoreFoundation 0x95483aa8 CFRunLoopRunInMode + 88
    11 com.apple.CFNetwork 0x9231a264 CFURLCacheWorkerThread(void*) + 388
    12 libSystem.B.dylib 0x93157155 pthreadstart + 321
    13 libSystem.B.dylib 0x93157012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x93126266 machmsgtrap + 10
    1 libSystem.B.dylib 0x9312da5c mach_msg + 72
    2 com.apple.CoreFoundation 0x95482e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95483aa8 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x0002ea39 0x1000 + 186937
    5 com.apple.Safari 0x0002e782 0x1000 + 186242
    6 com.apple.Safari 0x0002e71b 0x1000 + 186139
    7 libSystem.B.dylib 0x93157155 pthreadstart + 321
    8 libSystem.B.dylib 0x93157012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x93126266 machmsgtrap + 10
    1 libSystem.B.dylib 0x9312da5c mach_msg + 72
    2 com.apple.CoreFoundation 0x95482e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95483aa8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x94ed6520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x94e72dfd -[NSThread main] + 45
    6 com.apple.Foundation 0x94e729a4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x93157155 pthreadstart + 321
    8 libSystem.B.dylib 0x93157012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x931756fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x93157155 pthreadstart + 321
    2 libSystem.B.dylib 0x93157012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9312d44e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93157dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x971c5661 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.Safari 0x001acb84 0x1000 + 1751940
    4 com.apple.Safari 0x00044813 0x1000 + 276499
    5 com.apple.Safari 0x00044763 0x1000 + 276323
    6 libSystem.B.dylib 0x93157155 pthreadstart + 321
    7 libSystem.B.dylib 0x93157012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x93126266 machmsgtrap + 10
    1 libSystem.B.dylib 0x9312da5c mach_msg + 72
    2 ...romedia.Flash Player.plugin 0x10026bc4 FlashPlayer10_0_45_2FlashPlayer + 2207972
    3 libSystem.B.dylib 0x93157155 pthreadstart + 321
    4 libSystem.B.dylib 0x93157012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x931262ae semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x931582c6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x9319d539 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x0fdfd44f 0xfb1f000 + 3007567
    4 ...romedia.Flash Player.plugin 0x0fe16ccf FlashPlayer10_0_45_2FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x0fdfd8ff 0xfb1f000 + 3008767
    6 libSystem.B.dylib 0x93157155 pthreadstart + 321
    7 libSystem.B.dylib 0x93157012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x931262ae semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x931582c6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x9319d539 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x0fdfd44f 0xfb1f000 + 3007567
    4 ...romedia.Flash Player.plugin 0x0fe16ccf FlashPlayer10_0_45_2FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x0fdfd8ff 0xfb1f000 + 3008767
    6 libSystem.B.dylib 0x93157155 pthreadstart + 321
    7 libSystem.B.dylib 0x93157012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x95487f0b ecx: 0x00000001 edx: 0xfffffffc
    edi: 0xfffffffc esi: 0xbfffec88 ebp: 0xbfffec08 esp: 0xbfffebe0
    ss: 0x0000001f efl: 0x00010246 eip: 0x95480390 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000014
    Binary Images:
    0x1000 - 0x5ceff0 com.apple.Safari 5.0 (5533.16) <19d9230cb3d6cb500bca9a37dd897d0d> /Applications/Safari.app/Contents/MacOS/Safari
    0x642000 - 0x64dfff libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
    0x655000 - 0x67ffe8 com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x690000 - 0x69fff8 SyndicationUI ??? (???) <7b47710fa39f08be613ecebe0e4f5ece> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9d4c000 - 0xa0cbff3 com.apple.RawCamera.bundle 3.0.2 (527) <981ab8346c346fa5f88601df06c56609> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xc282000 - 0xc287ff3 libCGXCoreImage.A.dylib ??? (???) <ebbf9ab0f700c881f7e2f94ffedc1bdf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xc2df000 - 0xc2e0fff com.apple.JavaPluginCocoa 12.6.0 (12.6.0) <a3fdbdf37a0cbdb866197177dfc21507> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0xc2eb000 - 0xc2f2fff com.apple.JavaVM 12.6.0 (12.6.0) <057da0b31147d0218d472ebdff514979> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0xf900000 - 0xf91ffed com.apple.audio.CoreAudioKit 1.5 (1.5) <82f2e52c502db7f3b32349a54209a0fe> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0xfb1f000 - 0x10159ffb +com.macromedia.Flash Player.plugin 10.0.45 (1.0.4f348472) <d1aaab5d417861e6a5b835b01d303955> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x90003ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90004000 - 0x90004ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90005000 - 0x9000afff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9000b000 - 0x90045fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9004c000 - 0x90083fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <cfd64ded4da1064ce316243fd425d5a4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90084000 - 0x900adfff libcups.2.dylib ??? (???) <9f900b075e5c7c4820aa24e974cf99f0> /usr/lib/libcups.2.dylib
    0x90334000 - 0x90361feb libvDSP.dylib ??? (???) <e89461ed03200fb3c0304e62e14a42ed> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90362000 - 0x9036ffe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x903c9000 - 0x903f4fe7 libauto.dylib ??? (???) <a64961ed20db64f0f439bfbc6f962bf9> /usr/lib/libauto.dylib
    0x903f5000 - 0x90404fff libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x90405000 - 0x90408fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90409000 - 0x90f20fff com.apple.WebCore 5533 (5533.16) <d76fbda5a7037dbea2216ef51fc426c0> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90f21000 - 0x90faeff7 com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90faf000 - 0x9102cfeb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9102d000 - 0x910ddfff edu.mit.Kerberos 6.0.14 (6.0.14) <673f107cdae80c084774a27bc7bc46c1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x910de000 - 0x911e5ff7 com.apple.WebKit 5533 (5533.16) <764c6865d214bd22d04da173232f076e> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x911e6000 - 0x91205ffa libJPEG.dylib ??? (???) <38a243000d3abefeb9ff97e4657538a4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91206000 - 0x91247fe7 libRIP.A.dylib ??? (???) <e9c5df8bd574b71e55ac60c910b929ce> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91254000 - 0x913d8fef com.apple.MediaToolbox 0.484.2 (484.2) <a5110a7d3bcb02c45ad8fca1f4957917> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x913d9000 - 0x91422fef com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91423000 - 0x91833fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91834000 - 0x9187ffe1 com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91880000 - 0x91895ffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91896000 - 0x9189dff7 libCGATS.A.dylib ??? (???) <1339abfb67318d65c0130f76bc8c4da6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9189e000 - 0x9189efff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9189f000 - 0x918c7ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x918c8000 - 0x918d4ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x918d5000 - 0x9193bffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x91950000 - 0x9196cff3 com.apple.CoreVideo 1.6.1 (48.6) <f1837beeefc81964abf7b58075edea2f> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9196d000 - 0x919c6ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x919c7000 - 0x919ebfff libxslt.1.dylib ??? (???) <ec4c269815bab8e7211cb8fe9df3a9a3> /usr/lib/libxslt.1.dylib
    0x91a29000 - 0x91ba9fff com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91baa000 - 0x91baaff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91ca0000 - 0x91ce0fef com.apple.CoreMedia 0.484.2 (484.2) <37461ff47cb25ad434a8544c97271d28> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91ce1000 - 0x91d2cff7 com.apple.CoreMediaIOServices 130.0 (935) <4ee695edd53f5aa200021a2f69d24f76> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x91d2d000 - 0x92058ff6 com.apple.QuickTime 7.6.6 (1674) <3ebc05dcaf5857bc3d33a04ebabf5c1a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92059000 - 0x92192ff7 libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x92193000 - 0x92197fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x92198000 - 0x92253fe3 com.apple.CoreServices.OSServices 228.1 (228.1) <0ca70ca8e67c1a76bee151d65b1e7398> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x92254000 - 0x9225bfff com.apple.agl 3.0.9 (AGL-3.0.9) <2526a28a2fc087c09f9238dd03684513> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9225c000 - 0x92263ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x92264000 - 0x922f7ff3 com.apple.ApplicationServices.ATS 3.8.1 (???) <56f6d9c6f0ae8dccb3b6def46d4ae3f3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x922f8000 - 0x92316fff libresolv.9.dylib ??? (???) <36c871d5da9b49bb5bcf0449833d1dc5> /usr/lib/libresolv.9.dylib
    0x92317000 - 0x923befec com.apple.CFNetwork 438.14 (438.14) <827c6cb4419aedec003bb42cbec079af> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92404000 - 0x925d5ff3 com.apple.security 5.0.6 (37592) <5d7ae92f2e52ee7ba5ae658399770602> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x925d6000 - 0x92605fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92606000 - 0x92693ff7 com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92694000 - 0x92696ff5 libRadiance.dylib ??? (???) <97ff039f6d372ab58a684a0e311e4ed4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92697000 - 0x926d6fef libTIFF.dylib ??? (???) <0437eac77e4e874f566ec4219ad1b249> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x926d7000 - 0x92733ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92734000 - 0x927aeff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x927af000 - 0x92800ff7 com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92801000 - 0x92939fe7 com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9293a000 - 0x92cf6ff4 com.apple.VideoToolbox 0.484.2 (484.2) <35f2d177796ebb3b61f9d06593d1787a> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x92cf7000 - 0x92d03ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92d04000 - 0x92d3afef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x92ecb000 - 0x92ecbffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92ecc000 - 0x92f1afe3 com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92f1b000 - 0x92f1cffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x92f1d000 - 0x92fe8fef com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92fe9000 - 0x93001fff com.apple.openscripting 1.2.8 (???) <54ab21172b8b3caa601dde44872a9c0d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93002000 - 0x9301fff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93020000 - 0x93044feb libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x93045000 - 0x93050fe7 libCSync.A.dylib ??? (???) <d88c20c9a2fd0676dec62fddfa74979f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93051000 - 0x9305afff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93125000 - 0x9328cff3 libSystem.B.dylib ??? (???) <c8f52e158bf540cc000146ca8a705958> /usr/lib/libSystem.B.dylib
    0x9328d000 - 0x9328dffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9328e000 - 0x93292fff libGIF.dylib ??? (???) <0984073a08c59c7c6be81e52cebf2bec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93293000 - 0x93305fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x93306000 - 0x93399fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9339a000 - 0x933d8fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x933d9000 - 0x93460ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x93461000 - 0x9346bfeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9346c000 - 0x934e9fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x943ea000 - 0x94469ff5 com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9446a000 - 0x94558fef com.apple.PubSub 1.0.5 (65.19) <8a817c4eb3fa7e3517eb0cc5d02e5abd> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x94559000 - 0x94715ff3 com.apple.QuartzComposer 2.1 (106.13) <f487aaca8ebdc7e334e2c79cebd8da66> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94746000 - 0x94746ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x94747000 - 0x94765ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <062b391cc6becb098d8e5f4b32e50c4a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94766000 - 0x94772fff libbz2.1.0.dylib ??? (???) <887bb6f73d23088fe42946cd9f134876> /usr/lib/libbz2.1.0.dylib
    0x94773000 - 0x94825ffb libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x94826000 - 0x9482cfff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9482d000 - 0x9485effb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9485f000 - 0x9485fffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94860000 - 0x94867fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x94975000 - 0x949c4fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x949f8000 - 0x949f8ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x949f9000 - 0x949f9ffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x94a0c000 - 0x94d14fe7 com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94d15000 - 0x94e67ff3 com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94e68000 - 0x950e4fe7 com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x950e5000 - 0x950f5fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <7bd1ec22c47e62a11b34d7ba66606e2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x950f6000 - 0x95180ff7 com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95181000 - 0x95248ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x95249000 - 0x95265ff3 libPng.dylib ??? (???) <d37524fe884aa164ab7db93d4c803b64> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95266000 - 0x9526bfff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9526c000 - 0x952c6ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x952c7000 - 0x9540fff7 com.apple.ImageIO.framework 2.0.7 (2.0.7) <2a585e8223b98b77e0d7d566770b98fd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95410000 - 0x95543fe7 com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x956a8000 - 0x956adfff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x956ae000 - 0x956e8ffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9576f000 - 0x9577fffc com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x958a3000 - 0x958a5ffd com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x958a6000 - 0x9598eff3 com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9598f000 - 0x95d2cfef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95d2d000 - 0x963cdfeb com.apple.CoreGraphics 1.409.5 (???) <a40644ccdbdc76e3a0ab4d468b2f9bdd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x963ce000 - 0x963ddffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <47c451a0ea1fd2ebd6a192ecdc3f3867> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x963de000 - 0x9643bffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x9643c000 - 0x9646efff com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9646f000 - 0x96485fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x96486000 - 0x96566fff libobjc.A.dylib ??? (???) <bba0c22add60c7724e259ab28de8953e> /usr/lib/libobjc.A.dylib
    0x9659c000 - 0x965defef com.apple.NavigationServices 3.5.2 (163) <26eeb5a205f749aad83d5dac0330c41f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x965df000 - 0x9699dfea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9699e000 - 0x9719cfef com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x971a5000 - 0x971b3ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x971b4000 - 0x973b0fff com.apple.JavaScriptCore 5533 (5533.13) <cef0a091b122549249e116cb9e213c60> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x973b1000 - 0x973b3fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x973b4000 - 0x9745bfeb com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9745c000 - 0x97736ff3 com.apple.CoreServices.CarbonCore 786.16 (786.16) <60b518e4ad02b91826240199a6311286> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x97737000 - 0x97818ff7 libxml2.2.dylib ??? (???) <b3bc0b280c36aa17ac477b4da56cd038> /usr/lib/libxml2.2.dylib
    0x9786b000 - 0x9786bff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9786c000 - 0x979b6feb com.apple.QTKit 7.6.6 (1674) <ff784c2169c4214493a2b5153d80bd25> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x979b7000 - 0x979bffff com.apple.DiskArbitration 2.2.1 (2.2.1) <d97688958e0b1fdcd4747088bdf1962a> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x979c0000 - 0x97e91fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    HI,
    May not be completely fixed as your Flash Player plugin is outdated. *0xfb1f000 - 0x10159ffb +com.macromedia.Flash Player.plugin /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player*
    If Safari crashes again, uninstall then reinstall Flash, then repair permissions.
    Uninstall Flash
    Install the most recent version of Flash here.
    Now repair permissions.
    Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Carolyn

  • Compilations are breaking my heart-simple question...

    OK folks, this is a simple question - so why can't i find a clear answer anywhere? I am running Itunes 8, Win XP, been running Itunes for my music for about 4 years.
    Current setup 3 users running Itunes on same pC.
    My problem is when I browse my lbrary each song in my compilations are showing upas different albums e.g. "O Brother where art thou" has 14 different "albums" as do some home-made compilations I have been given.
    "group compilations when browsing is selected" but obviously isn;t working
    It's obviously simple but not to me...help
    Thanks
    Message was edited by: munstershug

    You mention enabling the iTunes option to *Group compilations when browsing*, but have you also set the *Part of a Compilation* flag to Yes for each track of your compilations? See my recent post on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
    tt2

  • ScrollPane problem

    All,
    i am trying to create my own TextArea, as i need to output lines of text with different colors on each line (a TextArea can only have one color for the text?).
    i have created the following program but whenever i click on the scrollbar to scroll down all of the text disappears.
    Where am i going wrong? please help
    regards
    package scrollbar;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class ScrollBar extends Applet
      public Canvas canvas = new Canvas();
      public ScrollPane pane = new ScrollPane(ScrollPane.SCROLLBARS_ALWAYS);
      public void init()
        this.setLayout(null);
        canvas.setBackground(Color.white);
        pane.add(canvas);
        pane.setSize(300, 200);
        pane.setLocation(10,10);
        this.add(pane);
      public void paint(Graphics g)
        System.out.println("paint");
        Graphics gr = canvas.getGraphics();
        int posX = 10;
        int posY = 10;
        for (int i = 0; i < 20; i++)
          gr.drawString("TEST FONT ", posX, posY);
          posY += 20;

    this is because u draw strings over the ScrollPane and not in it, and every time you scroll it, it calls the repaint method and paint over your strings.
    my suggestion is to put a label in the scrollpane and write your strings on the label or it could be easier to set html text in the label like this:l.setText("<html><body>....")good luck
    mamtz

  • ScrollPane problem - scrollbars not updated after child rescaling

    Hi.
    Here is a simple application using a ScrollPane to display a large circle. Initially everything looks fine but when you use zoom in and zoom out buttons ScrollPane doesn't update the scrollbars. Scrollbars are only updated after you try to scroll. Even worse - if you zoom out a couple of times, scrollbars dissapear. If you then zoom in again scrollbars will only reappear if you resize the stage main window.
    Is there something else I should do in addition to rescaling the circle node?
    Thanks for your help.
    package test2;
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ScrollPane;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Circle;
    import javafx.scene.transform.Scale;
    import javafx.stage.Stage;
    public class App2 extends Application {
         @Override
         public void start(Stage stage) throws Exception {
              final Scale scale = new Scale(1,1);
              final Circle circle = new Circle(100,100,500, Color.BLUEVIOLET);
              BorderPane border = new BorderPane();
              ScrollPane scroll = new ScrollPane();
              circle.getTransforms().add(scale);
              scroll.setNode(circle);
              Button zoomin = new Button("+");
              Button zoomout = new Button("-");
              zoomin.onActionProperty().set(new EventHandler<ActionEvent>() {
                   @Override
                   public void handle(ActionEvent arg0) {
                        scale.setX(scale.getX()*2);
                        scale.setY(scale.getY()*2);
              zoomout.onActionProperty().set(new EventHandler<ActionEvent>() {
                   @Override
                   public void handle(ActionEvent arg0) {
                        scale.setX(scale.getX()/2);
                        scale.setY(scale.getY()/2);
              HBox top = new HBox(5);          
              top.getChildren().addAll(zoomin, zoomout);
              border.setTop(top);
              border.setCenter(scroll);
              Scene s = new Scene(border,500,500);
              stage.setScene(s);
              stage.setVisible(true);
        public static void main(String[] args) {
            Application.launch(args);
    }

    Hi,
    see this thread maybe you find something helpful.
    javafx.scene.Group "auto-size" doesn't work in my case

  • N91 Problem - Breaks between songs

    NOKIA N91 FIRMWARE V2.10.013
    Can anyone tell me why the music player in my N91 creates breaks between songs. It is a major gripe for me because i listen to a lot of DJ mixes. as the music is playing and the second song is being mixed into the first one the music suddenly pauses for a second or two then immediately starts with the next song. Is there a cure for this? or do we have to wait till Nokia actually does something about this with a firmware update? i'm sitting with a lot of cd's i can't listen to because of this problem

    Hey heatseeker! Thanks for yr thought.
    But its not possible yet now.
    BECAUSE,
    the WMP 11 of my PC plays songs without any break.
    Do y know why?
    Because the CDs are remastered with that option.
    But notice:when the WMP or whatever that ripps off the tracks of the CDs they [I am sorry] ripp each song and thus require break in the songs.
    And the N91 plays the songs or the RIPPED-OFF songs in it that means with break-up ripped offs.
    Like LPs HYBRID THEORY:consider this album's each song is technically mixed with each other and when we play in the CD systems or in PCs they are also played gapless.
    But once they are ripped off at the same time they are broken into pieces.
    But if y know any software that ripp off CD tracks without breaking the lines let me know.
    I have been disturbed since WMPs inability to ripp off tracks with the breaks

  • Problem with NEW H520 when installed new power supply & graphic card. Please help!

    My H520 was working perfectly and was running FAST..especially when rebooting. ( It was AWESOME!  )Then I installed a new power supply (Coolmax 400w) and a new graphic card (Sapphire Radeon HD6450) and then everything changed.  Now my computer is booting very SLOWLY and all the programs are taking a long time to load too.  I was getting a black screen for almost a full 2 minutes before the windows 8.0 screen would finally load up and then it hangs there for a few seconds and finally goes to the start screen in windows.  But BEFORE I installed this new hardware, when I would reboot, I would see the Lenovo splash screen come up for a few short seconds and then it instantly went to the windows welcome screen.  And even then I would barely have enough time to see the welcome screen before it instantly loaded into the windows start screen.  Everything would load up fast on the desktop too and we'd be good to go. It all took about 30 SECONDS. 
    But now? It takes MINUTES to get everything going.   After it FINALLY loads up (it takes almost 2 full minutes now!), everything hangs up.  When you first click on the desktop, it takes a few seconds for all of the icons to pop up.  Before I loaded the new hardware, everything loaded up instantly.  I didn't even see the icons load because they were already there.  But now I have to wait for them to load up before I can even see them.  And it's like that with every program and web browser I try to use now.  Everything hangs up at first and then finally loads.  The programs work but they are sluggish.
    So I uninstalled the new power supply and put back in the original 280w power supply and I took out the graphic card but it did no change.  The machine is STILL running slow on everything it does and booting very slowly.
    I have seen this problem mentioned elsewhere about Lenovo computers but there is never a solution.  Please help!  It took me a long time to save up for this computer and I have been babying it ever since.  I will never be able to afford a new one or pay for tech repair.  I need to fix this!    I was so thrilled with this computer before the hardware upgrade. This is devastating to me that it is working so poorly now when all I was trying to do was upgrade it a little bit.     Now it's performing horribly and it's only 6 months old. 
    I ran a four hour test on the hard drive and it is fine.  I ran all the system clean ups, optimizations, registry cleanups, windows disk cleaner, defragger and virus scans. Nothing is showing up as not working but there is CLEARLY a problem.  It was never this slow.   And why is it STILL acting this slow even after I uninstalled all of the new hardware that made it start acting this way and went back to the original setup?
    I'm trying to run a memory test on it now but the BIOS will NOT allow me to select another drive to boot from so I can't boot from the flash drive or CD drive to run the memory test.  I have NO IDEA what to do next and I am starting to pull my hair out in frustration.
    Please, is there anything that can be done to make it better again?
    Any help would be HUGELY appreciated.    Thank you!
    Sincerely,
    Jennifer

    I totally give up!!  I restored everything to the ORIGINAL state with drivers AND hardware and STILL everything is not working properly like it was BEFORE the upgrade.
    So this has been the WORST experience with Tech support EVER!!  I have spent DAYS on the phone for HOURS with these technicians and nobody seems to know what they are doing.  They put me on hold every 10 minutes and are gone for 10 to 15 minutes and when they come back, they seem all set on a new solution but when you ask them questions about it, they have NO CLUE how to answer and then they put you on hold again.  Nothing gets solved and after HOURS on the phone, I just tell them to stop because we are getting no where but running around in circles that make no sense.    THIS A NIGHTMARE!!
    So I totally gave up on being able to upgrade this machine.  To any future buyers, I STRONGLY recommend you do all upgrading BEFORE you get it home for the first time.  Make sure you have your power supply and graphic card INCLUDED before you bring it home or you're mostly likely going to have a NIGHTMARE upgrading it later.    Technical support is a HORROR STORY and expect to be WAITING for LOOOOONNNNG periods of time both ON THE PHONE and ONLINE and probably ending up with NO SOLUTION in the end. 
    I've VERY upset with how this turned out!!  I'm just gonna have to deal with the fact that my computer is permenantly messed up and NOBODY AT LENOVO knows how to fix it.    So I'm stuck. 
    I decided to send back the new power supply and the new graphic card because of this nightmare with tech support.  I put everything back to the way it was when I bought the computer and it is STILL acting up!!  I just want to revert it back to factory settings .. INCLUDING THE BIOS... but Lenovo said I have to send the WHOLE computer back to them to do that.  All I can do from home is restore from a point in the hard drive and that's not enough.  I need a TOTAL CLEAN INSTALL.  Everything needs to be wiped out and reset, not just restored to a previous restore point.  I've done this multiple times and all it does is erase all the programs and stuff I put on the computer.  The drivers and other codes are still the same.  And then bugs come up and things get all wonky.  I NEVER HAD THIS PROBLEM BEFORE I TRIED TO UPGRADE IT!!
    I am NOT comfortable with Lenovo's "solution". I do NOT want to send my computer back to them for them to reset it with factory disks ESPECIALLY when they stated that they are NOT responsible for any damage in transport or otherwise. I have to buy extra packaging to make sure it gets there safely. They told me to use the original box and packaging, that is the only way they can be sure it will get there safe.  Who has the original stuffing SIX MONTHS LATER?!?! I don't want to be sending my computer across the country to get jostled all over the place and have that add to the slowness of the hardware because it was jostled.
    Can't I reset it from home?  Can they not send ME the disks instead of me sending my whole computer to them?
    I'm so incredibly frustrated with this.  I hope somebody answers quickly and that I don't have to wait DAYS to get a response again. 
    I absolutely LOVED my Lenovo computer!  And then I tried to upgrade it.  BIG MISTAKE!!  Now everything is totally messed up and Lenovo's customer support for technical problems is HORRID!!
    Somebody please help.  This is driving me crazy with frustration and totally breaking my heart.  It took me a VERY long time to save up for this computer and it was my most loved possession.  It was a reward for a lot of hard times and now it's all broken and acting slow.  And it's only 6 months old.  
    Is there a solution to this very frustrating problem?
    I just want it to go back to the way it was before. 
    And is there a very low cost KNOWN TO WORK WITH THIS MACHINE upgraded graphic card and power supply?  Is there a very specific brand and make?  If so, could you let me know what it is in case I try to upgrade it again someday?
    Thank you for your time and for reading this! 
    Please have a FANTASTIC day today!!
    ~Jennifer~

  • Problem in message sending of nokia 6080

    my sim card is unable to allow message sending from most of the nokia 6080 mobile phones.but,my sim can send messages from all other mobile phones in the usual manner.i have sent my cell to one of the nokia care centres(job sheet number:319434038/070519/20
    ).what they are telling me is that the phone is working fine with their sim card.so i am in a dual situation----my cell doesnt respond to my sim,but my sim is working with other phones.in such a one to one sim-mobile intercompatibility problem,what am i supposed to do?my warranty is still on.can i get a new cell in return?please help.
    EDIT: Removed IMEIMessage Edited by ajak on 29-May-2007 02:36 PM

    Well u must have moved ur settings.. i would sugest a format or factory reset.. its only the problem that u must have changed ur messeage no or something..
    NeVeR brEaK a heArt......!!!!
    =========================

  • PS Elements catalog problems from Album Starter Edition

    I have PS Elements 11 installed on my new notebook. I have copied all my photos from my old PC into the Photos folder on the notbook (running Windows7).  I then imported them into PS Elements. I had them all catalogued on the PC under PS Album  Starter Edition. I have copied the  the catalog  .psa file as suggested in the instructions &  used the convert command under Elements' Manage Calalogs. Everything seemd to go as expected; all my 'Collections' came in as 'Albums' & all my Tags are there.. But  none of the images are being read. All the thumbnails are the generic flower image. It seems tthe catalog is still pointing to the old D: drive on my PC& it wants me to "connect the external drive".  What have I done wrong? Have can I fix this?  I have nearly 9000 photos & hundreds of tags etc.  I will break my heart to lose the cataloging.

    Thanks so much, Andaleeb, for your interest in my problem.
    The last idea I had was similar to your suggestion - to connect my new
    notebook (on which I have PSE11) to the old PC (which has Starter Edition
    on it), using Peer to Peer by wireless, so the notebook could see the files
    on the PC.
    Then Import the images into PSE11 from the "external drive" - this I
    managed to do fairly easily.
    Then I thought I should be able to access the Catalog file on the PC, in a
    similar way from the notebook via the wireless connection.
    My thinking was that it then should not be confused about where the images
    were actually located; and I would then be able to send a backup
    instruction from PSE11 to the files on the PC; and THEN - restore from that
    backup, and using the fact that when restoring, PSE11 asks if you want to
    relocate the files and catalog to a new location - and I could choose to
    relocate them on the notebook.
    However, although I managed to import the images into PSE11 easily, I could
    not get it to recognize the catalog (.psa) file on the PC via the wireless
    connection. I checked & rechecked that I had the relevant folder set
    correctly to 'share', but no luck.
    I don't know why this was, because it you copy the catalog file to a usb
    stick & plug it into the notebook, it can pick it up OK.
    So I tried that anyway, and converted the catalog again from the usb stick,
    hoping that since the import of the images was via the wireless connect,
    PSE11 now 'knew' the images were located on the 'external' PC hard drive;
    but still the converted catalog would not function. Same as before - all my
    Albums & Tags were listed correctly, but all the image thumbnails changed
    from correct images to 'lost' generic Adobe flowers.
    At that point, I lost heart & decided I would have to abandon the project &
    just start the massive task of re-cataloging. I have a total of 64Gig of
    photos, of which about 12Gig were cataloged. Very sad!
    Now your suggestion has inspired me to give it one more try. It might make
    a difference to have PSE11 on the PC working locally rather than trying to
    negotiate the external drive thing. I had forgotten that I can do this with
    a trial version.
    I will let you know how I go.

  • Watch keep failing heart rate detection

    Does anyone has problem with the heart rate monitor?
    I have normal skin color (light, no tattoos) and the heart rate monitor can't find my pulse. The last correct one it detected was 24 hours ago. It's been failing for more than 10 times in a row and still can't get my heart rate. I had the watch for 3 days.

    Howdy huynh van du,
    Welcome to Apple Support Communities.
    Congratulations on your new Apple Watch purchase!
    From what I gather, the heart rate sensor isn’t able to measure your heart rate.
    The article linked below provides a lot of great information about how the Apple Watch measures your heart rate and it also has troubleshooting tips that’ll resolve most issues related to getting that measurement.
    Resolve iOS update and restore errors in iTunes - Apple Support
    Ciao,
    -Jason

Maybe you are looking for

  • DLM on my line

    Hi, After two weeks of disconnections my line is now stable thanks to the Home Hub Type 5A firmware fix however after a week, my profile is still stuck at 63mb download on a line that is capable of reaching 108mb uncapped. How long it takes for the p

  • Spry/Slide Show problems from new host

    Recently I moved my site from TDS to godaddy.  Everything worked well on TDS, now people get 4 error merssages before the site loads through Godaddy.  These are:1) SpryPannelSet.js requires SpryWidget.js! Then 2) SpryFadingPanel.js requires SpryPanne

  • Mavericks print driver issues...

    Any suggestions for installing  HPprinter  drivers software, downloaded from the apple support site?? I've received the message -- "The volume does not meet the requirements for this update"

  • Duplicate sequence# in standby

    Hi all, 10.2.0.1 With this query in the standby database,I am finding duplicate sequence#s. SQL> select sequence#,first_time,next_time from v$archived_log;   12473 21-JAN-10 21-JAN-10 NO   12473 21-JAN-10 21-JAN-10 YESIt seems its a bug otherwise wha

  • WEBADI Error ORA :06508 Pl/sql could not find the program unit being called

    The schema for my package is APPS. Can you tell us how to go check the schema of WEB ADI. We see my integrator created in BNE_INTEGRATORS_TL. Since it is store in BNE table, the schema for BNE table is 'BNE'? How to provide the access of package to t