Parts of applet won't display until later

I have this very simple applet (a clock) and everything is working the way is should except that the image of my clock won't display until I press one of the buttons.
here's part of the code:
public class horlogeVue extends JApplet{
public void init(){
Container c = getContentPane();
c.setLayout(new FlowLayout());
     hourPlus = new JButton("h+");
... (more buttons)
hour = new JLabel("heure");
minute = new JLabel("minute");
seconde = new JLabel("seconde");
c.add(hour);
hModele = new horlogeModele(this);
hControle = new horlogeControle(hModele);
hourPlus.addActionListener(hControle.new hourP());
public void display(int timeH, int timeM, int timeS){
time = "heure="+timeH+", minute="+timeM+", seconde="+timeS;
repaint();
public void paint(Graphics g){
super.paint(g);
g.drawString(time, 100, 75);
g.drawArc(xcenter-50, ycenter-50, 100, 100, 0, 360);
g.drawString("9", xcenter-45, ycenter+3);
g.drawString("3", xcenter+40, ycenter+3);
g.drawString("12", xcenter-5, ycenter-37);
g.drawString("6", xcenter-3, ycenter+45);
xs = (int) (Math.cos(timeS * Math.PI / 30 - Math.PI / 2) * 45 + xcenter);
ys = (int) (Math.sin(timeS * Math.PI / 30 - Math.PI / 2) * 45 + ycenter);
xm = (int) (Math.cos(timeM * Math.PI / 30 - Math.PI / 2) * 40 + xcenter);
ym = (int) (Math.sin(timeM * Math.PI / 30 - Math.PI / 2) * 40 + ycenter);
xh = (int) (Math.cos((timeH *30 + timeM / 2) * Math.PI / 180 - Math.PI / 2) * 30 + xcenter);
yh = (int) (Math.sin((timeH *30 + timeM / 2) * Math.PI / 180 - Math.PI / 2) * 30 + ycenter);
g.drawLine(xcenter, ycenter, xh, yh);
g.drawLine(xcenter, ycenter, xm, ym);
g.drawLine(xcenter, ycenter, xs, ys);
So, yeah, basically how do I display all the stuff in paint as soon as I open my applet?

To get best help with any problem, I recommend posting an SSCCE rather than 'part of the code'.
<http://www.physci.org/codes/sscce.html>
Also, when posting code, using a little indent and [src][src] elements around it (where you would change 'src' to 'code' to show any text between the two as formatted source code) makes it a lot more readable as well.
But as a general comment on the code. It is not usually a good idea to override the paint() of a root level component, I would recommend a JComponent/JPanel instead.
The JPanel(JComponent) can then be used in the JApplet, JFrame, JDialog, JOptionPane, JWindow.. as needed.

Similar Messages

  • Applet won't display.

    Hi,
    This is probably very simple, but I can't get this to work. I am
    writing an Applet that will display two panels, the first one being a
    panel to display graphics, and the other panel displaying the controls
    to manipulate the graphics panel.
    Derived from JApplet, my init() method has the following:
    Container content=getContentPane();
    display = new JPanel();
    controls = new JPanel();
    displayPanel = new DataDisplayPanel( this );
    displayPanel.setPreferredSize(new Dimension( 840, 712 ));
    displayPanel.setBackground( Color.BLACK );
    display.add( displayPanel );
    content.add( display );
    content.add( controls );
    DataDisplayPanel is just derived from JPanel, with MouseListener
    interfaces overriden. I have embedded the applet tag in a webpage (the
    relevant code is '<applet code="IceDisplayApplet.class" width="1000"
    height="1000">
    </applet>'). Now I know that init() is called, as I have a call to
    initialise data before the above calls to initialise
    the gui are called, and the data init process works just fine.
    But when I try and display the applet using appletviewer, I get
    nothing at all. Can anyone suggest why?
    One thing I do think of was that I have written all my class
    declarations in one file, and when I run the compiler,
    these of course get split into different files, Class1.class,
    Class2.class etc. I have combined these classes into
    a jar file and added this is an archive tag in the above applet code
    snippet but it still doesn't work. What am I doing wrong? Someone on
    another forum suggested to another poster that a .pack() call was
    missing, but I have run JApplets without this call, and they work just
    fine.
    Best wishes
    Paul

    Have you set the preferred size of the two JPanels, something like
    display.setPreferredSize(new Dimension(x, y));
    controls.setPreferredSize(new Dimension(x, y));
    content.add( display );
    content.add( controls );

  • Applet won't display in Internet Browser.

    import javax.swing.JTextField;
    import java.util.ArrayList;
    import javax.swing.*;
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Quiz extends JApplet implements ActionListener {
        int AnswersCorrect=0;
        JTextField textfields[] = new JTextField[18];
        JLabel labels[] = new JLabel[18];
        JLabel score = new JLabel();
        JLabel questions[] = new JLabel[18];
        JFrame frame = new JFrame();
        JScrollPane scroller = new JScrollPane(frame);
        JButton button = new JButton("Check Answers");
        GridLayout layout = new GridLayout();
        //ArrayList that will contain the User's Answers
        ArrayList<String> UsersAnswers = new ArrayList<String>(18);
        //Array of Strings that are the correct answers for the quiz
        String[] answers={
        "Answer 1 goes here",
        "Answer 2 goes here",
        "Answer 3 goes here",
        "Answer 4 goes here",
        "Answer 5 goes here",
        "Answer 6 goes here",
        "Answer 7 goes here",
        "Answer 8 goes here",
        "Answer 9 goes here",
        "Answer 10 goes here",
        "Answer 11 goes here",
        "Answer 12 goes here",
        "Answer 13 goes here",
        "Answer 14 goes here",
        "Answer 15 goes here",
        "Answer 16 goes here",
        "Answer 17 goes here",
        "Answer 18 goes here",};
    public void init() {
    //Makes the components
    for(int ii=0;ii<questions.length; ii++){
        textfields[ii] = new JTextField();
        questions[ii] = new JLabel();
        textfields[ii].setColumns(50);
        questions[ii] = new JLabel((ii + 1) + "." + " Question" + (ii + 1) + " goes here");
        frame.add(questions[ii]);
        frame.add(textfields[ii]);
    button.addActionListener(this);   
    frame.add(button);
    frame.add(score);
    frame.setLayout(layout);
    this.add(frame);
    //frame.add(scroller);
    frame.setVisible(true);
    this.setVisible(true);
    frame.setSize(500,500);
    this.setSize(500,500);
    public void actionPerformed(ActionEvent e){
    //checks to see if button was pressed
    if(e.getSource()==button){
        for(int ans=0; ans<questions.length; ans++){
        //Adds answers to the arraylist so that they can be checked
        UsersAnswers.add(textfields[ans].getText());
        //Checks for right answers
        for(int foo=0; foo<questions.length;foo++) {
            if(answers[foo].equalsIgnoreCase(UsersAnswers.get(foo))) {
            textfields[foo].setText("Correct");
            textfields[foo].setEditable(false);
            AnswersCorrect++;
             else {
            textfields[foo].setText("Incorrect");
            textfields[foo].setEditable(false);
    //Displays the score
    score.setText(AnswersCorrect + "/18");
    }When I run this applet in a browser, I get this error:
    Java Plug-in 1.6.0_13
    Using JRE version 1.6.0_13 Java HotSpot(TM) Client VM
    User home directory = C:\Users\Matthew
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    java.lang.IllegalArgumentException: adding a window to a container
         at java.awt.Container.checkNotAWindow(Unknown Source)
         at java.awt.Container.addImpl(Unknown Source)
         at javax.swing.JViewport.setView(Unknown Source)
         at javax.swing.JScrollPane.setViewportView(Unknown Source)
         at javax.swing.JScrollPane.<init>(Unknown Source)
         at javax.swing.JScrollPane.<init>(Unknown Source)
         at Quiz.<init>(Quiz.java:16)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.IllegalArgumentException: adding a window to a container
    I am using this html code to run my applet:
    *<html>*
    *<head>*
    *<title>Lets take a Quiz*
    *</title>*
    *</head>*
    *<body>*
    *<applet code="Quiz.class" width=500 height=500></applet>*
    *</body>*
    *</html>*
    Does anyone know what is wrong?

    Here is what I have now. I think I changed the things you told me to (I am probably wrong), but it is still not working.
    import javax.swing.JTextField;
    import java.util.ArrayList;
    import javax.swing.*;
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Quiz extends JApplet implements ActionListener {
        int AnswersCorrect=0;
        JTextField textfields[] = new JTextField[18];
        JLabel labels[] = new JLabel[18];
        JLabel score = new JLabel();
        JLabel questions[] = new JLabel[18];
        JFrame frame = new JFrame();
        JScrollPane scroller = new JScrollPane();
        JButton button = new JButton("Check Answers");
        GridLayout layout = new GridLayout();
        JPanel panel = new JPanel();
        //ArrayList that will contain the User's Answers
        ArrayList<String> UsersAnswers = new ArrayList<String>(18);
        //Array of Strings that are the correct answers for the quiz
        String[] answers={
        "Answer 1 goes here",
        "Answer 2 goes here",
        "Answer 3 goes here",
        "Answer 4 goes here",
        "Answer 5 goes here",
        "Answer 6 goes here",
        "Answer 7 goes here",
        "Answer 8 goes here",
        "Answer 9 goes here",
        "Answer 10 goes here",
        "Answer 11 goes here",
        "Answer 12 goes here",
        "Answer 13 goes here",
        "Answer 14 goes here",
        "Answer 15 goes here",
        "Answer 16 goes here",
        "Answer 17 goes here",
        "Answer 18 goes here",};
    public void init() {
    //Makes the components
    for(int ii=0;ii<questions.length; ii++){
        textfields[ii] = new JTextField();
        questions[ii] = new JLabel();
        textfields[ii].setColumns(50);
        questions[ii] = new JLabel((ii + 1) + "." + " Question" + (ii + 1) + " goes here");
        panel.add(questions[ii]);
        panel.add(textfields[ii]);
    button.addActionListener(this);   
    panel.add(button);
    panel.add(score);
    panel.setLayout(layout);
    scroller.add(panel);
    this.add(frame);
    frame.getContentPane().add(scroller);
    panel.setVisible(true);
    frame.setVisible(true);
    this.setVisible(true);
    frame.setSize(500,500);
    this.setSize(500,500);
    public void actionPerformed(ActionEvent e){
    //checks to see if button was pressed
    if(e.getSource()==button){
        for(int ans=0; ans<questions.length; ans++){
        //Adds answers to the arraylist so that they can be checked
        UsersAnswers.add(textfields[ans].getText());
        //Checks for right answers
        for(int foo=0; foo<questions.length;foo++) {
            if(answers[foo].equalsIgnoreCase(UsersAnswers.get(foo))) {
            textfields[foo].setText("Correct");
            textfields[foo].setEditable(false);
            AnswersCorrect++;
             else {
            textfields[foo].setText("Incorrect");
            textfields[foo].setEditable(false);
    //Displays the score
    score.setText(AnswersCorrect + "/18");
    }

  • IE won't display my applets!

    Hello,
    I installed the Java SDK on my machine several months ago, and use TextPad to code Java Applets. Everything was working fine when I last checked, but i've recently come back to some of my old applets (havent coded any java for a few months), and when i run them either through TextPad or IE i get a blank white screen with "Applet Started" in the bottom left corner. When the applet is running (in textpad), if i go to the menu and choose restart, the applet will be displayed, but it won't allow me to enter any information into any of the text boxes. I believe I am using SDK 1.502 or something of the like. If anyone could shed any light it would be much appreciated.
    Regards,
    Ben.

    The plot thickens....=)
    I attempted to follow the instructions given in that
    link, but when I opened up Java in control panel it
    appeared as a blank grey box, with only the title
    bar! Maybe i should upgrade my SDK?That is quite an possiblility, which version are you using? Another possibility is your instalation being corrupted for some reason. Are you able to run java applications? Maybe you just have to fix your instalation.

  • TextEdit won't display recent files

    TextEdit won't display recent files!  THIS USED TO WORK-- but now all I see is the words (greyed-out) "Clear Menu".  Not even sure what that means.
    My recent files works fine in WORD and other applications that offer this.  Any comments appreciated as to how to get this feature back!
    Best regards,
    Steve Schulte
    Friday 22 March 2013

    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode.  Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About
    General information.
    Isolating issues in Mac OS X
    Troubleshooting Permission Issues
    Step by Step to Fix Your Mac
    Upgrade Nightmares  

  • Messages app won't display any windows

    My Messages app (v 7.0.1) intermittently won't display any windows, not even the Preferences. I've tried reloading the app from Time Machine, but it won't let me replace an the current version.
    I'm running a Mac Pro Quad-Core Intel Xeon 3.2 GHz under 10.8.5.
    Any ideas?

    HI,
    The Time Machine version needs to be the same version as is used in OS X 10.8.5
    This will be version 7.0.1 which came with the OS X 10.8.2 update.
    the Process should be to go to Applications and find the Messages app.
    Then use the Time Machine icon in the Dock.
    This will reduce the window and display the galaxy in the background.
    On the right are the arrows and dates for moving "back in time".
    The window should also have become "stacked" with those older versions behind.
    Changing the date should file through the stacked windows until the process finds a change to the Applications Folder.
    If you went back until a change in Messages you probably got the wrong version (or a version that will not work with a later version of the OS).
    Try this:-
    In any Finder window use the Go Menu whilst holding down the ALT key.
    Select the Library that now appears in the Menu list
    Navigate to Preferences.
    Find com.apple.ichat.plist
    Drag it to the Trash and restart the app.
    This .plist holds the windowing Info for the app.
    I am presuming you have tried the keystrokes seen in the Window Menu of Messages ?
    however it also holds all the info about the Preferences except for the accounts.
    This means any change you have made from the Defaults will be reset.
    The Messages section on Fonts and Colours is the most commonly changed.
    All the Alerts will be reset if you changed them.
    8:19 pm      Sunday; March 2, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • I purchased an iPad mini on October 10th.  I want to return it and get the new ipad mini retina when it comes out.  How do I do that if the new ipad mini release date isn't until "later in November", which is beyond the 14 days from my purchase date?

    I purchased an iPad mini on October 10th.  I want to return it and get the new ipad mini retina when it comes out. I am currently still within the 14 day return/exchange window but how can I exchange it if the new ipad mini release date isn't until "later in November", which would be beyond the 14 days from my purchase date?  If apple announces a new version of a product you just purchased but won't actually release it for more than 14 days, how can you possibly exchange the one you just bought?  Is my only option to return the one I bought on the 10th (so return by 10/24) and then not have an iPad until the new one is available for purchase?  Or would it make any sense to return the one I bought, get a new one, which would presumably have another 14 day return window, and then exchange THAT one for the new ipad mini w/ retina when it comes out (hopefully within that second 14 day window)?

    Call the apple store you got it from and ask them. Sometimes in the past they've extended the 'no questions asked return' but only Apple can tell you for sure.

  • Private Photos App - pictures not displaying This app was working fine, then suddenly it won`t display any of the photos.

    This app was working fine, then suddenly it won't display any of the photos. One day the photos were there, gone the next. It still shows how many photos are there but just shows a white screen. I can't export anything to the photo album. Adding photos to existing folders yields the same result, only white screen displayed. However, I can create new albums and add photos to those without issue. Does anybody know how to recover the "missing" photo"  I was going to try reinstalling the app but it's no longer available in the iTunes App Store. Thanks, Tracy

    1, you can't at the moment, though with iOS 5 in the Autumn, from http://www.apple.com/ios/ios5/features.html#photos :
    Even organize your photos in albums — right on your device
    2, by removing it from you synced from and re-syncing. Only photos taken with the iPad, copied to it via the camera connection kit, or saved from emails/websites etc can be deleted directly on the iPad (either via the trashcan icon in the top right corner if viewing the photo in full screen, or via the icon of the box with the arrow coming out of it in thumbnail view)
    3, the location of the photos that you synced to the iPad should be listed on the iPad's Photos tab when connected to your computer's iTunes.
    4, you can copy the photos from your iPad to your computer : http://support.apple.com/kb/HT4083 . You should also be able to delete them from the iPad as part of the transfer process to your computer, and it's then your choice whether to add them to your sync photo list so as to copy them back to the iPad. Copying them to your computer would allow you to organise them into folders and therefore be able to sync them back into separate albums.
    5, I don't use Dropbox either. There are some third-party browser apps in the iTunes App Store that allow you to download pages so that you can view them when offline e.g. Atomic Web (the whole page is saved within Atomic Web, it doesn't place a photo into the Photos app)
    6, deleting content should help. If you remove an app from your iPad then you also remove the content that it's got on the iPad - so if you then decide to reinstall it back onto the iPad then you will need to manually add back any content that you want in it. None of the Apple built-in apps (including Photos) can be removed from the iPad

  • TOC Won't Display in WinHelp

    I am updating a WinHelp project that was previously developed
    in X3 but which I am now trying to update and compile in RoboHelp 7
    for Word. The TOC won't display (i.e., the TOC navigation panel at
    the left doesn't display) when the help is launched. When viewing
    the TOC in the single panel window by clicking the Help Topics
    button, the links do work. There is a CNT file. I tried deleting
    the GID file (as suggested by Adobe), and using the old CNT file
    that worked in the previous version of the project. Anyone else
    experience this with RoboHelp 7?

    We're getting the same issue here. We compile - looks great. We copy the hlp and cnt files to another computer and the TOC disappears. We're using RoboHelp for Word and have been since v5. Can anyone help on this? All topics are there; links work, graphics great, but the Table of Contents has vanished.
    If I run the AutoGenerate TOC function, the TOC disappears completely from the system. Bear in mind, this is the same file we've been working from for the last 3 years and up until now has been working. We recently updated to v7 and upgraded again to v8 today.
    I really appreciate any guidance anyone can give.
    Kerry

  • My emails won't display on right hand side of iPad sceen

    Emails won't display their content on the right had side of screen on my iPad , gmail

    Quit the app completely. Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the mail app icon. Tap the home button or anywhere above the task bar. Try mail again.
    If that doesn't work - Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Hp 110-a04 won't display video when my 5670 is plugged in.

    So here's the dealio. Bought a myself an hp 110-a04, threw in the sapphire 5670, doesn't display anything and I get a 6 long beeps beep code. Kill me.
    So, I take out the original PSU (it's only 180 watts), throw in a 400 watt power supply,  toss in the GPU aaaaannnnnnd... still won't display anything and the beep code is back (in the old PC it was in worked fine with the 250 watt psu).
    The computer works perfectly fine without the card, boots up, actaully displays stuff when plugged by VGA. Why it won't display anything is absolutely beyond me. Everything is hooked up to the new PSU, it's just that nothing works with that graphics card in.
    Halp me.

    Hello @HAIRSHAMENSTUFF,
    I understand that you are having issues getting the sapphire 5670 to work with your HP 110-a04 Desktop PC. I suspect that you will have to enable legacy devices in your BIOS. Unfortunately, I do not have access to the BIOS for your computer to provide you with step by step instructions, but if you tap F10 on startup and enter the BIOS you can browse through until you find a way of enabling legacy support or mode.
    I hope this helps. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • MacBook Air connected to projector won't display dvd in superdrive, but plays on macBook Air screen.

    MacBook Air connected to projector won't display the dvd in the superdrive, but it is playing on the MacBook Air screen.
    When dvd is ejected, MB A screen appears on the big screen through the projector. What do I need to do to get the training dvd showing on the screen?
    Thanks

    Power off the router. Unplug it from the wall. Wait a while.
    Plug it back to the wall. Power the router on. Wait until all the lights are lit properly. It will take a while.
    Restart the computer.
    Start up in Safe Mode.
    http://support.apple.com/kb/PH11212?viewlocale=en_US
    Deselect proxies if selected.
    System Preference > Network > Advanced  > Proxies Tab
    Uncheck “Auto Proxy Discovery”.
    Click OK, Apply.

  • Occasionally Firefox 3.6.12 won't display photos on certain sites. Reloading works sometime but not alwasys.

    At times on auction some sites such as ebay, (and others), photos won't display. If I press the reload button there's a chance the photo will display. If reload doesn't work the first time, pressing it 3 or 4 times may work but not always. Closing the site then re-opening works sometimes but not always. Annoying.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Safari won't display pdf in browser

    Posted before in wrong forum.
    I am really sorry if this has been posted before, but I have been searching the forums and can't find an answer to it. I was also looking for the FAQ article about this that Apple says is an answer, but can't find that either.
    Anyway, using 10.4.11 and Safari 3.0.4. Safari won't display pdfs in the browser. It is gray with the Acrobat logo.
    I remember reading that the solution is to uninstall (delete) Safari and reinstall 3.0.4. However, I cannot find an install for 3.0.4 for Mac, and then do something with Acrobat. I am using 3.0.4 because it was part of a bundled OS update. I can't go back and downgrade my OS...
    What do I do?

    Hi,
    You probably won't have to reinstall Safari. Two things you can try. If you open Adobe Reader and go into the 'Internet' section of its preferences, you should be able to disable the browser plug-in. Some times that alone isn't enough, in which case, browse to HD/Library/Internet Plug-ins/ and move the Adobe plugin out of the folder. Restart Safari for the changes to take effect.
    Yang

  • Select characters/symbols won't display on iPod 160GB Classic since restore

    I don't know if anyone has come across this yet or not. My new iPod 160GB Classic crashed after 1 week. Since restoring, I've noticed that certain characters/symbols won't display in artist/title names on my iPod that used to display just fine before the restore (symbols like + and ÿ). The restore function says that it restores it to the 'original factory settings,' but obviously not. I have tried restoring again, but that hasn't solved the problem. I've tried getting the track names from Gracenote (thinking maybe it was a font-specific thing), but that didn't help either. I know it seems petty, but I'm not sure how to solve it. The latest update has been applied to my iPod and I have the latest version of iTunes. Any ideas? I believe the crash was caused by a third party software which has since been removed. I have not experienced any problems since.

    Probably, the easiest way to resolve this is to copy the artwork from one song on an album and paste it into every song on that album.
    In your iTunes Library, choose an album that has artwork issues; choose one track that has the artwork and copy it. Then:
    the slightly longer method is to check each song individually, until you find the one with the missing artwork. Paste (the copy previously made) from one of the other tracks on the album.
    a slightly quicker method is to highlight all the songs on that album (make sure it is just that one album) and paste the artwork into the box.
    Sync the iPod with your iTunes Library.

Maybe you are looking for

  • Satellite Pro A200 Windows XP, 4Gb SDHC Card does not work.

    Hi, I have had a Satellite Pro A200 installed with Windows XP, SP2 for some time - No problems there, a great piece of kit. However I recently have bought a new camera and splashed out on a Kingston 4Gb SDHC card. The manual for my A200 seemes to ind

  • A QUICK QUESTION ABOUT ANYCONNECT THIRD PARTY CA WITH OCSP RESPONDER.

    Hi guys, i have successfully implemented anyconnect with a third party ca server (EBJCA) and CRL for revocation checking. Now i want to implement OCSP instead of CRL. I followed this document: http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/pro

  • Need background to be transparent!

    Hello, I've been trying to put a transparent background on my illustrator file but I don't exactly know how to do it.. I imported a picture on illustrator and edited it a bit. Here's what it looks like: http://i.imgur.com/MJwYx.png Here's what it loo

  • Error in sap pi while implimenting file to file scenario transporocot: NFS

    ERROR:com.sap.engine.interfaces.messaging.api.exception.ConfigException:some of the IS access information is not available.SLD Access property may SLD is not available.

  • Why are there two default profiles?

    I have been having problems with Firefox (both 19 and 20) not starting. I have followed all of the suggestions from the various threads, but the problem has persisted. Today, I wanted to save my passwords and bookmarks and completely remove Firefox (