Zen X-Fi 2----PLEASE HELP STUCK ON ZEN SCREEN

my player is stuck on the ZEN screen and I cant do anything----any suggestions

try resetting it
Push the little button on the lower side of the player with something pointy like the plug of the headphones.
picture: http://media.generationmp3.com/lebel...2/DSCF7769.JPG

Similar Messages

  • Please HELP, Stuck on grey screen with Old Apple Logo in it

    Hi , my computer froze today and when I tried to reboot the hard drive starts but stays on a grey screen with a small folder in the middle with an Apple logo in it.
    What should I do, all suggestions welcome!

    Hi, and welcome to Apple Discussions.
    Here are links to a couple of articles on recovering from the flashing question mark folder:
    http://docs.info.apple.com/article.html?artnum=58042
    http://www.bombich.com/mactips/openfirmware.html
    I hope something there helps.

  • Windows 7 Screen Resolution not changing at all when I try to change settings. I ve lost my ToolBar on internet for settings ( deletion of cache) Please help me to reset screen.

    Windows 7 Screen Resolution not changing at all when I try to change settings. I ve lost my ToolBar on internet for settings ( deletion of cache) Please help me to reset screen. The screen seems to have slipped or moved to the right. Only icons on left of
    screen showing. I Need to regain The right side of the scree
    I have tried everything I know to sort this out. Thankyou you in advance. Katy Nanna x

    Hi,
    When you set your monitor to a screen resolution that it won't support, the screen will go black for a few seconds while the monitor reverts back to the original resolution.
    Regarding screen resolution, we may follow the below two articles to change it:
    Change your screen resolution
    Getting the best display on your monitor
    Follow the steps below:
    1. Open Screen Resolution by clicking the Start button, clicking
    Control Panel, and then, under Appearance and Personalization, clicking Adjust screen resolution.
    2.Click the drop-down list next to Resolution. Check for the resolution marked (recommended). This is your LCD monitor's native resolution—usually the highest resolution your monitor can support.
    And if the monitor is LCD monitor, The monitor's  manufacturer or reseller should also be able to tell you the native resolution for your LCD monitor.  Or we may check the monitor's manual to adjust.
    Best regards
    Michael Shao
    TechNet Community Support

  • Please help stuck in recovery mode

    Hi can someone at apple please help me. I was updating my ipod to ios 8.3 when it was half way done i accidentally shut it of. Now my ipod is stuck in recovery mode. When i try updating it via itunes i tried to update it however it keeps saying that it will take over 500 hours and i also have a very good inter net connection and now i dont know what to do. someone please help me!!!!

    Placing your device into recovery (DFU-Device Firmware Upgrade) mode:
    Follow these steps to place your iOS device into recovery mode. If your iOS device is already in recovery mode, you can proceed immediately to step 6.
       1. Disconnect the USB cable from the iPhone, iPad, or iPod touch, but leave the
           other end of the cable connected to your computer's USB port.
       2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds
           until the red slider appears, then slide the slider. Wait for the device to turn off.
                  * If you cannot turn off the device using the slider, press and hold the
                    Sleep/Wake and Home buttons at the same time. When the device turns off,
                    release the Sleep/Wake and Home buttons.
      3. While pressing and holding the Home button, reconnect the USB cable to the
           device. The device should turn on. Note: If you see the battery charge warning,
           let the device charge for at least ten minutes to ensure that the battery has some
           charge, and then start with step 2 again.
      4. Continue holding the Home button until you see the "Connect to iTunes" screen.
           When this screen appears you can release the Home button:
      5. If necessary, open iTunes. You should see the following "recovery mode" alert:
      6. Use iTunes to restore the device.
    If you don't see the "Connect to iTunes" screen, try these steps again. If you see the "Connect to iTunes" screen but the device does not appear in iTunes, see this article and its related links.
    Note: When using recovery mode, you can only restore the device. All user content on the device will be erased, but if you had previously synced with iTunes on this computer, you can restore from a previous backup. See this article for more information.

  • Please help - Stuck with JTable???

    Hi everyone, i have had this problem now for ages and really wanna solve it - hope u can help!
    I have a Jtable and basically column 3 has a value in it, column 4 is editable and takes in a value that the user enters. I need to take the value from column 3 and multiply it by the number entered into column 4 to update column 5 with the result.
    I have looked over and over the API for this and saw working examples, however i am using my own table model class and finding it hard to adapt these examples to work with my code, below is my table model class and the method i have written to try undertake this piece of functionality, can anyone help me get this working - dukes!!
    class ResultSetTableModel extends AbstractTableModel {
    protected Vector columnHeaders;
    protected Vector tableData;
    protected Vector rowData;
    private Connection con;    
    private int column_count;
    int QTY_COLUMN = 4;
    private double value;
    private JTable table;
    public void fillTableModel (ResultSet result) throws SQLException {
         ResultSetMetaData rsmd = result.getMetaData();
         int count = rsmd.getColumnCount();
         columnHeaders = new Vector();
         tableData = new Vector ();
         for (int i = 1; i <= count; i++)
              columnHeaders.addElement(rsmd.getColumnName (i));
              //System.out.println(rsmd.getColumnName(i));
         columnHeaders.addElement("Qty");
         columnHeaders.addElement("Total");
         while (result.next())
              rowData = new Vector (count);
              int row = 0;
              for (int i = 1; i <= count ; i++)
                   rowData.addElement (result.getObject(i));          
              rowData.addElement("4");
              rowData.addElement("0.00");
              tableData.addElement (rowData);
         result.close();
         fireTableDataChanged();
    public int getColumnCount ()
         return columnHeaders.size();     
    public int getRowCount ()
         return tableData.size();          
    /*public Object getValueAt (int row, int column)
         Vector rowData = (Vector) (tableData.elementAt (row));   
         return rowData.elementAt (column);
    public Object getValueAt(int row, int col){  //This is the method i have written
         int sum = 0; 
         if(col == 5) {   
         try {     
              sum = Integer.parseInt((String)getValueAt(row, 3)) * Integer.parseInt((String)getValueAt(row,4));//Need to take a user input here instead of a value - i think!   
         catch (Exception e)    { //Sum above not working as column 5 displays the number 4 in each row     
              sum = 4;   
         return (new Double(sum)); 
         else  {   
              Vector rowData = (Vector) (tableData.elementAt (row));   
              return rowData.elementAt (col); 
    public boolean isCellEditable (int row, int column )
         return (column == QTY_COLUMN);
    public String getColumnName (int column)
         return (String) (columnHeaders.elementAt (column));
    public void emptyColumn(int column){   
         int rowCount = tableData.size();       
         for (int i = 0; i < rowCount; i++)    {       
              Vector rowData = (Vector)tableData.elementAt(i);               
              rowData.setElementAt("", column);   
         fireTableDataChanged();
    public void setValueAt(Object value, int row, int column) {
             ((Vector)tableData.elementAt(row)).setElementAt(value, column);
             fireTableCellUpdated(row, 5);
    }Can anyone please help and yes im desperate, he he
    Thanks in advance

    Here's something:import java.awt.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.table.*;
    public class Test extends JFrame {
        public Test () {
            getContentPane ().setLayout (new BorderLayout ());
            getContentPane ().add (new JTable (new TestModel ()));
            setDefaultCloseOperation (EXIT_ON_CLOSE);
            setTitle ("Test");
            pack ();
            setLocationRelativeTo (null);
            show ();
        public static void main (String[] parameters) {
            new Test ();
        private class TestModel extends AbstractTableModel {
            private java.util.List data;
            public TestModel () {
                data = new ArrayList ();
                data.add (new Pair (3, 4));
                data.add (new Pair (1, 7));
                data.add (new Pair (2, 9));
                data.add (new Pair (6, 5));
                data.add (new Pair (8, 0));
            public int getRowCount () {
                return data.size ();
            public int getColumnCount () {
                return 3;
            public Object getValueAt (int r, int c) {
                Pair pair = (Pair) data.get (r);
                int value;
                switch (c) {
                    case 0:
                        value = pair.a;
                        break;
                    case 1:
                        value = pair.b;
                        break;
                    default:
                        value = pair.a * pair.b;
                        break;
                return new Integer (value);
            public Class getColumnClass (int c) {
                return Integer.class;
            public boolean isCellEditable (int r, int c) {
                return c < 2;
            public void setValueAt (Object wrappedValue, int r, int c) {
                Pair pair = (Pair) data.get (r);
                int value = ((Integer) wrappedValue).intValue ();
                switch (c) {
                    case 0:
                        pair.a = value;
                        break;
                    case 1:
                        pair.b = value;
                        break;
                fireTableRowsUpdated (r, r);
            private class Pair {
                public int a;
                public int b;
                public Pair (int a, int b) {
                    this.a = a;
                    this.b = b;
    }Kind regards,
      Levi

  • PLEASE HELP, SOMEONE REMOTELY VIEWING/SCREEN SHARING MY MACBOOK?

    Hi - I urgently need help from anyone who knows about this issue - I am a very basic macbook user, and don't really know about all the different programmes etc. I believe someone ( the guy who sold me the macbook, who told me he was a mac repair person and programmer) has been hacking into the computer, using the remote access - there is a programmed called SCREEN SHARING but I cannot access it - and a bunch of other files such as odsagent etc - not sure if these indicate he is using the screen sharing/ remote access to my mac.
    The reason that I believe he is accessing the mac, is that he downloaded all the files, so would clearly have access to passwords etc, there were loads of his old files, that showed pictures of people saying " target", and old files showing he was studying comuter/ mac programming. The first time I went online all of a sudden the computer froze, and two green lights showed on the num lock key and the shift key I think, the two keys were frozen, and the keyboard basically wouldnt respond, but the activity continued on the screen. This has happened a number of times since then, usually just randomly the keyboard freezes, and if you wait a while it goes back to normal - the mouse works fine, then one day it keep sort of freezing/ getting stuck/ pausing for no reason - the next day its fine again. He put in a load of software, which he has obviously been able to get round the need of liscening numbers, as he did not provide me with them. one day I saw a name "macbook pro" suddenly appear, and that it was tryin to connect/ share or something - this has never happened to me before with my old mac- it was like another computer was connecting/ sharing with my computer without my permission - this was when I was online. This has not happened since.
    I am scared he is accessing the computer, because these things that happened, and because there is loads and loads of files and programmes, which sound suspicious, i dont know what they do, and I just have this dogey feeling about this guy, and the fact that there is screen viewing/ remote management files etc which I cant access, but I am not sure if they are being accessed.
    PLEASE HELP - I FEEL LIKE MY PRIVACY IS BEING INVADED - I was speaking to my family on Skype and the green lights came on/ it froze, I continued with the conversation, but later I felt like he might have been watching.
    If anyone can recommend an expert in the London area, that can check the mac to see there is nothing on there that is being used to remotely control/ screen share my mac, I would be very grateful - its just horrible using your computer, and always being worried someone is invading your privacy, and and downloading your files etc.
    Sorry if I sould paranoid, but I have a strong feeling something is not right here.
    Many thanks for your help in advance.

    Since you don't know much about computers, disconnect your internet (wireless or wired) to prevent future unwanted access. While it is smart to contact Apple Communities, this is a criminal matter and you should consider taking the matter to the police. People like this will not stop with you. You need to list the private data that may be stolen and take action (cancel credit cards, change passwords, bank accounts, phone numbers, whatever you have cause to be worried about). If you can afford it, buy a new hard drive, remove the old one, and install OS X from scratch. Give your old hard drive to the cops. Make sure you turn the Firewall on (click the Apple up on the toolbar top left > System Preferences > Security) and uncheck any "Sharing" options (System Prefernces > Sharing). This event you are experiencing is unfortunate, and rare, but with a pro-active attitude you will come through it fine - and wiser.
    EDIT
    dgambler is right in that by purchasing a Snow Leopard disk (presuming you don't already have one) and performing a fresh install (it is easy) is a sure way to "take back" the controls of your Mac. You will need to study online tutorials for "wiping the drive" rather than a simple install. But you should let the police look at the hard drive before you do that - they will be able to see exactly what this person did.
    usefull information:
    http://docs.info.apple.com/article.html?path=mac/10.4/en/mh294.html
    http://lowendmac.com/ed/rosen/mac-remote-control.html

  • PLEASE HELP!! Weird screen glitch in After Effects CS5.5?!? (Windows 7)

         I was editing some videos in the trial of After Effects CS5.5, and I went to render something in full screen (I've been using it for two weeks now, and i've rendered in full screen before) and suddenly a bunch of error messages started popping up,and After Effects closed out. Now every time I open After Effects, its like the screen zooms in: I can't see my taskbar or my tools for after effects, or anything on the edges at all. Production Premiere and everything else works fine, but After Effects is always like this now. I've searched all the help centers, and google, and youtube, and I've found nothing. I also tried unistalling and reinstalling the Master Collection trial but it still came up in full screen.
    PLEASE HELP I only have 12 days left on trial and I'm trying to finish one last video.

    Try deleting your preferences. If that doesn't do it, Reboot, Use the Adobe Cleaner Tool, then re-install AE. If that doesn't work let us know. It's probably your preferences.

  • Please help: Not using 2 screens, but iMovie thinks I am!

    This is a really odd one and has stopped me using iMovie for 3 months now. Here is the problem:
    The last time iMovie was used I had the MB hooked into an external monitor, it sat to the right of the MB screen and was arranged that way in the display settings, so I could just scroll off the right hand side of the MC screen and the cursor would appear from the left hand side of the monitor. Follow?
    The last time iMovie was used it was on the external monitor, when I'd finished using it I closed it down and disconnected the external. I don't have access to this screen anymore, but when ever I fire up iMovie it thinks the the monitor is still there and does not appear on the MB screen, but way off to the right of it, where the external used to sit. I can see iMovie when I perform the "all windows" command in Expose, but if I try to click on iMovie it just disappears off to the left, out of sight.
    I've tried everything. Every other app knows the external monitor is not connected and does not appear on it, but iMovie point blank refuses to be visable on the MB monitor.
    Please help!

    This is a really odd one and has stopped me using iMovie for 3 months now. Here is the problem:
    The last time iMovie was used I had the MB hooked into an external monitor, it sat to the right of the MB screen and was arranged that way in the display settings, so I could just scroll off the right hand side of the MC screen and the cursor would appear from the left hand side of the monitor. Follow?
    The last time iMovie was used it was on the external monitor, when I'd finished using it I closed it down and disconnected the external. I don't have access to this screen anymore, but when ever I fire up iMovie it thinks the the monitor is still there and does not appear on the MB screen, but way off to the right of it, where the external used to sit. I can see iMovie when I perform the "all windows" command in Expose, but if I try to click on iMovie it just disappears off to the left, out of sight.
    I've tried everything. Every other app knows the external monitor is not connected and does not appear on it, but iMovie point blank refuses to be visable on the MB monitor.
    Please help!

  • Please help me exit "full screen mode." I am unable to see the Safari menu bar.

    I have never used this tool. Please help me to "exit the full screen mode." I am unable to see the toolbar in Safari.

    kennedy0520 wrote:
    THANK YOU FOR RESPONDING. Is there a way to adjust settings in Safari, like my homepage? So far I am not pleased with the IPad. Wish I had looked at other tablets before buying. the main thing I don't like is Safari. I welcome any positive comments. Thanks.
    Safari doesn't include a Home page, but does allow for a multitude of book marks. In addition, there numerous other browsers available in the apps store. Some of them will allow for setting Home page if it is that important to you (personally, I don't miss it).
    The bookmarks bar can be be hidden from the setting app. There is no real tool bar in Safari.
    You might want to take a look through the User Guide and learn a little more about how the iPad works, if you haven't already.
    http://manuals.info.apple.com/en_US/ipad_user_guide.pdf

  • Please help button icons on screen

    Hi my problem is when i press a button like command or shift on the keyboard its symbol appears on screen and the function of the button changes. this has never happened before all i want is for them to just go back to how they were before.
    please help thanks

    Go to system preferences > Universal Access > Keyboard tab > turn Sticky Keys off.
    Regards

  • PLEASE HELP: Weird Start Up Screens

    I have a powerbook G4 that I bought about 2 years ago.
    It's running on OS X and just like 2 days ago it suddenly started to lag A LOT. I first noticed after noticing this with my itunes, with songs pausing and resuming very erratically.
    But the main problem is the slow startup that I have been experiencing. I don't even get the APPLE logo without getting:
    1. A blue background with a globe in a square icon that flashes.
    2. Then a Finder logo in a folder icon...
    3. Then a folder with a question mark in it...
    THEN, I finally get the APPLE logo and it gives me the login screen which loads really slow as well.
    This is the first major problem I've had with my powerbook, and I'm really just a newbie MAC user. I've tried using onyx, but it just made the startup process longer.
    PLEASE HELP.

    what if it doesn't recognize your hard disk? the same thing happened to mine and i was told to run a disk repair, so i did. it worked for a while but crashed again. i've had my computer for a little over a year. i did it again- it didn't recognize the hard disk so i did other things like hold down shift- that didn't work. i held down the option key- didn't recognize. i opened the disk utility and it was miraculously there. so i ran a disk repair again. it worked for a day and then crashed again and now this time, it has the world icon. i tried over and over all those things but the macintosh hd icon hasn't come up at all in the disk utility. why isn't it being recognized and if i go in and try to fix my computer, will everything erase or will i be able to save my files?

  • Please Help stuck on apple boot logo

    I am stucked at the apple boot logo and i can't disable filevalut to go in safe mode. When i've pressed cmd p r and went in utility disk it seems that i have free on the macintosh hd only 16.3 MB so i have to go in safe mode to delete some files and reboot the system. Anyone can help me?

    I can't help, I'm afraid. My suggestion is that you re-post your message with a different title, including that you cannot get into Safe Mode. It would also be good to include the year and model (e.g., Mid-2010 MacBook Pro) so folks know more about what you are dealing with.
    One thought I have is to replace your hard drive with a larger one, install your original OS X on that new HDD and arrange to access your current drive via USB so you can get the files off of it.  But there may be another way -- though you clearly need a larger hard drive in your computer.
    Phil

  • Please help. stuck at Lenovo logo

    I bought the IdeaPad K1. Three weeks back. it was with 3.1 honeycomb. It use to freez i told my friend and he followed some website and downloded OTA updates and installed one of them went well. Today they added some new update , he tried and now the tablet gets stuck at Lenovo logo and goes infinit restarts...

    I have the same problem after I wake up one night. Now my k1 stuck on infiniti loop to reboot.  Can someone from Lenovo help?

  • Incompatibe type error can some please help stuck in rut

    found : double
    required: javax.swing.JTextField
    TotalIncomeField = (num1 + num2 + num3);
    try {
    double num1 = Double.parseDouble(LoansField.getText());
    double num2 = Double.parseDouble(WagesField.getText());
    double num3 = Double.parseDouble(OtherField.getText());
    double num4 = Double.parseDouble(RentField.getText());
    double num5 = Double.parseDouble(FoodField.getText());
    double num6 = Double.parseDouble(OtherField2.getText());
    String op1 = (String)LoanComboBox.getSelectedItem();
    String op2 = (String)WagesComboBox.getSelectedItem();
    String op3 = (String)OtherComboBox.getSelectedItem();
    String op4 = (String)RentComboBox.getSelectedItem();
    String op5 = (String)FoodComboBox.getSelectedItem();
    String op6 = (String)Other2ComboBox.getSelectedItem();
    //Below I am adding the loans, wages & other field so that it total correctly incompatible type error found below (1).
    (1) TotalIncomeField = (num1 + num2 + num3);
    (2) TotalSpendingField = (num4 + num5 + num6);
    //Here above I am adding the rent, food & other field so that it total correctly incompatible type error found above (2)
    double result = 0;
    if (op1.equals("Weekly"))
    result = num1 * 4.3333333;
    else if (op1.equals("Monthly"))
    result = num1;
    else if (op1.equals("Yearly"))
    result = num1 / 12;
    else if
    (op2.equals("Weekly"))
    result = num2 * 4.3333333;
    else if (op2.equals("Monthly"))
    result = num2;
    else if (op2.equals("Yearly"))
    result = num2 / 12;
    else if
    (op3.equals("Weekly"))
    result = num3 * 4.3333333;
    else if (op3.equals("Monthly"))
    result = num3;
    else if (op3.equals("Yearly"))
    result = num3 / 12;
    TotalIncomeField.setText(String.format("%.2f",result));
    if
    (op4.equals("Weekly"))
    result = num4 * 4.3333333;
    else if (op4.equals("Monthly"))
    result = num4;
    else if (op4.equals("Yearly"))
    result = num4 / 12;
    else if
    (op5.equals("Weekly"))
    result = num5 * 4.3333333;
    else if (op5.equals("Monthly"))
    result = num5;
    else if (op5.equals("Yearly"))
    result = num5 / 12;
    else if
    (op6.equals("Weekly"))
    result = num6 * 4.3333333;
    else if (op6.equals("Monthly"))
    result = num6;
    else if (op6.equals("Yearly"))
    result = num6 / 12;
    TotalSpendingField.setText(String.format("%.2f",result));
    } catch (NumberFormatException ex) {
    }

    TotalIncomeField is a JTextField object reference, not a numeric value holder. What you may want is to put the string representation of the calculation into the CONTENTS of the JTextField. There is a setText method for that.
    TotalIncomeField.setText(theText);
    I'll assume you can work out how to turn the calculation into a string representing that calculation.
    SIGH SIGH SIGH
    Thanks for CROSSPOSTING this, you dolt.
    http://forum.java.sun.com/thread.jspa?threadID=780703

  • Please help me. My screen has a brighter portion

    Hi I have a HP w1907 when I turned on the whole pc unit it turned on and it's dislpaying normally, but when I turn off the monitor and turn it on again the screen has a portion that is much brighter than the other.I tried Auto Correction, Gamma adjusting, everything. When I adjust the brightness, contrast, and sharpness the screen adjusts with the normal portion of the screen. I had this monitor for 8 years now but is barely being used. This is the first time I had encountered this problem and I really need help please respond.

    Can Apple block this phone, they hacked my phone, it was on password they brake it and post on my facebook their pictures , i cant understand their behavior, i see on find my iphone mao where is my phone , no way to help from Apple ?

Maybe you are looking for