Is unresponsive, with a confusing display

my sister has recently got this ipod for christmas, and i was syncing her ipod to the computer after importing cds, when i cancelled the sync and unplugged the ipod, now is unresponsive even to turning on and off, and has 4 green horisontal lines in the middle of the screen, about 1cm wide, with the loading circle on top. how can i fix this before she asks for it back? HELPP!

i haven't got an ipod touch (but i'm saving up for one), but i'm sure if you press the sleep button for 6 seconds max, it should come up with the power off switch. try again and if nothing happens, go to a local apple store or ask them to call you and see what they say.
elliwhi

Similar Messages

  • There are multiple users with the same display name

    Hi,
    We have a user and when she get an item assigned to her she sees the following alert:
    "There are multiple users with the same display name USERNAME and at least one of them does not have read permissions to some of the files"
    Now I looked in the database and when I run the following query with the username:
     SELECT     
         [ProviderDisplayName]  
        ,[DisplayName]  
        ,[HasDisplayName]  
        ,[Domain]  
        ,[AccountName]  
        ,[UniqueUserId]  
        ,[LastSync]  
      FROM [Tfs_Configuration].[dbo].[tbl_Identity] where displayname like '%USERNAME%'  
    Then I get 2 same usernames back, How can I get rid of one of them ? When I access TFS trough the portal I only find 1 occurence of this user.
    We use VS2013 and TFS2013 update 4
    Best regards

    Hi DSW,  
    Thanks for your post.
    In your query result, please check if these two users have the same Account Name. if they are two different Account Name in result, it indicate there’s two users have the same display name in your AD, please check that two users’ information in
    your AD. We suggest change one user’s display name in AD.  
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I disable the internal display on my MacBook Pro with connected external display?

    I used this metod with the MagSafe power cable connected (see http://osxdaily.com/2012/06/15/yet-another-way-to-turn-off-internal-lcd-display- of-macbook-pro-with-lid-open/).
    Open System Preferences and click “Mission Control”, then click on “Hot Corners”
    Select a hot corner and pull down the menu to select “Put Display to Sleep”
    Now connect the external display to the Mac and move the cursor to the newly created sleep corner to turn off the internal display
    Close the MacBook lid and wait a few seconds before opening the lid again, the internal display should stay off while the external display will be powered on
    This worked great under Mac OS X 10.7.4, but after the last update to 10.7.5 it doesn’t work more. The built-in display turns off really, but a few seconds after opening the lid it lights up again. Do you have any suggestions? Dimming the brightness or clamshell mode is not very useful.
    MacBook Pro 13-inch,
    2,7 GHz Intel Core i7,
    Mac OS X Lion 10.7.5 (11G56)
    Thanks!

    I have the same problem: not able to work with my external display mirroring the internal one - while shutting the internal display off.
    I believe there is an issue with Mac OS X Lion 7.5 that Apple needs to solve, since apparently it does not happen with this version of the OS only...
    https://discussions.apple.com/thread/4315808?start=45&tstart=0
    Or any other way to solve it?
    Mac Book Air, 13-inch Mid 2011
    Mac OS X Lion 10.7.5 11G63
    Thank you!

  • MacBook Pro Retina 15" mid-2012 won't boot in clamshell mode with an external display attached

    I have a 15" MBPr mid-2012 running OS X 10.10.1. The system won't boot in clamshell mode (power is connected, lid shut) with an external display attached via an Apple Thunderbolt->DVI adapter. it boots fine if the lid is open. It isn't the adapter or the display since my 15" MBPr mid-2014 boots up just fine connected to the same adapter and monitor. And this system used to boot like this just fine some while ago (probably before it was upgraded to Yosemite). I've reset the NVRAM (twice) to no avail.
    Has anyone encounter this? Anyone have a solution? Should I try an SMC reset (always a bit nervous about that)? Might it be a driver issue in Yosemite?
    Thanks.

    I have a 15" MBPr mid-2012 running OS X 10.10.1. The system won't boot in clamshell mode (power is connected, lid shut) with an external display attached via an Apple Thunderbolt->DVI adapter. it boots fine if the lid is open. It isn't the adapter or the display since my 15" MBPr mid-2014 boots up just fine connected to the same adapter and monitor. And this system used to boot like this just fine some while ago (probably before it was upgraded to Yosemite). I've reset the NVRAM (twice) to no avail.
    Has anyone encounter this? Anyone have a solution? Should I try an SMC reset (always a bit nervous about that)? Might it be a driver issue in Yosemite?
    Thanks.

  • Problem with repaint of display after a click event

    Hi,
    I have a problem with repaint of display. In particular in method keyPressed() i inserted a statement that, after i clicked bottom 2 of phone, must draw a string. But this string doesn't drawing.
    Instead if i reduce to icon the window, which emulate my application, and then i enlarge it, i see display repainted with the string.
    I don't know why.
    Any suggestions?
    Please help me.

    modified your code little
    don't draw in keyPressed
    import java.io.IOException;
    import javax.microedition.lcdui.Canvas;
    import javax.microedition.lcdui.Command;
    import javax.microedition.lcdui.CommandListener;
    import javax.microedition.lcdui.Display;
    import javax.microedition.lcdui.Displayable;
    import javax.microedition.lcdui.Graphics;
    import javax.microedition.lcdui.Image;
    public class PlayerCanvas extends Canvas implements CommandListener{
         Display display;
         Displayable dsp11;
    private Image play, pause, stop, next, previous = null;
    private int gamcode;
    private Command quitCmd = new Command("Back", Command.ITEM, 1);
    public PlayerCanvas(Display display,Displayable dsp11){
         this.display =display;
         this.dsp11 =dsp11;
         addCommand(quitCmd);
         createController();
         setCommandListener(this);
         display.setCurrent(this);
              protected void paint(Graphics g)
              g.setColor(255,200,150);
              g.fillRect(0, 0, getWidth(), getHeight());
              if (play != null){
              g.drawImage(play, getWidth()/5, getHeight()-50, Graphics.BOTTOM | Graphics.HCENTER);
              if (stop != null){
              g.drawImage(stop, getWidth()/5, getHeight()-10, Graphics.BOTTOM | Graphics.HCENTER);
              if (next != null){
              g.drawImage(next, (getWidth()/5)+10, getHeight()-30, Graphics.BOTTOM | Graphics.LEFT);
              if (previous != null){
              g.drawImage(previous, (getWidth()/5)-30, getHeight()-30, Graphics.BOTTOM | Graphics.LEFT);
                   /////this will draw on key UP
                   g.setColor(0,0,0);
                   System.out.print(gamcode);
                   if(gamcode==Canvas.UP){
                        g.drawString("PROVA",10, 0, 0);
                   }else if(gamcode==Canvas.DOWN){
                        g.drawString("DIFFERENT",10, 30, 0);     
    private void createController()
    try {
    play = Image.createImage("/icon3.png");//replace your original images plz
    pause = Image.createImage("/icon3.png");
    stop = Image.createImage("/icon3.png");
    next = Image.createImage("/icon3.png");
    previous = Image.createImage("/icon3.png");
    } catch (IOException e) {
    play = null;
    pause = null;
    stop = null;
    next = null;
    previous = null;
    if (play == null){
    System.out.println("cannot load play.png");
    if (pause == null){
    System.out.println("cannot load pause.png");
    if (stop == null){
    System.out.println("cannot load stop.png");
    if (next == null){
    System.out.println("cannot load next.png");
    if (previous == null){
    System.out.println("cannot load previous.png");
              protected void keyPressed(int keyCode)
                   repaint();
                   if ( (keyCode == 2) || (UP == getGameAction(keyCode)) ){
                        gamcode = UP;
                        repaint();
                        else if ( (keyCode == 8) || (DOWN == getGameAction(keyCode)) ){
                             gamcode =DOWN;
                             repaint();
              else if ( (keyCode == 4) || (LEFT == getGameAction(keyCode)) ){
              else if ( (keyCode == 6) || (RIGHT == getGameAction(keyCode)) ){
              public void commandAction(Command arg0, Displayable arg1) {
                   // TODO Auto-generated method stub
                   if(arg0==quitCmd){
                        display.setCurrent(dsp11);
    }

  • How can I get a video signal using IMAC 27 with only mini display port. I like to send the signal wireless to a TV using a TV/audio transmit system.

    I have an IMAC 27 with a mini display port ( only this). I also have all the adapters ( mini display port to VGA, HDMI...).
    Since I moved to UAE I like to transmit the signal frm my IMAC ( where I also look German TV on) to my TV. I will do so by using a wireless Transmit receive system with theree cinch inputs ( transmit system ( video, 2x voice).
    The distance to the TV IS ABOUT 10m and one wall. I don`t want to use a cable.
    Is there any solution for example mini display to VGA + VGA adapter to cinch so I can use the transmit system?
    HDMI would also be an optiekn, bat then I have to by another Transmit receive system.
    If somebody made already the experience I would appreciate to share the information
    Is there may be any store in UAE where to get support. It is very diificult to get good advice here. They sell everything bat can not reaaly explain and have very often  no technical knowledge. With this problem nobody until now can help me.
    Hans
    <Email Edited by Host>

    I don't know what AppleTV can handle as far as bit rate is concerned, but increase the bit rate as high as it will let you. You are taking DV which is 25Mb/s and compressing it. If you're making an H.264, you should get great results needing no more than 6Mb/s. Bear in mind, the higher the bit rate, the larger the file size.

  • How to connect my studio display with a Apple display connector to my new mac mini

    How can I connect my studio display with a Apple display connector to my new mac mini?

    https://discussions.apple.com/message/8315498#8315498

  • I am trying to connect my MacBook Pro to my TV with a mini display port to HDMI converter. Its not working. Any suggestions?

    I am trying to connect my MacBook Pro to my TV with a mini display port to HDMI converter. Its not working. Any suggestions?

    Depends on your model TV.   Read your TV user manual.  The newer models have "how to hookup" instructions for computer & games.
    You can also do a forum search as well as a Google search.

  • Why my new Mac mini  DVI dual link mini display port adapter doesn't work  with my 30"display (LG W3000H)?

    Hello There
    Can any of you advise on the below? Tried to connect Mac mini with a 30" display through a DVI dual link mini display port adapter. For the first try Mac mini go connected to the display, then i've chosen the highest resolution (2560x1600, native) and right at that moment they got disconected. Since then the display stays black. What can be the issue, is it possible DVI dual link mini display port adapter is not compatible with 30"display (LG W3000H)? It works with DVI male-male cable plus DVI HDMI adapter as long as the resolution stays under 1280x800. Any idea is much appreciated.
    Thank you, Vera

    Hi,
    I can report that my Mac Mini Intel Duo connected instantly and without even having to set it up (on the first try) with my 1366x768 native resolution DELL 50" Plasma Display. It's so beautiful that I just want to stand there and fondle my HDTV as I drool haplessly like Homer Simpson with a doughnut in his mouth. Seriously, no problems.... guess I bought the right cable (ebay).
    Before you buy a Duo, make sure you're aware of the airport and bluetooth issues that so many (maybe everyone who tries to use them together) are having. It seems that bluetooth interferes with airport, or maybe the other way around. Anyway, it's messed up. Also, Airport reception is generally VERY poor with the new Intel Mac Mini.
    Despite these things, I still love mine (I now have 2 base stations and an airport express for my powerhouse wireless needs, and an external DLink bluetooth-2-USB dongle solved the bluetooth/airport issues... in my case).
    FWIW,
    awk
    667-MHz Ti PowerBook G4.   Mac OS X (10.3.9)  

  • How can I play music on my macbook pro (OSX Lion) through a Pioneer receiver. I've connected them with a mini display port to HDMI cable with audio support bought at the Apple Store, but there's no sound coming through. thanks

    How can I play music on my macbook pro (OSX Lion) through a Pioneer receiver? I've connected them with a mini display port to HDMI cable with audio support bought at the Apple Store, but there's no sound coming through. There are 4 HDMI-in ports on the receiver - BD, DVD, DVR/BDR and audio. In my system preferences for sound, the receiver doesn't show up as an output option. Can anyone please advise. (ps, this is my first time posting a question, so I hope I can find your answers!) thanks, JP downunder

    For sound, try the audio output port and connecting to the RCA  audio input ports on your Pioneer receiver.  Use something like this:
    http://eshop.macsales.com/item/OWC/PODCONNECTOR/
    Ciao.

  • My iPhone 4S went into lock-up with a screen display image of USB connector pointing to iTunes logo. I took it to a Verizon store and they said I have a brick lock and that only an Apple retail store 50 miles away could clear it

    My iPhone 4S went into lockup with a screen displaying an image of the USB connector pointing to the iTunes logo. I was traveling and took the phone to the closest Verizon store. The store informed me that I had a brick lock and that only an Apple retail store could unlock the phone. The Verizon store explained that they have seen this problem with SEVERAL other 4S users who had upgraded to the new iOS7 operating system and that to their knowledge it is too demanding to work on pre-iPhone 5S phones having a far less capable processor. The closest Apple store was 50 miles away in King of Prussia, Pennsylvania. I went to that store three days later (today) to reset the phone before flying out of Philadelphia Intl. Airport. The Apple store personnel were overloaded and not sensitive to my plight. They told me that I would have to make a reservation for a time 2 hours later for tech support. I couldn't do that without missing my flight - out of luck until I get back to Los Angeles. If the Verizon store explanation is true, Apple needs to accommodate 4S and earlier generation users and not force them to upgrade to a $459 iPhone 5S!

    villebard wrote:
    The Verizon store explained that they have seen this problem with SEVERAL other 4S users who had upgraded to the new iOS7 operating system and that to their knowledge it is too demanding to work on pre-iPhone 5S phones having a far less capable processor. !
    The salesperson at Verizon has no clue what their saying.
    My 4S and many of my friends works perfectly fine on IOS 7.3, no issue as all.

  • How can I get a MacBook with a dead display to display to an HDMI monitor upon bootup?

    I have a MacBook with a dead display that I'd like to use as a desktop.  I also have a 23" monitor with VGA and HDMI input.  I am using the DVI adapter on the MacBook, and a DVI to HDMI converter to connect to the monitor.  The problem is that when it boots, it's extending the desktop over onto the monitor rather than mirroring or using that as the primary display, which is unhelpful.
    Is there a way to get it to use the external HDMI monitor as the primary? 
    Do I need to buy a mimi-DVI to VGA adapter to accomplish this?
    I know this works if I connect the MacBook to a monitor with DVI input.  The problem is that my only options are VGA or HDMI for my current monitor.
    Thanks!

    Yes. Use a Mini DisplayPort to dual-link DVI adapter.
    (71350)

  • Is it possible to input itunes into DVI/HDCP input from imac with Apple mini display portS?

    Is it possible to input itunes into DVI/HDCP input from imac with Apple mini display port? Or is there another way?

    The problem with itunes is needing a computer running it. or continuous internet connection.
    A Time Capsule is AC mains powered.. no battery. Although you can certainly buy an older Gen4 TC and modify it ...
    https://sites.google.com/site/lapastenague/time-capsule-power-supply-repair-kits
    I have run my TC on a 12V SLA battery.. which would neatly meet that part of the functionality you want. But it is heavy and not really the rugged sort of device I think you want.
    But I would look at other media players and other ways of storing movies than iTunes.. if you want to carry the whole lot around with you .. A bunch of SD cards even you could plug into the ipad??
    External storage for iPad?
    A small cheap PC/Mac laptop with a 1TB hard disk  in it.. and 11" or 13" screen.. can often be a much better solution than lugging around multiple items so you can fit Apple devices into your life.

  • Mac mini with a 24" display or a new iMac 24"?

    Hi,
    Since Apple releases the new iMac, and at the same time, updated the mini, I'm wandering where my heart should go.
    I like the iMac, a little bit more powerful, better video card and not sharing memory with main memory, better BTO (bigger HD, faster HD too, memory, etc) iSight and mike, and so on so on. I have not seen one yet, but I'm still puzzled by the glossy screen. Many article I read said that it is a like or not based on personal taste and environment you put it in. I bought a Sony display 2-3 years ago, which I returned, because of the glossy screen. The images were very clean and very fun too work on, but I could not endure to see my face in the screen continuously. That's what I'm afraid about the new iMac.
    So far so good, I read the article on http://www.macworld.com that compare the new mini C2D with an iMac, and while it is less performant it is still a good performer. Only a few points below the iMac. So...
    Choosing a mini with a 24" of my choice with the same resolution as the iMac will cost me around the same (maybe a few hundred $ less), but I'll have a smaller/slower HD and not a dedicated video card. I'm wandering if the larger screen resolution will affect the mini performance? Sure, for the HD space, I can use an external HD on firewire. Maybe even boot from it and use the internal and slower disk for backups (like TimeMachine for instance).
    I do not play game, or very occasionally, I'm doing iLife/iWork stuff, and Internet surfing. I want the larger screen, as I like to have spaces to play with, but I'm afraid the mini will suffer the higher resolution.
    In the long run, the display will stay mine, when I ever decide to change my computer, while buying the iMac mean I'll drop the display and buy a new one. There's pros and cons to all of this...
    So I'd like to heard from people having the new (or even older) mini to let me your impression of what you feel about this.
    Thanks in advance.

    If you are not able to actually examine an iMac carefully before you buy, the risk that the glossy screen may not suit you is a real issue which has to be considered. Imagine that you bought one and found it to have the same problem as the Sony display you tried and had to return?
    Ultimately, the actual performance of the system is remarkably unimportant in most situations. The majority of users and uses would not show markedly different operability between a brand new Mac Pro and older G5, even though in terms of specification and benchmarking, the two are like chalk and cheese. The fact is that while the Mac Pro would be greatly faster, OS and software, not to mention the user him or herself, are all quite inefficient.
    What that means is that the difference in performance between the iMac and the mini is certainly measurable, and in use would show itself in some ways (the iMac would run smoother for example) but without the ability to sit them side by side, as a user you'd really never know. Bearing in mind that the new minis are way faster than the old G5s which were themselves screamingly fast when they were in production (and still are), it's hard to imagine that a mini would fail to impress.
    And since the actual performance of the system isn't all that crucial, what IS vital is to ensure that the system you buy is usable. The devices that matter most in that respect are the bits you, as the user, interface with. Keyboards and mice are reasonably cheap and easy to change, but displays are not when they are fixed and integral to the system.
    The downside of the mini is twofold: Firstly that the internal drive is 5400rpm, thus relatively slow. In reality this really doesn't matter all that much, particularly not if you go for 2Gb RAM. It's been criticized for it's speed, but on the other hand, it's the same as the best laptops, users of which don't seem to have problems with the drive speed. It can be got around of course with a fast external drive, used to boot the system.
    Secondly, the integrated graphics - not because that's really limiting in any absolute sense (except for gamers) but because as time goes by, more and more of the top-end software is likely to exclude systems with integrated graphics from their minimum specification list. There aren't many like that yet, and it's hardly likely to be a widespread problem, but it does mean you have to consider what software you want to run as part of the equation.
    If I were in your situation, I'd not consider spending money until I had looked at the iMac and given myself some time to work with one. The fact it has a glossy screen doesn't mean it WILL have the same problem as the Sony display had, and slight changes in the ergonomics of your desk with the iMac on it rather than the system with the Sony display previously may mean that even if it did prove reflective, it may be far less of a problem (or more of course). I would look to buy the best system with the best specification that fit within my budget (after all, it has to meet your needs for some time, even as they change), thus if the iMac screen was good, that would be the system I'd go for. If there were any sense that the reflective properties of the screen were going to be a problem, I'd dismiss it as an option immediately, and focus on either the lowest cost Mac Pro if one of those were within the budget, and if not, a Mac mini with bumped up RAM and your choice of screen.

  • Issues with Macbook Pro display.

    Hi. Recently, I haven't been having too much luck with Apple products. It started with my Macbook pro Core 2 duo 2.16. It had screen issues, leading to the screen being replaced (replacement screen contained several dead pixels), alongside a logic board, video card, and sound board replacement over the short life of the computer. Apple recently replaced it with a new 2.4 GHz Macbook Pro.
    When I first turned it on, only 3 bottom pads made contact with my desk at all, causing the computer to become lob-sided. I brought it to the Apple store and they brought it to their back room to fix it (I am not sure about what they did to it though). The fix was mostly successful and brought the computer "within spec"... Shortly after the fix, I got home and my monitor started acting up by displaying black vertical bars along my screen. The left side of my screen was also disconnected from the aluminum frame; both issues can be seen at http://gallery.mac.com/eliete#100037 . The odd thing is that the issue only comes up every other time I use the computer, and closing-opening the clamshell usually cures the problem temporarily. I discovered that whenever I take a picture in Photo-booth, the screen flash aggravates the problem, making the issue very obvious, and obtrusive.
    I do a lot of photography work with Aperture 2 and Photoshop Elements 6, and performance wise, the computer is fantastic, but what good is a fast computer with an awful screen? I do not want to switch back to the PC platform because the Mac OS is just that much better, and I rely on this computer for many everyday tasks. What do you think I should do? - I would rather not have the screen replaced due to the possibility of dead pixels (VERY irritating when editing photos), but it looks like that may be the only option. Do you think that I should wait until the WWDC to see what update the MBP will see, incase they replace my computer a second time? Thank You in advance.

    First thing I'd to is take it to the Apple Store, you can talk with them about this. I'm sorry you have been having so much trouble, while Macs are good in general there are some lemons. I bought my current MacBook Pro in August. Within a few weeks of buying it, there were a handful of dead pixels on the display as well as a couple of pale spots (bruises that the Apple store said was my fault). I got the display (the entire top 1/2...display, iSight, etc.) replaced over Labor Day weekend and haven't had a dead pixel or blemish since then. If you wait until WWDC, there are two things to consider: 1) you will have the problem for a few more weeks, and 2) replacements may be refurbished laptops and not necessarily a new laptop. Why bother? If I were you, I'd take it in ASAP and see what options I'm given. If the screen is repaired and dead pixels arise, the screen can be replaced again. What's worse, the possibility of dead pixels, or putting up with the bad display for another month (or two...Apple has a history of introducing things at MacWorld and WWDC that aren't available until the following month)? Hope I helped.
    -AHeneen

Maybe you are looking for

  • Calendar List View Issue - No Month, Week, Day Icons

    I'm trying to setup a Calendar view for a list in SharePoint 2010. Everything is working the way I want, except there are no icons to change the view from Month, Week, or Day. Right now, if someone clicks on a date on the calendar, it switches to the

  • Transport service does not start automatically after upgrade to exchange 2010 SP2 from Exchange 2010 SP1

    Hi, I am trying to upgrade Exchange 2010 SP2 from SP1, but Transport service does not start automatically. Tried manually start services, it started successfully but again goes down within few seconds automatically. Reboot server. but no luck. Any he

  • Wifi headphones connection to tv

    I hae successfully charged and connected a pair of sony wifi headphones to an LG flat screen TV. Connected the cable to the headphone jack. Turned up the volume on the tv, but there is no volume generated from the headphones. I suspect I need to turn

  • When notification is put in process, How to send automatic mail

    Hi All, When the Maintenance notification is put in process, a mail has to be sent with the notification Number to Business / Mainteannce people's mail address. Is this possible through configurations,action box, workflow or by means of exit ??? Plea

  • Setting Scheduling Server Group - Web Services

    How do I set the scheduling server group via the web services .Net SDK? This doesn't seem to work: schedulingInfo.ServerGroup = "id or server group name"; schedulingInfo.ServerGroupChoice = ServerGroupChoiceEnum.SPECIFIED; schedulingInfo.ServerGroupC