KeyListener no longer working in JPanel

Hi,
I have implemented a graphics interface with JPanel with mouse action and movement captured. Everything works fine until I added KeyListener implementation.
No matter what I do, I could not enable the key event.
The top window is a JFrame which contains several components and one of them is a JPanel. I wanted to capture key event inside that JPanel.
JFrameC a = new JFrameC();
JPanelC b = new JPanelC(a);
And inside JPanelC, I have statement as
a.addKeyListener(this);
addKeyListener(this);
But still no key event.
If I simply change JPanelC class from JPanel to Panel (only extends statement), key event appears as it supposes to be.
What's wrong with JPanel? I thought it should behave similar to Panel with more better features.
What should I do to enable key event in JPanel?
Please help.

I tried the following simple program which is similar to my complicated implementation and it worked. I am confused.
<pre>
//KeyFrame.java
import javax.swing.*;
import java.awt.event.*;
import java.awt.BorderLayout;
import java.awt.*;
public class KeyFrame extends JFrame {
public KeyFrame(String s) {
super(s);
KeyEventDemo ked = new KeyEventDemo(this);
getContentPane().add(ked);
pack();
show();
setSize(500, 500);
validate();
public static void main(String [] args) {
KeyFrame kf = new KeyFrame("");
// KeyEventDemo.java
import javax.swing.*;
import java.awt.event.*;
import java.awt.BorderLayout;
import java.awt.*;
public class KeyEventDemo extends JPanel
//implements KeyListener, ActionListener {
implements KeyListener {
public KeyEventDemo(Component c) {
super();
c.addKeyListener(this);
//addKeyListener(this);
/** Handle the key typed event from the text field. */
public void keyTyped(KeyEvent e) {
System.err.println("KEY TYPED: ");
/** Handle the key pressed event from the text field. */
public void keyPressed(KeyEvent e) {
System.err.println("KEY PRESSED: ");
/** Handle the key released event from the text field. */
public void keyReleased(KeyEvent e) {
System.err.println("KEY RELEASED: ");
</pre>

Similar Messages

  • My KeyListener doesn´t work, why?

    Hi!
    I am trying to ge my KeyListener working.
    My code is as follows:
    class C extends JPanel
              public C()
                   addMouseListener(new MListener());
                            addKeyListener(new KListener());Furher down in the code I have this:
    class KListener extends KeyAdapter
                public void keyPressed(KeyEvent e)
                       System.out.println(KeyEvent.getKeyText(e.getKeyCode()) + " was pressed");
                public void keyReleased(KeyEvent e)
                     System.out.println(KeyEvent.getKeyText(e.getKeyCode()) + " was released");
           }I do not get any errors when compiling the code but the KeyListener doesn´t work. The mouse listeners work perfekt.
    What´s wrong with my key listener?

    Add your keyListener to the JFrame and it will probably work, the JFrame has the focus when you use your JPanel.
    package Junk;
    import java.awt.Dimension;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import javax.swing.JFrame;
    class Junk extends JFrame {
      Junk(){
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        addKeyListener(new KListener());
        setPreferredSize(new Dimension(256, 256));
        setVisible(true);
      public static void main(String[] args){
        new Junk();
      class KListener extends KeyAdapter {
        public void keyPressed(KeyEvent e) {
                System.out.println(KeyEvent.getKeyText(e.getKeyCode()) + " was pressed");
              public void keyReleased(KeyEvent e) {
             System.out.println(KeyEvent.getKeyText(e.getKeyCode()) + " was released");
    }

  • When my thread starts running, at that time keylistener is not working.

    when my thread starts running, at that time keylistener is not working.
    plz reply me.

    //FrameShow.java
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import java.awt.Dimension;
    import java.awt.geom.Dimension2D;
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import java.util.logging.Level;
    import java.awt.event.*;
    import java.util.*;
    public class FrameShow extends JFrame implements ActionListener,KeyListener
         boolean paused=false;
         JButton stop;
         JButton start;
         JButton exit;
         public IncludePanel CenterPanel;
         public FrameShow()
    CenterPanel= new IncludePanel();
              Functions fn=new Functions();
              int height=fn.getScreenHeight();
              int width=fn.getScreenWidth();
              setTitle("Game Assignment--Santanu Tripathy--MCA");
              setSize(width,height);
              setResizable(false);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              show();
              initComponents();
              DefaultColorSet();
              this.addKeyListener(this);
         this.setFocusable(true);
         public void initComponents()
              Container contentpane=getContentPane();
              //Creating Panel For Different Side
              JPanel EastPanel= new JPanel();
              JPanel WestPanel= new JPanel();
              JPanel NorthPanel= new JPanel();
              JPanel SouthPanel= new JPanel();
              //CenterPanel = new IncludePanel();
              //IncludePanel CenterPanel= new IncludePanel();
              EastPanel.setPreferredSize(new Dimension(100,10));
              WestPanel.setPreferredSize(new Dimension(100,10));
              NorthPanel.setPreferredSize(new Dimension(10,100));
              SouthPanel.setPreferredSize(new Dimension(10,100));
              //CenterPanel.setPreferredSize(new Dimension(200,200));
              //Adding Color to the Panels
              NorthPanel.setBackground(Color.green);
              SouthPanel.setBackground(Color.orange);
              CenterPanel.setBackground(Color.black);
              //Creating Border For Different Side
              Border EastBr = javax.swing.BorderFactory.createEtchedBorder(Color.cyan, Color.red);
              Border WestBr = javax.swing.BorderFactory.createEtchedBorder(Color.cyan, Color.red);
              Border NorthBr = javax.swing.BorderFactory.createEtchedBorder(Color.cyan, Color.red);
              Border SouthBr = javax.swing.BorderFactory.createEtchedBorder(Color.cyan, Color.red);
              Border CenterBr = javax.swing.BorderFactory.createEtchedBorder(Color.cyan, Color.red);
              //Creating Components For East Panel
              JLabel left= new JLabel("LEFT");
              JLabel right= new JLabel("RIGHT");
              JLabel rotate= new JLabel("ROTATE");
              left.setForeground(Color.blue);
              right.setForeground(Color.blue);
              rotate.setForeground(Color.blue);
              //Creating Components For West Panel
              ButtonGroup group = new ButtonGroup();
              JRadioButton rb1 = new JRadioButton("Pink",false);
              JRadioButton rb2 = new JRadioButton("Cyan",false);
              JRadioButton rb3 = new JRadioButton("Orange",false);
              JRadioButton _default = new JRadioButton("Black",true);
              rb1.setForeground(Color.pink);
              rb2.setForeground(Color.cyan);
              rb3.setForeground(Color.orange);
              _default.setForeground(Color.black);
              //Creating Components For North Panel
              JLabel name= new JLabel("Santanu Tripathy");
              name.setForeground(Color.blue);
              name.setFont(new Font("Serif",Font.BOLD,30));
              //Creating Components For South Panel
              start = new JButton();
              stop = new JButton();
              exit = new JButton();
              start.setToolTipText("Click this button to start the game");
              start.setFont(new java.awt.Font("Trebuchet MS", 0, 12));
              start.setText("START");
              start.setBorder(javax.swing.BorderFactory.createCompoundBorder(javax.swing.BorderFactory.createEmptyBorder(3, 5, 3, 5), javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED)));
              start.setMaximumSize(new java.awt.Dimension(90, 35));
              start.setMinimumSize(new java.awt.Dimension(90, 35));
              start.setPreferredSize(new java.awt.Dimension(95, 35));
              if(paused)
                   stop.setToolTipText("Click this button to pause the game");
              else
                   stop.setToolTipText("Click this button to resume the game");
              stop.setFont(new java.awt.Font("Trebuchet MS", 0, 12));
              stop.setText("PAUSE");
              stop.setBorder(javax.swing.BorderFactory.createCompoundBorder(javax.swing.BorderFactory.createEmptyBorder(3, 5, 3, 5), javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED)));
              stop.setMaximumSize(new java.awt.Dimension(90, 35));
              stop.setMinimumSize(new java.awt.Dimension(90, 35));
              stop.setPreferredSize(new java.awt.Dimension(95, 35));
              exit.setToolTipText("Click this button to exit from the game");
              exit.setFont(new java.awt.Font("Trebuchet MS", 0, 12));
              exit.setText("EXIT");
              exit.setBorder(javax.swing.BorderFactory.createCompoundBorder(javax.swing.BorderFactory.createEmptyBorder(3, 5, 3, 5), javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED)));
              exit.setMaximumSize(new java.awt.Dimension(90, 35));
              exit.setMinimumSize(new java.awt.Dimension(90, 35));
              exit.setPreferredSize(new java.awt.Dimension(95, 35));
              //Adding some extra things to the Panels
              group.add(rb1);
              group.add(rb2);
              group.add(rb3);
              group.add(_default);
              //Adding Component into the Panels
              EastPanel.add(left);
              EastPanel.add(right);
              EastPanel.add(rotate);
              WestPanel.add(rb1);
              WestPanel.add(rb2);
              WestPanel.add(rb3);
              WestPanel.add(_default);
              NorthPanel.add(name);
              SouthPanel.add(start);
              SouthPanel.add(stop);
              SouthPanel.add(exit);
              //Adding Border Into the Panels
              EastPanel.setBorder(EastBr);
              WestPanel.setBorder(WestBr);
              NorthPanel.setBorder(NorthBr);
              SouthPanel.setBorder(SouthBr);
              CenterPanel.setBorder(CenterBr);
              //Adding Panels into the Container
              EastPanel.setLayout(new GridLayout(0,1));
              contentpane.add(EastPanel,BorderLayout.EAST);
              WestPanel.setLayout(new GridLayout(0,1));
              contentpane.add(WestPanel,BorderLayout.WEST);
              contentpane.add(NorthPanel,BorderLayout.NORTH);
              contentpane.add(SouthPanel,BorderLayout.SOUTH);
              contentpane.add(CenterPanel,BorderLayout.CENTER);
              //Adding Action Listeners
              rb1.addActionListener(this);
              rb2.addActionListener(this);
              rb3.addActionListener(this);
              _default.addActionListener(this);
              exit.addActionListener(this);
              start.addActionListener(this);
    try
              start.addActionListener(
    new ActionListener() {
    public void actionPerformed( ActionEvent e )
                        start.setEnabled(false);
    CenterPanel.drawCircle();
    catch(Exception e)
    {System.out.println("Exception is attached with sart button exp = "+e);}
    try
              stop.addActionListener(
    new ActionListener() {
    public void actionPerformed( ActionEvent e )
                        paused=!paused;
                        if(paused)
                             start.setToolTipText("Click this button to resume the game");
                             stop.setText("RESUME");
                        else
                             start.setToolTipText("Click this button to pause the game");
                             stop.setText("PAUSE");
    CenterPanel.pause();
    catch(Exception e)
    {System.out.println("Exception is attached with sart button exp = "+e);}
         public void DefaultColorSet()
              getContentPane().setBackground(Color.white);
         public void actionPerformed(ActionEvent AE)
              String str=(String)AE.getActionCommand();
              if(str.equalsIgnoreCase("pink"))
                   CenterPanel.setBackground(Color.pink);
              if(str.equalsIgnoreCase("cyan"))
                   CenterPanel.setBackground(Color.cyan);
              if(str.equalsIgnoreCase("orange"))
                   CenterPanel.setBackground(Color.orange);
              if(str.equalsIgnoreCase("black"))
                   CenterPanel.setBackground(Color.black);
              if(str.equalsIgnoreCase("exit"))
                   System.exit(0);
         public void keyTyped(KeyEvent kevt)
    //repaint();
    public void keyPressed(KeyEvent e)
              System.out.println("here key pressed");
              //CenterPanel.dec();
         public void keyReleased(KeyEvent ke) {}
    }//End of FrameShow.ja
    //IncludePanel.java
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.awt.Graphics.*;
    import java.awt.Dimension;
    import java.awt.geom.Dimension2D;
    import java.util.*;
    import java.util.logging.Level;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    public class IncludePanel extends JPanel implements Runnable
    int x=0,y=0;
    int color_1=0;
    int color_2=1;
    int start=0;
    Thread th;
    Image red,blue,green,yellow;
    java.util.List image;
    static boolean PAUSE=false;
         public IncludePanel()
         red= Toolkit.getDefaultToolkit().getImage("red.png");
         blue= Toolkit.getDefaultToolkit().getImage("blue.png");
         green= Toolkit.getDefaultToolkit().getImage("green.png");
         yellow= Toolkit.getDefaultToolkit().getImage("yellow.png");
    public void paintComponent(Graphics g)
              super.paintComponent(g);
              draw(g);
    public void dec()
         System.out.println("in dec method");
         x=x+30;
    public void draw(Graphics g)
              g.setColor(Color.red);
              int xx=0,yy=0;
              for (int row=0;row<=12;row++)
                   g.drawLine(xx,yy,180,yy);
                   yy=yy+30;
              xx=0;
              yy=0;
              for (int col=0;col<=6;col++)
                   g.drawLine(xx,yy,xx,360);
                   xx=xx+30;
              if(color_1==0)
                   g.drawImage(red, x, y, this);
              else if(color_1==1)
                   g.drawImage(blue,x, y, this);
              else if(color_1==2)
                   g.drawImage(green,x,y, this);
              else if(color_1==3)
                   g.drawImage(yellow,x,y, this);
    x=x+30;
              if(color_2==0)
                   g.drawImage(red, x, y, this);
              else if(color_2==1)
                   g.drawImage(blue,x,y, this);
              else if(color_2==2)
                   g.drawImage(green,x,y, this);
              else if(color_2==3)
                   g.drawImage(yellow,x,y, this);
    x=0;
    public void drawCircle( )
         th=new Thread(this);
         th.start();
         public void pause()
              if(PAUSE)
                   th.resume();
                   PAUSE=false;
                   return;
              if(!PAUSE)
              PAUSE=true;
         public synchronized void run()
              Random rand = new Random();
              Thread ani=Thread.currentThread();
              while(ani==th)
                   if(PAUSE)
                        th.suspend();
                   if(y==330)
                        color_1 = Math.abs(rand.nextInt())%4;
                        color_2 = Math.abs(rand.nextInt())%4;
                        if(color_1==color_2)
                             color_2=(color_2+1)%4;
                        y=0;
                   else
                        y=y+30;
                   repaint();
                   try
                        Thread.sleep(700);
                   catch(Exception e)
         }//End of run
    i sent two entire program

  • PCS no longer working with contacts and 6086

    I have applied the latest release of PC Suite 6.84.10.3.
    Previously the installed level was 6.83.14.1
    The send/read/write message still doesn't work but hangs the Windows Explorer for a while (this hang didn't occur previously)
    But now, the contact facility no longer works. It is no longer possible to edit a contact, to store it locally or to send it to the phone even a message says everything is OK
    (translate it from french: The contact has been well recorded into the phone)
    Folder browsing still works correctly, either the phone folder or the memory card folder
    Need a fix or a way to install the previous version, at least for the contacts...
    This is a really negative feedback!
    Phil

    I guess what I learned is that sometimes the best solution is to do nothing and wait for the problem to solve itself! Funny, this has never worked for me before.
    WOT is now working for me but often for only the first few rows of images. That's cool that it is also working with bing images.
    Boudica, thanks for understanding. I am new contributor/ question-asker here on mozilla and may not understand how things are done. I was just frustrated, getting an email saying that my question was answered, logging in to find that it wasn't.
    Now we have the functionality that we wanted, right?

  • Brand new IPOD Touch Apps no longer work after upgrading software

    I got a Ipod touch for my wife Today at Wal-Mart. I brought it home, connected to wifi and downloaded some apps and also payed for some. They all worked fine. Then I connected to computer to transfer songs. It told me to upgrade the Ipod software so i Did. After it restarted none of the downloaded apps work anymore. I have read MANY MANY MANY discussions on this and there is no fix. I am not wiping out all the songs and reload everything all over again. It will take forever. My wifes BD is Friday and this is making me so mad after I just dropped $300 on this thing. APPLE!!! Where is the fix? I deleted the apps and reinstalled they still don't work. Anybody got this figured out? I am getting ready to get my money back and tell everyone to avoid buying ipod until they get this upgrade bug fixed.
    Message was edited by: 2009 IPOD TOUCH

    I have the same problem. Brand new two days ago. I synched the touch with Itunes but wasn't hooked up to the internet at the time so didn't do the software upgrade right away. Then I downloaded about a dozen apps (free and paid) with wifi directly to the touch. They all worked fine. Then I plugged it back in to Itunes and had it upgrade it to 3.1.2. It locked up Itunes several times since then and the downloaded apps no longer work (they start to open then disappear).
    The problem is, no one is listening to this problem (including Anna above)! Everyone says "just do a hard reboot, or restore to factory settings, reload the apps, etc." I've tried all the standard troubleshooting but none of it fixes this. It sure seems to me this is a problem with 3.1.2 but Apple isn't helping out here. Where are you APPLE? Use some of those outrageous profits you're making to fix the problem you have created. Here's $300 of my hard earned dollars pretty much down the drain.
    Message was edited by: IPatronius

  • Link to A folder View in a PDF Portfolio - feature no longer working - please advise

    Hi, I am no longer able to link to a Folder View of a PDF Portfolio:
    Within a PDF portfolio i need to link from a PDF to a folder view in the Portfolio. I am using Link Action - Go to Page View.
    This used to work for me - very important feature that no longer works. Please advise a workaround.
    Steps:
    1. Start a PDF Portfolio that contains files and folders
    2. Open a PDF in the Portfolio
    3. in the opened PDF click Add or Edit Link
    4. Define a link area and set it to Go To A Page Vies
    5. In the past i have been able to target a Folder View in the Portfolio - ie. direct a user not to a file, but instead to a folder view that contains relevant files. I would do this by setting the Target Page View to my desired folder view
    6. This used to work in bringing a user to the folder view i specify. Now it does nothing. If i go back to the PDF and EDIT the Link i see this. File: Parent Document Page 1. This in fact does nothing.
    Please advise, am i doing this wrong, it used to work. I have tried several workarounds, with no luck.
    thanks!
    Alejandro Collados-Nunez
    Graphic Designer | Art Director
    | e: [email protected]
    | w: www.1lb.ca

    There's an extension or two, or a combination of extensions which seem to be causing that in Firefox 6.0.2. One that has been mentioned is TabMix Plus.
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes
    You need to figure out what is causing it, and disable that extension/s until they are fixed by their developer.

  • System password no longer works after 10.9.4 update

    YOU CAN READ MORE ABOUT IT HERE:
    Re: Issues after Software  OS X 10.9.4 (13E28) upgradeRe: Issues after Software OS X 10.9.4 (13E28) upgrade
    Same problem, here, updated, pw n longer works, HOW TO  FIX? Can’t install anything, any ideas?
    HERE IS MY ENTRSFO, HOPE IT HELPS:
    EtreCheck version: 1.9.12 (48)
    Report generated July 18, 2014 at 11:49:39 AM PDT
    Hardware Information:
      27" iMac (Early 2011)
      iMac - model: iMac12,2
      1 2.7 GHz Intel Core i5 CPU: 4 cores
      16 GB RAM
    Video Information:
      AMD Radeon HD 6770M - VRAM: 512 MB
      iMac 1920 x 1080
    System Software:
      OS X 10.9.4 (13E28) - Uptime: 1 day 11:8:27
    Disk Information:
      ST31000528AS disk2 : (1 TB)
      EFI (disk2s1) <not mounted>: 209.7 MB
      Macintosh HD (disk2s2) / [Startup]: 999.35 GB (59.06 GB free)
      Recovery HD (disk2s3) <not mounted>: 650 MB
      OPTIARC DVD RW AD-5690H
      HGST HUS724020ALE640 disk0 : (2 TB)
      EFI (disk0s1) <not mounted>: 209.7 MB
      disk0s2 (disk0s2) <not mounted>: 2 TB
      Boot OS X (disk0s3) <not mounted>: 134.2 MB
      HGST HUS724020ALE640 disk1 : (2 TB)
      EFI (disk1s1) <not mounted>: 209.7 MB
      disk1s2 (disk1s2) <not mounted>: 2 TB
      Boot OS X (disk1s3) <not mounted>: 134.2 MB
    USB Information:
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
      Apple Internal Memory Card Reader
    FireWire Information:
      LaCie d2 quadra (button) 400mbit - 800mbit max
      EFI (disk4s1) <not mounted>: 209.7 MB
      Snow Leopard Copy (disk4s2) /Volumes/Snow Leopard Copy: 666.67 GB (18.36 GB free)
      Desktop Download(s) from iMac (disk4s3) /Volumes/Desktop Download(s) from iMac: 666.67 GB (60.95 GB free)
      OS Lion (disk4s4) /Volumes/OS Lion: 332.71 GB (3.91 GB free)
      Recovery HD (disk4s5) <not mounted>: 650 MB
      MBP COPY (disk4s6) /Volumes/MBP COPY: 333.09 GB (164.16 GB free)
      Avid Mbox Pro 400mbit - 400mbit max
    Thunderbolt Information:
      Apple Inc. thunderbolt_bus
      G-Technology G-RAID with Thunderbolt
    Configuration files:
      /etc/hosts - Count: 18
    Gatekeeper:
      Mac App Store and identified developers
    Kernel Extensions:
      [loaded] at.obdev.nke.LittleSnitch (4050 - SDK 10.8) Support
      [loaded] com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) Support
      [loaded] com.HGST.driver.GDOCKDriver (1.0.3 - SDK 10.7) Support
      [loaded] com.avid.driver.firewire.mboxpro (1.3.0 - SDK 10.7) Support
      [loaded] com.digidesign.iokit.DigiDal (10.0f56 - SDK 10.6) Support
      [not loaded] com.line6.driver.xtaudio (7.3.6 - SDK 10.7) Support
      [not loaded] com.line6.iokit.ClassicNotSeizeVariaxIF (1.0.1) Support
      [not loaded] com.paceap.kext.pacesupport.leopard (5.9 - SDK 10.4) Support
      [not loaded] com.paceap.kext.pacesupport.master (5.9 - SDK 10.6) Support
      [not loaded] com.paceap.kext.pacesupport.panther (5.9 - SDK 10.3) Support
      [loaded] com.paceap.kext.pacesupport.snowleopard (5.9 - SDK 10.6) Support
      [not loaded] com.paceap.kext.pacesupport.tiger (5.9 - SDK 10.4) Support
      [not loaded] com.roxio.TDIXController (1.7) Support
      [not loaded] com.wacom.kext.pentablet (5.3.3 - SDK 10.8) Support
      [loaded] com.waves.driver.soundgrid (2.0.0) Support
    Startup Items:
      DigidesignLoader: Path: /Library/StartupItems/DigidesignLoader
    Problem System Launch Daemons:
      [failed] com.apple.wdhelper.plist
    Launch Daemons:
      [running] at.obdev.littlesnitchd.plist Support
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.adobe.SwitchBoard.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [running] com.line6.l6ksettingmgr.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [running] com.paceap.eden.licensed.plist Support
      [loaded] com.timesoftware.timemachineeditor.helper.plist Support
      [running] com.waves.daemon.SoundGridProtocolService.plist Support
      [loaded] PACESupport.plist Support
    Launch Agents:
      [running] at.obdev.LittleSnitchUIAgent.plist Support
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.avid.mboxpro.helper.plist Support
      [running] com.canon.MFManager.plist Support
      [loaded] com.divx.dms.agent.plist Support
      [loaded] com.divx.update.agent.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
      [running] com.wacom.pentablet.plist Support
    User Launch Agents:
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [not loaded] com.macpaw.CleanMyMac.trashSizeWatcher.plist Support
      [failed] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
      [failed] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
    User Login Items:
      iTunesHelper
      SpeechSynthesisServer
      uTorrent
      G-Technology Assistant
    Internet Plug-ins:
      AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Cannot contact Adobe
      EPPEX Plugin: Version: 10.0 Support
      iLokClientHelper: Version: 3.6 - SDK 10.5 Support
      DivX Web Player: Version: 3.1.0.13 - SDK 10.5 Support
      AdobePDFViewer: Version: 11.0.07 - SDK 10.6 Support
      googletalkbrowserplugin: Version: 5.4.2.18903 Support
      RL Secure Plug-In Layer: Version: (null) - SDK 10.5 Support
      MagellanPlugIn: Version: 1.2 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
      GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 Support
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
      OVSHelper: Version: 1.1 Support
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 3.0.0.126   - SDK 10.8 Support
      o1dbrowserplugin: Version: 5.4.2.18903 Support
      WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.2 Support
      JavaAppletPlugin: Version: Java 7 Update 60 Check version
      WacomNetscape: Version: 2.1.0-1 - SDK 10.8 Support
    Safari Extensions:
      Conduit Search for Safari: Version: 1.0
      Searchme: Version: 1.3
    Audio Plug-ins:
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
      ConduitNPAPIPlugin: Version: 1.0 - SDK 10.6 Support
      UploadManager: Version: (null) - SDK 10.5 Support
      Google Earth Web Plug-in: Version: 7.1 Support
      ContentManager: Version: (null) - SDK 10.5 Support
      RocketEngine: Version: (null) - SDK 10.5 Support
    3rd Party Preference Panes:
      Flash Player  Support
      Flip4Mac WMV  Support
      Java  Support
      Line6AudioMIDI  Support
      Mbox Pro  Support
      YAMAHA-USBMIDIPatch  Support
    Time Machine:
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      Macintosh HD: Disk size: 930.71 GB Disk used: 875.71 GB
      Destinations:
      TIME MACHINE [Local] (Last used)
      Total size: 1
      Total number of backups: 3
      Oldest backup: 2013-10-21 19:02:42 +0000
      Last backup: 2014-03-19 11:19:09 +0000
      Size of backup disk: Too small
      Backup size 1  < (Disk used 875.71 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU:
          2% SGProtocolService
          1% DashboardClient
          1% WindowServer
          1% fontd
          0% Safari
    Top Processes by Memory:
      999 MB com.apple.SpeechRecognitionCore.speechrecognitiond
      459 MB DaisyDisk
      360 MB mds_stores
      180 MB Safari
      164 MB Mail
    Virtual Memory Information:
      8.79 GB Free RAM
      4.12 GB Active RAM
      1.46 GB Inactive RAM
      1.62 GB Wired RAM
      1.76 GB Page-ins
      9 MB Page-outs
    Like Show 0 Likes(0)

    Me again, THANKS FOR HE TALENS well it kind of worked, but I had one chance and have not seen it since but all the root, or iCloud, basically all keychains might have been rest to defaults, but if I try a password, it hakes and says incorrect, the apple id worked though?!?
    NIGHTMARE AND NEED THI FOR WORK, last backup (from apples time machine, not sure how old.
    Your or anyones HELP! is greatly appreciated!

  • IPod Apps no longer work, Music disappears, Fix?

    QUESTION : How to fix permanently the “iPod Touch Breakdown“?
    (seems identical to the iPhone “Breakdown“)
    Since I upgraded to 2.0.2, running iTunes 7.7.1 (11) on a MacBook Pro G4, I keep having big trouble with Apps, Music and Films.
    Here is what I call the “iPod Touch Breakdown“:
    - Apps won’t start : the iPod would go back to the home screen after a few seconds.
    - Music and Films disappear (My music consists essentially of personnal CDs).
    - (for me Photos are still there)
    - all original Apple Apps work OK
    This is a known problem, also occuring on the iPhone with many posts on the iPhone discussions forum (see “iPhone“/“Installing and Using iPhone Applications“/“iPhone Applications no longer work“. At the time I write this messge, this question has been viewed 16,080 times ( ) (*) and there have been 319 replies: probably a sad record for a single question, which means that THERE REALLY IS A BASIC PROBLEM.
    My iPod is a 8Gb purchased while staying in Pasadena, almost a year ago. I was extremely happy to use it more and more like a PDA (updates 2.0.1 and 2.0.2).
    There have been some fixes proposed on the discussions forum (iPhone) that I tried and I have tried myself a couple more. NONE of them could fix the problem permanently: all fixes have been working for a day or two, no more. Untill you download an App (even an update) and you get the “Breakdown“ again.
    As other users, I have noted a slowdown in anything I am doing (e.g. typing text) just before the Apps stop working and the music disappears. (see for instance Truth42 on iPhone Forum (Applications no longer work), Posted: Aug 25, 2008 10:57 AM)
    Fixes: typically you get to disinstall and then reinstall all your Apps. Each time, you lose all your Apps parameters (bad for data bases and notes).
    Two ways:
    see iPhone forum: Aveonz Posted: Aug 24, 2008 3:16 AM :
    1- sync using iTunes
    2- in iTunes/Store: deauthorize your account
    3- sync
    4- authorize
    5- sync (will re-load your Apps)
    6- sync (to backup you new configuation)
    (the whole process may take several hours; I have also done a reboot between 3 and 4)
    (ii) proposed by various people :
    1- deselect all applications
    2- sync
    3- disconnect your iPod and reboot it (pressing both buttons simultaneously for several seconds – see Apple site) (you keep you parameters, WiFi, etc)
    4- select the Apps you want back
    5- sync (will re-load your Apps)
    6- sync (to backup you new configuation)
    In the end you can use the Apps you have reloaded, but just for a few days (or hours)… until you cannot resist downloading a new App, or simply just download an App update. It won’t breakdown instantly after you do that, but it will very soon.
    I certainly would take any procedure to fix this definitely. However, the best choice is probably to use as few third party Apps as possible (none is better) and wait for 2.1. Hopefully Apple is working on this, and we’ll get a definite fix very soon. This actually makes a very bad press for the iPod Touch and iPhone.
    Sadly,
    because I think iPod Touch and iPhone are beautiful machines –but for how long? Competition is tough…
    Cheers
    (*) about this number 16,080, obviously not all of the viewers experienced the “Breakdown“, but most were just curious to know. Still, the good question is to know how many of us, using the iPhone and iPod Touch experience this bug (virus?) and why some have it and not others (and in which proportion?).

    Same issue here since updating to 2.0.2; Is there a way to back I wonder?
    So I plugged back in my iPod touch and,...
    0. make a note of all your music, movies, photos, apps selections to restore
    1. cancel connect attempt to iTunes store (little 'x' in iTunes toolbar)
    2. cancel attempts to sync or backup (little 'x' in iTunes toolbar)
    3. clicked <OPTION>[Restore] once selecting my iPod touch device
    4. navigate to <home>/Library/iTunes/iPod Software Udpates/
    5. pick the prior update: iPod1,12.0.1_5B108Restore
    6. then waited through iPod window status displays
    'Preparing iPod software for restore...'
    'Restoring iPod software...'
    'Verifying iPod Software...'
    7. OK the 'Your iPod has been restored to factory settings,...'
    8. Ssync process did NOT automatically being so I unplugged & plugged it
    (I did verify that 2.0.1 was loaded seeing the App Store)
    9. Pick 'Set up as a new iPod'; don't pick an earlier backup point
    (mostly 'cause I couldn't be sure which was a good failsafe).
    10. iTunes then begin setup of my [ahem] new iPod.
    STOP IT; it'll try and do restore everything. Then navigate the tabs for
    your iPod and re-select those things you want (music,photos,movies,apps,etc)
    So like any computer you need to keep proper backups.
    The apple s/w system updater appears to do just that automatically, thanks! Of course it would've been nice to have had the 2.0.2 version tested a bit more before its release.
    IMHO the host (mac) should have kept my prefs for the iPod rather than my resorting to handwritten notes but at least I'm back to normal. Consider when replacing an iPod how you'd want the replacement to be a mirror of its predecessor.
    Oh, skip future requests to update to 2.0.2 until Apple can get his sorted out.
    HTH
    /los "I was a teenage net-random"

  • TS3771 My iTunes U no longer works since the update, an error message pops up saying that "This movie requires QuickTime, which is not supported by this version of iTunes." I followed the tutorial that suggests to change to from 64 to 32 bit and it didn't

    iTunes U video files no longer work on my computer since i update to Mavericks. The following message appears on the screen "This movie requires QuickTime, which is not supported by this version of iTunes." I followed a tutorial that suggested to go to Applications/iTunes/Get Info and change to 32 bit. Now my iTunes does not open at all, it says it requires 64 bit. I am a bit confused and disappointed. What should I do to get it fixed? Buy a new MacBook?

    Marcello, I am having the same problem.  When following the advice of many in the community to start iTunes in 32-bit mode, I get the following error after I have done so:
    I am running 10.9.2 on a mac mini. 
    I am hoping this will be fixed or at least a solid answer could be given that iTunes will no longer support certain types of media going foward.

  • Itunes no longer works on ipad on version 6 software

    My I tunes 10.6.1 no longer works with my upgraded software ipad 2 on version 6 stating my mac needs a higher operating system (currently on 10.5.8) to then upgrade I tunes 10.7. I can no longer use my ipad with itunes simply because I have an older mac operating system. An upgrade on the mac operating system is a lot of money . There is no roll back of ipad software from 6 to the original to cure this

    The upgrade to the Mac is around $30.00 if it is still available. You need to upgrade to Snow Leopard 10.6.8 - I think that's the latest SL version.
    I copied this from another discussion.
    Apple said that customers can still purchase a copy of Snow Leopard or Lion from its online store's telesales agents: 1-800-MY-APPLE (1-800-692-7753) or Customer Service and Sales Support at 1-800-676-2775. For Lion you'll get a redemptions code via e-mail and need to DL from the Mac Apple Store (requires SL 10.6.6+).
    Here is the discussion.
    https://discussions.apple.com/thread/4140356?start=15&tstart=0

  • Itunes no longer works after latest update

    I updated the latest version of iTunes. Now, it no longer works. Then my computer told me to update the latest version, so tried again, but again it didn' work. So in uninstalled iTunes and tried to install it again. It didn't work. I even tried with an older update after I had deleted the latest one and it didn't work. Now my computer tells me that some file or stuff was missing.
    Thanks for any help!

    ...now my computer updated it again. It opened, tried to collect information about the copyright, the an error message popped up saying that iTunes does not work correctly due to any mistake...
    Please help me!

  • ITunes no longer works on my Windows VISTA system.  Get error msg saying C runtime library incorrectly... Error 7, Windows error 1114..

    iTunes no longer works on my Windows VISTA system.  Get error msg saying an application is attempting to access C runtime library incorrectly... Error 7, Windows error 1114.  Same msg, or one that says unable to install, when trying to update or reinstall iTunes.  iTunes worked well up until about a month ago when this error msg starting appearing.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • The computer my iTunes account was locked to no longer works

    As the title says my computer that has all my tv shows and that on no longer works.
    I was reading when I bought the tv series and that, that its locked to one computer only. So what happens now that its broken?
    Do I have to rebuy everything when I get a new computer or am I able to re download once I get a new computer?
    Is there anything I can do?
    thanks
    penguincat

    Content is not locked to a single computer. You do, however, get only one download per purchase for any content other than apps and iBooks. So unless you have a backup, as iTunes itself advises you to make, or have those shows on an iOS device, you may indeed have to repurchase them.
    If you lack a backup and an iOS device with those shows, your best hope is that the hard drive in your old computer still works. If it does, you can mount it to your new computer, either internally if there's room for another drive or in an external case. You should then be able to drag the TV shows and any other content from the old hard drive into the iTunes window in your new computer. Once there, all you should have to do is authorize the computer to your iTunes Store account (Store menu in iTunes -> Authorize This Computer).
    Regards.
    Regards.

  • ITunes 12 - "Keep iTunes Media Folder Organised" feature no longer works

    Hi everyone, I was wondering if you could help me with an issue I've been having.
    Since updating to iTunes 12, the 'Keep iTunes Media Folder Organised' feature no longer works. When I add media to the library, iTunes doesn't copy it to a destination within my media library. It only works if I turn the feature off, and then back on again.
    Thanks in advance for any help.

    I don't use the feature myself, but it works properly in a test library for me.
    It could possibly be a permissions issue. Different processes in iTunes seem to make use of either the system or the user account for file actions and it is just possible that which has been used in that case has changed. See Repair security permissions for iTunes for Windows for details.
    tt2

  • ITunes 10.1 - Shuffle function no longer works correctly

    The shuffle function on playlists no longer works correctly since the most recent iTunes update.
    It will periodically stop playing without playing the entire playlist. It is a real hassle and kills the mood as you have to go back to the Mac and click play again. Please fix this issue as it is a very basic function.

    Thanks for letting us know, however, this is a user to user forum and not an "Apple Run" forum.
    You need to report to Apple via:
    http://www.apple.com/feedback/

Maybe you are looking for

  • How to provision an account on OUD LDAP using LDAP generic connector?

    I'm almost a newbie regarding OIM (R2 11.1.2.0.0) and I'm trying to learn it, so I think this is definitely a newbie question (please forgive me). At present I'm trying to provision an user from OIM to an Application Instance of Oracle Unified Direct

  • Adding Spatial to Existing Database

    I am looking for information detailing how to use/implement the Spatial search to an existing database. Most of the information I have already read does not indicate how to set up pre-existing tables. We are using another company's database design wi

  • Scroll bar in tab canvas

    hi guys iam developing a custom form using forms 6i this is my prob i have a content canvas and a tab canvas in my window i have abt 20 col in my one of tab and i want to use a scroll bar in one tab how can i get it can any one help me urgent ravi

  • HT5312 Forgot my answers

    Please help me I've lost my questions and the answers I want to Achtri some games I hope to help me recover my questions and answers sent to the Registrar to have Emily <E-mail Edited by Host>

  • Cisco SPA112 provisioning problem: FXS_Port_Power_Limit

    Hi, We have problems provisioning specific parameter in a SPA112: FXS_Port_Power_Limit. Here is a part of our XML: <Force_G729a_Code ua="na">*02729</Force_G729a_Code> <FXS_Port_Power_Limit ua="na">4</FXS_Port_Power_Limit> <FXS_Port_Input_Gain ua="na"