MP3 created with iTunes don't work properly

Hi, I have a strange problem. If I import a CD using my MAC and iTunes, creating MP3 files, then copy to my USB stick to play in my car, it only plays the 1st song, then skips through all others and plays the 1st song of the next album. If I do the same import of a CD on my Vista PC using iTunes (same version) and create MP3 files, copy to the same USB stick and play in my car, all is ok.
Can anyone help to explain this? It's very annoying considering I have 1000s of MP3 created on my MAC.
regards
G.

Start here:
iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows
The exact wording of the error message wold have been useful.

Similar Messages

  • Jtree Node with JComboBox don't work properly in Windows Vista!

    Hi people!
    i create a Jtree component and create a special node, that is a <strong>JPanel with a JLabel + JCombobox</strong>!
    Only the direct childs of root have this special node.
    A can put this work properly in Windows XP, like the picture:
    [XP Image|http://feupload.fe.up.pt/get/jcgd0rY5p9PoFPG]
    And in Windows Vista the same code appear like this:
    [Vista Image|http://feupload.fe.up.pt/get/Ylajl6hlCUFc0xe]
    <strong>Hence, in Vista something append behind the JLabel and show something wyerd!</strong>
    I can't understant this and if someone can help i appreciate!
    The TreeNodeRender class is :
    public class MetaDataTreeNodeRenderer implements TreeCellRenderer {
        private JLabel tip = new JLabel();
        private JPanel panel = new JPanel();   
        private JComboBox dataMartsRenderer = new JComboBox();
        private DefaultTreeCellRenderer nonEditableNodeRenderer = new DefaultTreeCellRenderer();
        private HashMap<String, String> valueSaver = null;
        public MetaDataTreeNodeRenderer(Component treeContainer, HashMap<String, String> valueSaver, String[] valuesComboBox) {
            this.valueSaver = valueSaver;
            int width = (int)treeContainer.getPreferredSize().getWidth();
            panel.setLayout(new GridBagLayout());
            java.awt.GridBagConstraints gridBagConstraints = new java.awt.GridBagConstraints();
            panel.setMaximumSize(new Dimension(width, 15));
            panel.setBackground(new Color(255, 255, 255, 0));
            dataMartsRenderer = new JComboBox(valuesComboBox);
            gridBagConstraints.gridx = 0;
            gridBagConstraints.gridy = 0;
            panel.add(tip, gridBagConstraints);
            gridBagConstraints.gridx = 1;
            panel.add(dataMartsRenderer, gridBagConstraints);
            tip.setLabelFor(dataMartsRenderer);       
        public JComboBox getEditableNodeRenderer() {
            return dataMartsRenderer;
        public String getTipText(){
            return this.tip.getText();
        public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected,
                boolean expanded, boolean leaf, int row, boolean hasFocus) {
            Component returnValue = null;
            DefaultMutableTreeNode currentNode = (DefaultMutableTreeNode)value;
            DefaultMutableTreeNode currentNodeFather = (DefaultMutableTreeNode)currentNode.getParent();
            if(currentNodeFather != null && currentNodeFather.isRoot()){//se o meu pai &eacute; a raiz, ent&atilde;o eu sou um datamart
                                                                        //se sou um datamart, ent&atilde;o sou edit&aacute;vel.
                String dataMart = (String)currentNode.getUserObject();
                String dataMartValue = this.valueSaver.get(dataMart);
                tip.setText(dataMart);
                if(dataMartValue != null) {
                    dataMartsRenderer.setSelectedItem(dataMartValue);
                returnValue = panel;
            }else{//sou um n&oacute; n&atilde;o edit&aacute;vel.
                 returnValue = nonEditableNodeRenderer.getTreeCellRendererComponent(tree,
                         value, selected, expanded, leaf, row, hasFocus);
            return returnValue;
    }The TreeNodeEditor class is :
    public class MetaDataTreeNodeEditor extends AbstractCellEditor implements TreeCellEditor {
        MetaDataTreeNodeRenderer renderer = null;
        JTree tree;
        //Where i save all JComboBox values ( name of label, selected item in combobox), for all combbox
        HashMap<String, String> valueSaver = null;
        public MetaDataTreeNodeEditor(JTree tree, Component treeContainer, HashMap<String, String> valueSaver, String[] valuesComboBox) {
            this.tree = tree;
            this.renderer = new MetaDataTreeNodeRenderer(treeContainer, valueSaver, valuesComboBox);
            this.valueSaver = valueSaver;
        public Object getCellEditorValue() {
            JComboBox comboBox = renderer.getEditableNodeRenderer();
            String dataMart = renderer.getTipText();
            this.valueSaver.put(dataMart, (String)comboBox.getSelectedItem() );
            return dataMart;
        @Override
        public boolean isCellEditable(EventObject event) {
            boolean returnValue = false;
            if (event instanceof MouseEvent) {
                MouseEvent mouseEvent = (MouseEvent) event;
                if (mouseEvent.getClickCount() > 1) {
                    TreePath path = tree.getPathForLocation(mouseEvent.getX(), mouseEvent.getY());
                    if (path != null) {
                        Object node = path.getLastPathComponent();
                        if ((node != null) && (node instanceof DefaultMutableTreeNode)) {
                            DefaultMutableTreeNode treeNode = (DefaultMutableTreeNode) node;
                            if ( treeNode.getParent() != null && ((DefaultMutableTreeNode) treeNode.getParent()).isRoot()) {
                                returnValue = true;
                            } else {
                                returnValue = false;
            return returnValue;
        public Component getTreeCellEditorComponent(final JTree tree, final Object value, boolean selected,
                boolean expanded, boolean leaf, int row) {
            Component editor = renderer.getTreeCellRendererComponent(tree, value, true, expanded, leaf,
                    row, true);
            ActionListener actionListener = new ActionListener(){
                public void actionPerformed(ActionEvent e) {
                    if (stopCellEditing()) {
                        fireEditingStopped();
            if (editor instanceof JPanel) {
                Object component = ((JPanel) editor).getComponent(1);
                JComboBox field = (JComboBox) component;
                field.addActionListener(actionListener);
            return editor;
        }

    Hi people!
    i create a Jtree component and create a special node, that is a <strong>JPanel with a JLabel + JCombobox</strong>!
    Only the direct childs of root have this special node.
    A can put this work properly in Windows XP, like the picture:
    [XP Image|http://feupload.fe.up.pt/get/jcgd0rY5p9PoFPG]
    And in Windows Vista the same code appear like this:
    [Vista Image|http://feupload.fe.up.pt/get/Ylajl6hlCUFc0xe]
    <strong>Hence, in Vista something append behind the JLabel and show something wyerd!</strong>
    I can't understant this and if someone can help i appreciate!
    The TreeNodeRender class is :
    public class MetaDataTreeNodeRenderer implements TreeCellRenderer {
        private JLabel tip = new JLabel();
        private JPanel panel = new JPanel();   
        private JComboBox dataMartsRenderer = new JComboBox();
        private DefaultTreeCellRenderer nonEditableNodeRenderer = new DefaultTreeCellRenderer();
        private HashMap<String, String> valueSaver = null;
        public MetaDataTreeNodeRenderer(Component treeContainer, HashMap<String, String> valueSaver, String[] valuesComboBox) {
            this.valueSaver = valueSaver;
            int width = (int)treeContainer.getPreferredSize().getWidth();
            panel.setLayout(new GridBagLayout());
            java.awt.GridBagConstraints gridBagConstraints = new java.awt.GridBagConstraints();
            panel.setMaximumSize(new Dimension(width, 15));
            panel.setBackground(new Color(255, 255, 255, 0));
            dataMartsRenderer = new JComboBox(valuesComboBox);
            gridBagConstraints.gridx = 0;
            gridBagConstraints.gridy = 0;
            panel.add(tip, gridBagConstraints);
            gridBagConstraints.gridx = 1;
            panel.add(dataMartsRenderer, gridBagConstraints);
            tip.setLabelFor(dataMartsRenderer);       
        public JComboBox getEditableNodeRenderer() {
            return dataMartsRenderer;
        public String getTipText(){
            return this.tip.getText();
        public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected,
                boolean expanded, boolean leaf, int row, boolean hasFocus) {
            Component returnValue = null;
            DefaultMutableTreeNode currentNode = (DefaultMutableTreeNode)value;
            DefaultMutableTreeNode currentNodeFather = (DefaultMutableTreeNode)currentNode.getParent();
            if(currentNodeFather != null && currentNodeFather.isRoot()){//se o meu pai &eacute; a raiz, ent&atilde;o eu sou um datamart
                                                                        //se sou um datamart, ent&atilde;o sou edit&aacute;vel.
                String dataMart = (String)currentNode.getUserObject();
                String dataMartValue = this.valueSaver.get(dataMart);
                tip.setText(dataMart);
                if(dataMartValue != null) {
                    dataMartsRenderer.setSelectedItem(dataMartValue);
                returnValue = panel;
            }else{//sou um n&oacute; n&atilde;o edit&aacute;vel.
                 returnValue = nonEditableNodeRenderer.getTreeCellRendererComponent(tree,
                         value, selected, expanded, leaf, row, hasFocus);
            return returnValue;
    }The TreeNodeEditor class is :
    public class MetaDataTreeNodeEditor extends AbstractCellEditor implements TreeCellEditor {
        MetaDataTreeNodeRenderer renderer = null;
        JTree tree;
        //Where i save all JComboBox values ( name of label, selected item in combobox), for all combbox
        HashMap<String, String> valueSaver = null;
        public MetaDataTreeNodeEditor(JTree tree, Component treeContainer, HashMap<String, String> valueSaver, String[] valuesComboBox) {
            this.tree = tree;
            this.renderer = new MetaDataTreeNodeRenderer(treeContainer, valueSaver, valuesComboBox);
            this.valueSaver = valueSaver;
        public Object getCellEditorValue() {
            JComboBox comboBox = renderer.getEditableNodeRenderer();
            String dataMart = renderer.getTipText();
            this.valueSaver.put(dataMart, (String)comboBox.getSelectedItem() );
            return dataMart;
        @Override
        public boolean isCellEditable(EventObject event) {
            boolean returnValue = false;
            if (event instanceof MouseEvent) {
                MouseEvent mouseEvent = (MouseEvent) event;
                if (mouseEvent.getClickCount() > 1) {
                    TreePath path = tree.getPathForLocation(mouseEvent.getX(), mouseEvent.getY());
                    if (path != null) {
                        Object node = path.getLastPathComponent();
                        if ((node != null) && (node instanceof DefaultMutableTreeNode)) {
                            DefaultMutableTreeNode treeNode = (DefaultMutableTreeNode) node;
                            if ( treeNode.getParent() != null && ((DefaultMutableTreeNode) treeNode.getParent()).isRoot()) {
                                returnValue = true;
                            } else {
                                returnValue = false;
            return returnValue;
        public Component getTreeCellEditorComponent(final JTree tree, final Object value, boolean selected,
                boolean expanded, boolean leaf, int row) {
            Component editor = renderer.getTreeCellRendererComponent(tree, value, true, expanded, leaf,
                    row, true);
            ActionListener actionListener = new ActionListener(){
                public void actionPerformed(ActionEvent e) {
                    if (stopCellEditing()) {
                        fireEditingStopped();
            if (editor instanceof JPanel) {
                Object component = ((JPanel) editor).getComponent(1);
                JComboBox field = (JComboBox) component;
                field.addActionListener(actionListener);
            return editor;
        }

  • TS3297 What do I do if music files purchased/downloaded for the iTunes store don't work properly?

    What do I do if music files purchased/downloaded for the iTunes store don't work properly?

    Buddhabeat...clicking on the "Report a Problem" button next to the song(s) in question, should open a drop-down list menu, that allows you to select the specific issue/area of concern that you are experiecing (or you can select a generic "My problem is not on the list" (or something to that effect). Underneath this drop-down menu box, there should be another message box where you can describe  the issue/problem your having. Below this message box will be a "Submit" button...clicking on that will send your message to the Apple iTunes Store Customer Support Centre (you will see a confirmation message that your message has been sent), as well as receive an email notification from the Support Centre confirming your message has been received, a case number, and that you will receive an email response pertaining to the issue/problem you're having, from the Support Centre asap (usually within 24 hours). That's how it worked for me, anyhow.

  • Google maps don't work properly with ADF

    Hi!
    I have tried to integrate Google maps with ADF http://blogs.oracle.com/middleware/2010/06/integrating_google_maps_with_adf.html. This tutorial works good, but then I insert the same code in real ADF application Google maps don’t work properly, there are problems with zoom buttons, map doesn’t display right region but shows another one (does it with offset) etc.
    Can be this issues connected with ADF Security? Or there are some other things in my project which doesn’t allow JavaScript to work correctly?

    andrejs,
    I just tried the tutorial (works fine) and the tutorial with ADF security (works fine). It seems to be something more specific to your application than anything else.
    John

  • Since I installed the new OS X Lion, the iCal syncing through iTunes is not working properly.

    Since I installed the new OS X Lion, the iCal syncing through iTunes is not working properly.
    When I sync my MacBook Pro with my iPhone and iPad, the events set in both devices (iPhone & iPad) are not transfered to the iCal on my labtop. Events created in both devices are transfered and copied betwen them when I sync them with the iTunes app (through the MacBook Pro) but they are not trasfered/copied into the labtop (iCal). The events created in the iCal (on my MacBook) are tranfered to the devices as two events on same hour. One, with the description created on the iCal, and the other as a New Event (no description). This is happening since I installed the new OS X Lion last week.
    I file a report and talked with an Apple Support Representative, but they could not help me. They have not receive any other reports on this matter. Do someone has confronted this issue. I need to find out how to solve this problem.
    Regards,
    JAD

    Hi Sydness,
    Thank you very much for your help. It just worked fine. I have 4 macs in my company for 25 years (one is updated each year), and it is the first time I could not solve a problem for weeks. It gave me the opportunity to join this great community.
    Charles
    Sydness wrote:
    I reset my SyncServices and the calendar sync worked perfectly after that.
    I followed the instructions found here:
    http://support.apple.com/kb/TS1627?viewlocale=en_US
    Mac OS 10.7.1 - MacBook

  • ID3v2 tags don't work properly on zen microph

    I e-mailed tech support on this one, but it seemed like they spent 2 seconds reading it and then sending a template reply.
    I have a lot of older mp3 files which I only used ID3V2 tags on, because that was the field with most info when right-clicking files in winamp.
    When I try looking for a file which only has id3v2 tags, things don't work properly. Let's say I have this info in the id3v2 tag: "Mr.Artist - Mr. Track - Mr.Album".
    Now let's turn the player on. Artists: "Mr.Artist" shows. When clicking on "Mr.Artist", "Mr.Album" shows. BUT, when clicking on the album, where the hell is "Mr. Track"? I only see blank space! I have to click "all tracks" and scroll my way to "mr. track" to find it.
    This is a highly unneccesary hassle. I've updated the firmware, but that didn't do anything at all. I download a lot of unsigned, free music, which only has id3v2 information in it.
    Id3v tags on the other hand, work just like they should.
    Please help me out on this one. It would be greatly apreciated.Message Edited by Rognalf on 06-09-20070:57 AM
    Message Edited by Rognalf on 06-09-2007:00 AM

    From my own experience it seems that ID3v2 tags seem to cause problems like this with most mp3 players. I'm guessing because it's newer. I've heard that ID3v2 is more flexible but ID3v is more compatible.

  • Edge animations don't work properly in DPS.

    I've recently update CC to the latest 2014 version and since then Edge animations don't work properly in DPS (struggle to load and play). Can anyone help?

    Hi Bob,
    What real details do you need? I create a digital magazine using DPS with the occasional Edge oam file inserted to lift a couple of the openers. However recently, they either stutter on loading, don't load or crash the viewer/ipad. I test them in Content viewer.
    Thanks
    Mat

  • I have upgraded My leopard to Mountain lion 10.7 via snow leapeard. Now My itunes is not working properly nor I able to install google chrome successfully. Please help me in this occasion. I am facing following messages.

    Hello Team,
    I have upgraded My leopard to Mountain lion 10.7 via snow leapeard. Now My itunes is not working properly nor I able to install google chrome successfully. Please help me in this occasion.
    Also, I am not being able to upgrade Mac OS X 10.7 to 10.7.4 or letest for lion.
    I am facing following messages when I open itunes ( I down loaded and install new for 10.7)
    Process:         iTunes [463]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         10.7 (10.7)
    Build Info:      iTunes-10702101~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [273]
    Date/Time:       2012-10-22 23:33:07.226 +0200
    OS Version:      Mac OS X 10.7 (11A390)
    Report Version:  8
    Interval Since Last Report:          4918 sec
    Crashes Since Last Report:           2
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      3DE933E2-7A48-4840-91F4-7DC466ED9C26
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    @executable_path/../Frameworks/iPodUpdater.framework/Versions/A/iPodUpdater
    Dyld Error Message:
      Library not loaded: @executable_path/../Frameworks/iPodUpdater.framework/Versions/A/iPodUpdater
      Referenced from: /Applications/iTunes.app/Contents/MacOS/iTunes
      Reason: unsafe use of @executable_path in /Applications/iTunes.app/Contents/MacOS/iTunes with restricted binary
    Binary Images:
           0x102a96000 -        0x103c36fff  com.apple.iTunes (10.7 - 10.7) <0CC47E12-134F-A9E1-7E4F-3EAC797C3050> /Applications/iTunes.app/Contents/MacOS/iTunes
        0x7fff62696000 -     0x7fff626cb1ff  dyld (195 - ???) <71093406-21CF-3DBE-A001-802259ED5300> /usr/lib/dyld
    Model: MacBook4,1, BootROM MB41.00C1.B00, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB, SMC 1.31f1
    Graphics: Intel GMA X3100, GMA X3100, Built-In, 144 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz, 0xAD00000000000000, 0x48594D503131325336344350362D59352020
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz, 0xAD00000000000000, 0x48594D503131325336344350362D59352020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.131.36.5)
    Bluetooth: Version 2.5.0b13, 2 service, 12 devices, 2 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHY2160BH, 160.04 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-867
    USB Device: Built-in iSight, apple_vendor_id, 0x8501, 0xfd400000 / 2
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52f, 0x1d100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8205, 0x1a100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x022a, 0x5d200000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x5d100000 / 2
    And Google chrome just keep loading the page for hours and nothing is appear on its browser. But safari and firefox working absolutly fine.
    In addition, I have reboot computer as well but it never worked. Please help me in this occasion.
    Eagerly waiting for your response on this issue.
    Best Regards,

    You need to upgrade your copy of MS Office. You're using a version that is 8 years old (at least). You can buy Office 2011, which will work. You could also get a copy of Pages from the App Store, which is cheaper and will open Word files (though not perfectly). Or you could get a free Office clone, like OpenOffice or LibreOffice.

  • Desktop SMS and Windows Mail don't work properly together

    Hi
    thought I would post there here as been having some issues with my Windows Mail but my desktop computer doesn't suffer same issues and on a Vista forum where I posted my problem a couple of very helpful told me who to try solving the issues.
    One of them suddenly realised I'd said my laptop was a Toshiba and apparently the Desktop SMS and Windows Mail just don't work properly together so the person suggested unless I use it to uninstall it apparently amongst the technically trained its known that these two programs don't like each other and would explain why my desktop doesn't have the issue but laptop does.
    After resetting the Windows Mail (tutorial on a vista site http://www.vistax64.com/tutorials/) Touch wood don't be put off by vistax64 as site does both 32 and 64 and followed Brink's excellent resetting Windows Mail (didn't restore any mail) and then uninstalled Desktop SMS and touch wood no more mail issues as has been giving me problems virtually daily with marking draft emails as read/sent.
    So had to click on forward then delete those bits and finish email to send it and touch wood since doing these two things as soon as send an email to draft or outbox get the number of emails in the brackets whereas before this wouldn't happen unless I closed the program then reopened it.
    Hoping these solutions have fixed my problem and wanted to share it with anybody else who wants to read this thread and would recommend the Vista 64 site as they're all really helpful over there and speak in non technical terms for those of us not technically trained.
    Debbie

    I have marked this as answered as it was more a post to help others who may have experienced the same problem I did and didn't get a reply or just didn't know that this program could be the reason their Windows Mail has issues that can't seem to be resolved any other way apart from ignore them and hope they don't get worse.

  • ITunes has stopped working properly.

    iTunes has stopped working properly.

    Ok.
    3 days ago, for no apparent reason my itunes stopped working.
    This only happens after it has "synced" with the itunes store and prepares to upload remaining songs.
    NOTHING has changed since then other than downloading latest itunes (11.1...whatever) which i was recommended to do after it stopped working.
    I am using windows 7
    Latest itunes version (for windows)
    I have thousand of songs in icloud, which were uploading fine until 3 days ago.
    Windows message reads something like: Itunes has stopped working properly, windows will now close the programme blah blah balh.
    Bit annoyed.  Tried copying the dll file from QT that somebody mentioned earlier. Also tried "repairing" programme and re-downloading update.
    Not working still!!!! HELP PLEASE!!!

  • Files not created with iTunes do not play from remote iTunes library

    I hve ripped a large part of my CD collection into music files into FLAC format. I have since converted my music files from FLAC into Apple Lossless Audio Codec (ALAC) format and imprted them into iTunes.
    The files play with no problem on iTunes if they are on a local iTunes library. Furthermore, all metadata such as tags and album cover art information are properly displayed in iTunes. This is true whether I'm running iTunes on a Windows XP box or a Mac OS X box. I have since imported many other CDs into my iTunes library using iTunes to encode into ALAC.
    If I share the iTunes library on my Windows XP machine to iTunes running on a Mac OS X box or to an Apple TV, I can:
    *play songs that were imported directly using iTunes
    *not play any songs that were not created with iTunes
    This behavior is true whether I'm trying to play them from either a Mac or from an Apple TV.
    If I copy the *.m4a files to the Mac and import them to the iTunes library I have no problems playing them on the Mac. I have not tried sharing the iTunes library on the Mac and tried accessing the files from the Apple TV or the Windows PC.
    Any thoughts?

    Fix: optimize m4a files moving the meta data to the beginning, whilst optionally creating a hint track (used for streaming m4a over Apple Airtunes).
    see: http://www.dbpoweramp.com/codec-central-m4a.htm

  • I just started having an issue with my bank website working properly. They have told me it is because of the last safari upgrade. Is this being resolved?

    I just started having an issue with my bank website working properly. They have told me it is because of the last safari upgrade. Is this being resolved?

    You might want to consider "voting with your feet" and taking your business to another bank.  When they tell you the upgrade is the problem, it is really their problem and not yours.  If you don't want to do that, the suggestion that you try another browser is absolutely correct.

  • The Proximity sensor don't work properly of ios4

    hello! ive just update to ios 4 on my 3gs, and the problem is that the Proximity sensor don't work properly, when I put the iPhone near my ear it turns off the screen, but when I move it back from my ear it doesn't turn on...
    i tried to restore, and at first the problem was gone, and now it's back...
    is it a bug? I'm pretty sure my sensors are fine..
    tnx!

    I was having the same issue with my new iphone 4 with screen going dark when I lowered it during a call & not having access to the call or controls of the phone. I discovered the problem was the 3G case I was using on my iphone 4 (it happens to fit pretty well). When I removed the case the proximity sensor now seems to function properly. The 3G case must have been interfering with the sensor. I guess I'll be getting a new case. Hope this helps.

  • Cookies Don't Work Properly

    OK, I've looked through this Forum carefully and tried everything.... Even though cookies for certain web sites (NYTimes, WatchGeeks) appear in Safari Preferenes they don't work, Why?
    My settings are as follows: Block Cookies from Third Parties, etc.; Prompt from website one time only. The NYTimes cookie indicates Cache, Cookies & Local Storage. NYT cooke indicates Cookie. But every time I go from one page to another on their site, the sign-in screen re-appears. I'm using Last Pass to sign me in and I'm good until i go to another page. Then the same thing happens. With WatchGeeks, I'm prompted to sign it every time I return to the site...same problem.
    I have deleted all cookies and started over, but that doesn't solve the problerm. Safari recognizes and stores the cookies again, but they don't work properly.This all started when I started to use  'Cookie" a cookie management program. But once this started, I uninstalled "Cookie'" and removed all traces of it, to no avail.
    What's wrong? Can I do something in Time Machine to get me back on track? I'm open to any and all suggestions. Thanks!

    You can check on the <b>about:config</b> page if the javascript.enabled pref is set to true.
    *http://kb.mozillazine.org/about:config
    You can try basic steps like these in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and the cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • My iTunes don´t works

    Hi, i`have a problem with my iTunes, from one month it isn´t works, when I try to eject it, appaers one sing that say: "iTunes can´t works cause you haven´t enought memory", but i have one iMac G4 with 768 RAM memory, and i have 30 Gb´s free in my memory disk. Also i have all my iTunes flders in my external hard drive. So i don´t understant why my iTunes don´t works. I tried to reisntall, download the last version and to repair permissions. Can tou help me?

    Maybe the 'Using iTunes for Mac' forum was a better place to ask your question.
    I have no direct solution for your problem, but using 'Search Discussions', I found a few threads about the same problem:
    http://discussions.apple.com/thread.jspa?messageID=788638&#788638
    http://discussions.apple.com/thread.jspa?messageID=797030&#797030
    http://discussions.apple.com/thread.jspa?messageID=790109&#790109
    http://discussions.apple.com/thread.jspa?messageID=789750&#789750
    Some people reported their problems were solved by re-installing.
    Try this:
    If you have iTunes related Widgeds, turn them off.
    Delete the preference file 'com.apple.iTunes.plist' from ~/Users/yourusername/Library/Preferences
    Move the 'iTunes Library' file (in ~/Users/yourusername/Music/iTunes) to the desktop and try to re-install iTunes.
    If you can run iTunes, put the 'iTunes Library' back to where it came from (replace the newer one) and change your 'iTunes Music folder location' to the location on your external disk.
    Hope this helps.
    M

Maybe you are looking for

  • ICal quits immediately upon launch

    My iCal crashes ("quits unexpectedly") shortly after it launches. An example problem report is appended below. If I switch to another user, iCal works fine. I can even take the *.ics files from my main (crashing) user arrount and open them in iCal un

  • Time stamp stamped BDC

    Hi SAP Gurus, For my inbound BDC program I want to receive the file with date so the next time my program runs it should pick the file with the next date( it should pick it automaticall by default). can any one give me the code. like xyz20070925     

  • Socket Thingy

    Hello everyone I've been having some real difficulties with my socket... The problem is the <policy-file-request/> the flash player sends.. is there any way to tell it not to ask for a policy file? what's it for anyway?.. so, here's what happens. ser

  • Sending of password did not succeed. Mail server m...

    I am sick to death of having to reset my password on a daily basis, sometimes twice a day. I have wasted hours of my time talking to tech support, All they want to do is guide me through resetting my password, I know how to do that, after all I have

  • Oracle Java Compiler 11g - JVM ERROR

    Hi Jdev Team, I have an issue to report, Sometimes when run a project and navigate through the pages, i get the following error message: Oracle Java Compiler 11g Unable to create an instance of the Java Virtual Machine Located at path: H:\jdevstudio1