Screen

I would like to ask you how can i clean my iMac screen. Can you tell me a couple of products that i could buy?  Thank you

You can buy screen cleaning cloths in any computer shop, or just use a slightly damp cloth.

Similar Messages

  • Windows Blue Screen Error Message Appears As Soon As IPod Connected

    Everytime I connect my IPod to my computer, I get the Windows Blue Screen error message. Thought it was the cable, so plugged cable in by itself. No problem. Uninstalled IPod and ITunes software and then plugged in IPod, still got the Blue Screen. The Blue Screen says something about "recent plugged in device problem". It is not the cable, it must be the IPod. Did not have this problem when I bought it. Tried it on labtop and get the same error message. I can't do updater or anything that requires me to plug the IPod into a computer because the Blue Screen appears immediately. When I unplug, the Blue Screen remains and locks up the computer so I have to restart each time. I have tried everything I can think of. Please help.

    Hi Mike thank you for replying,
    I am not able to start the computer in safe mode, safe mode with networking, last good known configuration etc, Each time it quickly blue screens and restarts about two secs into the process.
    I was unable to try a clean OS install from the disk as it gave the blue screen error shown in the original post. The same thing happened when I tried to use the repair option on the XP home disc. So i can't get into the computer at all to start diagnosing the fault, the only clue I have is the error message, and after searching the internet I haven't found much enlightenment from that yet.
    If you can help me out or suggest where to search it would be much appreciated.
    Thx

  • Adobe Photoshop CS2 opening an image in middle of CS opening screen?

    Can anyone please help me with a way of opening images in CS2 where after opening they will appear in the middle
    of the CS screen rather then in the top left corner?
    I can drag and maximize so they appear in the middle, but on reopening another image they default to the top left again, I would like them to always
    open in the middle?
    Thanks

    Still having problems?  I was struggling to find any documentation for CS2 online, but realised that my bookshelf goes back to Photoshop 6, and I have Martin Evening's Photoshop for Photographers CS2.  Unfortunately, I could see nothing in any of the Preferences tabs that would help.
    At this stage I don't really know what you have tried?  You should try to reset your workspace, and if that does nothing, reset your preferences.  The usual way to do that is to hold down Shift Alt Ctrl while opening Photoshop, but I don't know for sure that worked with CS2.
    Bernie Ecclestone would only need a tiny exec jet, unless he wanted to take his wife along. ;-)
    CC is Creative Cloud, and Tabs are those things you see along the top of the screen in your web browser when you have more than one page open.
    Tauranga is on the North Island, but is very nice and has great beaches (if they have got the oil off)  I live in rural Marlborough right in the middle of the prime grape growing area.  Try Google with Rapaura.  I'm a few hundred metres south of the school.

  • Can not properly view cover flow in full screen in external display

    My mac is the new Mac book pro 15.4 inch screen and I connect my mac pro to external display e.g. Samsung LCD monitor 24 inches.
    The bug is that I can not PROPERLY view full screen (in external display) for some application e.g. iTunes, and Front Row.
    - When I use iTunes, I can not properly view Cover Flow view in full screen (in the external display screen) except the case of mirror display.
    - For Front Row, I can not view full screen in external display but only my mac display.
    However, for other DVD or VDO players, I can view movie on external display in full screen and I still be able to do other works on my mac screen.
    Please let me know how to solve it.

    found the likely issue!  are you participating in youtube's html5 trial?  go here and it will tell you if you are:
    http://www.youtube.com/html5
    exit the trial and it should fix the issue.  it worked for me!

  • Battery , time , signal strength bar is not getting displayed in home screen , these will be displayed only when i click on any app. Can u let me know the setting change ?

    Battery , time , signal strength bar is not getting displayed in home screen , these will be displayed only when i click on any app. Can u let me know the setting change ?

    Did you check the Zoom setting?
    Have you tried a reset (reboot)? Hold HOME and SLEEP until an Apple logo appears.
    If it isn't Zoom and a reboot doesn't help try Settings/General/Reset - Reset all settings

  • Company Name not getting Displayed in the incoming screen

    I changed my blackberry from earlier 0S 7 to Z10 two days ago, but to my surprise it is not displaying company name in the incoming call screen. I have more than 20 people whose name is repeating and not able to identify, how come this feature is not available in the new model, what is solution ?

    @ is a default value as per ALV internal process. This is used in icons .
    I think this is causing the confusion.
    Check in the fieldcat if there is any adjsutment to be made to handle this.
    Br,
    Vijay

  • Due to my laptop screen failing i have to return to facory settings, can i reinstall adobe reader and adobe air afterwards?

    Due to my laptop screen failing I have to return it to factory settings, can I reinstall adobe reader and air afterwards?

    I don't see why not. Do you foresee a special difficulty?

  • Getting null and 0 outputting to screen or file.

    Hi everyone,
    I am trying to make a phone book program in Java. However the main functions of the phone book (adding and displaying contacts) isn't really working, it is outputting null or 0.
    Here is a class to create an object for family members:
    import java.util.StringTokenizer;
    public class phoneFamily extends phoneNumbers
         protected int home;
         public phoneFamily(String name, String address, int mobile, int business, int home)
              super(name, address, mobile, business);
              this.home = home;
         public phoneFamily(StringTokenizer P)
              super(P);
              while (P.hasMoreTokens()){home = Integer.parseInt(P.nextToken());}
         public void setHome(int home)
              this.home = home;
         public int getHome()
              return home;
         public String toString()
              return "Name: " + name + "\nAddress: " + address + "\nMobile: " + mobile +
                   "\nBusiness: " + business + "\nHome: " + home;
         public String CSV()
              return name + "," + address + "," + mobile + "," + business + "," + home;
    }Now I'm assuming that the problem I am having, where null or 0 is written to the file and screen is caused by the methods that reads a contact, writes them to the file, prints them to the screen. Here are those bits of codes.
    Reads Contact:
    private phoneNumbers ReadContact()
              int x = 0;
              String contact;
              StringTokenizer S;
              while (x < 1 || x > 3)
                   System.out.print("Which type of contact would you like?");
                   System.out.print("\n1)Family\n2)Workers\n3)Friends");
                   x = keyboard.nextInt();
              contact = ReadString("contact name") + "," +
                         ReadString("address") + "," +
                         ReadString("mobile") + "," +
                         ReadString("business") + ",";
              if (x==1)
                   contact+=ReadString("home");
              else if (x==2)
                   contact+=ReadString("email") + "," + ReadString("job title") + "," + ReadString("department");
              else
                   contact+=ReadString("email") + "," + ReadString("home");
              S = new StringTokenizer(contact,",");
              if (x==1)
                   return new phoneFamily(S);
              else if (x==2)
                   return new phoneWorkers(S);
              else
                   return new phoneFriends(S);
    Writes to File
    public void Save() throws IOException
              PrintWriter phoneFile = new PrintWriter(new FileOutputStream(PH_FILE));
              for (int i=0;i<NumOfContacts;i++)
                   String phoneX = phone.CSV();
                   phoneFile.println(phoneX);
              phoneFile.close();
              System.out.println("Contacts have been saved successfully.");
    Prints on Screen
    public void PrintFamily()
              System.out.println("Contacts Stored as FAMILY:");
              System.out.println("");
              //#=7, Name=24, Address=28, Email=24, Mobile=12, Business=12,
              System.out.println(SpaceGen("#",7) + SpaceGen("Name",24) + SpaceGen("Address",28) +
                   SpaceGen("Mobile",12) + SpaceGen("Business",12) + SpaceGen("Home",12));
              //System.out.println(RepChar('=',100));
              for (int i=0;i<NumOfContacts;i++)
                   if (phone[i] instanceof phoneFamily)
                        System.out.print(SpaceGen((new Integer(i+1)).toString(),7));
                        System.out.print(SpaceGen(phone.getName(),24));
                        System.out.print(SpaceGen(phone[i].getAddress(),28));
                        System.out.print(SpaceGen(new Integer(((phoneFamily)phone[i]).getMobile()).toString(),12));
                        System.out.print(SpaceGen(new Integer(((phoneFamily)phone[i]).getBusiness()).toString(),12));
                        System.out.print(SpaceGen(new Integer(((phoneFamily)phone[i]).getHome()).toString(),12));
              //System.out.println(RepChar('=',100));
    For some reason the last thing you enter when adding a contact (example above, home number), gets displayed first (when it should be name) and the rest are null or 0. The file looks something like this (in CSV)
    111222333,null,0,0,0
    The "111222333" is supposed to be the name but like I said last value entered is being put first.
    I've gone over my code several times, with no luck :-(.

    I made a silly mistake in the bit where the details are read. After fixing that everything is running well :-).
    My mistake:
    I had something like:
    while(P.hasMoreTokens()){this.data = P.nextToken();}
    while(P.hasMoreTokens()){this.data2 = P.nextToken();}
    and so on...Obviously had to use "if"s and not "while"s to read the data...
    Thanks for offering a helping hand :-) though!

  • How do i use my own image with keying (or green screen)

    how do i use my own image witrh keying (or green screen)

    Put your sky clip on a layer below the clip you want to key. One or the other will be a connected clip. Apply  the Keying filter to foreground clip (the one with the green screen). The green will be seen as transparent and the sky will show through as the BG. Adjust as necessary in the Inspector.
    Good luck.
    Russ

  • Encore WT8 - screen Mirroring on TV does not work

    Hello,
    I have a KDL42-W653A television which supports screen mirroring over WiFi.
    However, I cannot get it to work with the Toshiba Encore W8 tablet.
    The tablet detects the television, I enter the number, but the television never shows the tablet's screen.
    Both the television and the tablet are on the latest firmware.
    Another thread indicates there is an update for HDMI in January. I hope that covers this too.
    Anwar

    Hi
    > I have a KDL42-W653A television which supports screen mirroring over WiFi.
    By mirroring over WiFi what technology you mean exactly?
    Miracast, Intel WiDi, DisplayLink?
    Toshiba Encore supports *Miracast*
    To use Miracase both devices needs to support this technology.
    Then you can connect to external display very easy:
    Tab Settings -> Change PC settings -> PC and devices -> Devices
    Here you have to Add a device and you tablet will start searching for a Miracast devices
    After the connection has been established, the name of the Miracast device will appear under Projectors
    Did you test the video output connecting the table to the TV with an micro-HDMI cable?
    Does it work?
    Here is also an nice youtube video about the Toshiba Encore WT8 screen output options
    http://www.youtube.com/watch?v=kBmInOnrS2U

  • Problem push and hold on a Surface Pro tablet's touch screen

    Hi,
    I tried posting this before, but I can't find my origional post so I hope I'm not spamming accidentally.
    I have a problem with my program on a Windows 8.1 Surface Pro tablet. I programmed a button to be 'push-and-hold', but when I touch the tablet nothing happens until I release my finger. This briefly controls the button. When I connect a USB mouse to the tablet, it responds normally; when I press the left mouse button: the button in my program goes down until I release the mouse button. I tried about every setting in the Touch section of the Windows control panel without any succes.
    Does anyone have a suggestion?
    Any help would be greatly appreciated.
    Chris  

    Previous Post.
    http://forums.ni.com/t5/LabVIEW/Press-and-hold-on-a-Surface-pro-touch-screen/m-p/2816346
    If you clicked on your username and looked at your profile, you can see the messages you've created or replied to in the past.

  • On Screen Keyboard Glitch in Tablet Mode - On Screen Keyboard minimizes / disappears / slides down

    Hi there -
    New Yoga owner here ( just bought it yesterday) and within minutes of setting the computer up I noticed that the on screen keyboard was malfunctioning when the yoga is in tablet mode. Specifically, it pops up for about a second and then, without me touching or clicking or doing anything, it quickly slides back down. repeated attempts to bring up the keyboard end up, frustratingly, with the same result. what is perplexing to me is the on screen keyboard works fine in laptop mode (when I need it least).
    Someone else already started a post on this BUT it was marked as 'solved' (which it wasn't) so I figured I'd start new thread. The solution on the previous thread was to simply 'refresh' windows to get rid of any new drivers that were downloaded since purchasing the yoga, but I did not download or update anything prior to this problem arising (as I said, the problem seemed to occur within a few minutes of turning the machine on for the first time). In any case, I tried the refresh and it did not work so clearly my problem is not that I downloaded an incompatible or faulty driver. Please Help! I love this machine and I'm trying to see past the other flaws I've noticed so far (subtle screen flickering, inconsistent touch sensitivity etc), but this issue is starting to really undermine my confidence in the product quality and, from a productivity standpoint, it is a real deal breaker to not have full tablet functionality.
    Solved!
    Go to Solution.

    I had the same problem with the disappearing virtual keyboard within hours of starting to use my new Yoga 13.  I read somewhere that it was a problem with an incompatible Synaptics driver, and when I looked in the control panel, it showed that the Synaptics driver had been updated on my Yoga as of the day I bought it.  I think somehow by agreeing to automatic updates of the software, the Synaptics driver is updated to an incompatible version.   So what I did was I removed the Synaptics driver, using the Windows program uninstaller tool, rebooted, and then found the Synaptics driver at the Lenovo site which is specifically labelled as the Yoga 13 driver.  I installed that, and the keyboard is now working fine.    

  • Mid-2010 Macbook Pro Screen Flicker Pixel Seizure

    Not sure how else to describe the problem, but I hope the title helps!
    I have a mid-2010 15" MacBook Pro. I noticed in the last month or so, my screen would flicker. But not the entire screen. Just certain areas, like the pixels would jump/lag, as if it it would jump to the correct position. I don't know what's the word for it: glitter, pixel, flicker, seizure. I mean, that what it looks like. It actually hurts my eyes.
    I don't know what could be the problem or if anyone knows what's going on. It's just certain pixels (random on the screen, but usually right in the middle) that get "stuck" and half a second later, jump. Not sure what the proper word is, but if anyone could identify it, that'll be great.
    Safari, Chrome, and Word are the applications I use, and I've seen it all three programs. It's becoming a lot more noticeable and frequent now, especially if I switch programs or if I'm loading a new page.
    The MBP is a tank, but I've been considering buying a new MacBook, preferably the Air, until this MBP kicks it, so if anyone has estimation on its shelf life, that'll be great (My 2005 Powerbook G4 barely made it through 4 years!). The warranty on the MBP just expired last year.
    Thanks in advance, I appreciate any insight on the issue.

    Curiously, I don't have that option. It only gives me the option to disable Automatic graphics switching where it should give the better battery life or higher performance options. Do I have something disabled that gets rid of that option? It's the same under the Battery or Power Adapter options.
    I'm going to take it to a genius but I'm wondering from reading other forums that maybe one of my RAM slots is bad. I want to have a play but will the genius know if I've opened it up and then possibly refuse it? If it is bad RAM then I can fix that myself without having to travel 70 miles to my nearest Apple Store. Is there a seal that I would break that would give away the fact that I've opened it up?
    Thanks for the advice so far.

  • When I login to second user account I get a blank white screen.

    Just updated to 10.8.3, was also having issues that seemed to be related to Spotlight and TM backups. Issues on my main user account seem to have been resolved, but I have not reactivated Spotlight or TM yet.
    When I try to login to my wife's user account, it just hangs on a white screen. I've tried repairing user permissions, and also resetting PRAM and NVRAM. Disk verify checks out fine.

    Library/Fonts:
    [A hole bunch, removed to shorten post...]
    Does the problem account also have a lot of fonts in the home folder? That could be the reason for a login failure. Otherwise see below.
    Please read this whole message carefully, especially the warnings, before doing anything.
    1. The changes to your configuration suggested here should be considered provisional; they may not solve your problem, or they may remove functionality that you find useful. If a third-party system modification that you want to keep is causing the problem, seek help from its developer.
    2. WARNING: Back up all data now if you haven’t already done so. Before proceeding, you must be sure you can restore your system to its present state, even if it becomes unbootable. If you’re not sure you can do that, STOP — DON’T CHANGE ANYTHING. If you’re dissatisfied with the results of the procedure suggested below, restore from your backup. I will not be responsible for the consequences, and I will not be able to help, if you ignore this warning.
    3. You should either remove or update the following system modification(s), if an update is available from the developer:
    N/A
    and definitely remove at least the following:
    Logitech Control Center
    † PeerGuardian
    Hotspot Shield
    † Conduit
    4. Whatever you remove must be removed completely, and (unless otherwise specified in this message) the only way to do that is to use the uninstallation tool, if any, provided by the third-party developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job. I can't be more specific, because I don't install such things myself. Please do your own research.
    Here are some general guidelines to get you started. Suppose you want to remove something called “BrickYourMac.” First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickyourmac.com. (That may not be the actual name of the site; if necessary, search the web for the product name.) If you don’t find anything on the website or in your search, contact the developer. While you're waiting for a response, download BrickYourMac.dmg and open it. There may be an application in there such as “Uninstall BrickYourMac.” If not, open “BrickYourMac.pkg” and look for an Uninstall button.
    Again, please don't ask me to do this research for you. You can do it better than I can, because I haven't installed the product and I may not even know what it is.
    If you can’t remove software in any other way, you’ll have to erase your boot volume and perform a clean reinstallation of OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
    WARNING: Trying to remove complex system modifications by hunting for files by name often will not work and may make the problem worse. The same goes for "utilities" that purport to remove software.
    5. I recommend that you never reinstall the modifications marked with a dagger (†) above, if any. If your problem is resolved after uninstalling all the above modifications and rebooting, but you still want to use some of those not marked with a dagger, you can experiment with putting them back, one at a time, testing carefully after each step. Keep in mind that system modifications may be incompatible with each other or with future OS X updates, so it may not be clear which one is at fault.
    6. If you still have problems after making the suggested changes and rebooting, post again. Remember: if you don’t like the results of this procedure, you can undo it by restoring from the last backup you made before you started.
    You installed the Conduit spyware. To remove it, back up all data, then follow the instructions on this page:
    Help Center | Community Toolbar
    If those instructions don't work, proceed as follows.
    Triple-click the line below to select it:
    ~/Library/Application Support/Conduit
    Copy the selected text to the Clipboard (command-C). From the Finder menu bar, select
    Go ▹ Go to Folder…
    Paste into the box that opens (command-V), then press return. A Finder window should open with a folder named "Conduit" selected. If it does, delete the selected item.
    Repeat with this line:
    /Applications/Toolbars
    Now you're deleting a folder named "Toolbars". You may be prompted for your login password. Next, copy this line:
    /Library
    Select Go to Folder… again and paste. Don't delete the Library folder. Delete only the following items inside it, if they exist.
    Application Support/Conduit
    InputManagers/CTLoader
    LaunchAgents/com.conduit.loader.agent.plist
    ScriptingAdditions/ct_scripting.osax
    Close the Finder windows you opened. Log out and log back in.

  • When i login to my banks online access point a new browser is opened and it takes up the full 27" display. ca i restrict the size of web browser screen used by tme online banking service?  imac 27" OSX snow leopard 10.6.8

    Intel iMac OSX Snow Leopard 10.6.8
    I logon to bank via its internet portal and next screen takes up all 27" display.
    Can this be controlled in any way or do I just put up with it, it is really annoying.

    Thank you for your response. Whew...i omitted to say I use Firefox... tried to logon using Safari... same
    result Installed Chrome ...same thing Installed Opera... this browser actually has in its Preferences menu
    the capacity to set JavaScript Options under the Conent submenu... DISALLOWED  all of resizing of windows, 
    moving of windows and ability of script to hide menu bar ... this fixes the screen to available browser size...
    so my issue has at least this resolution. Thank you Flet Cheryl 

  • When I boot up it hangs on the login screen for awhile, why?

    I have a mid 2011 Macbook Air 13".  It came with Lion but I recently updated to Mountain Lion.  When I wake the laptop from sleep everything is fine.  If it's been awhile since it slept (a couple of hours), the login screen hangs.  What happens is that it boots like normal and looks like everything is correct, but it won't let me type in my password.  After 10 seconds or so I can see a cursor come up but it won't let me type (but anything I do type at this point will later fill in the field after another 2-3 seconds or so).  One other thing that's weird is that when the screen first comes up it shows the battery percentage from when I put it back on the charger, then after everything catches up, it changes to show 100%.
    I hope I explained the problem well enough.  Basicly a "wake from sleep" is fine if it hasn't been long since the laptop slept, but if it's been awhile it takes about 15-20 seconds to boot up.
    Ideas?

    Here are some suggestions based on my recent issue with unable to get Mavericks up after upgrade - The Apple geniuses just simply couldnt figure this one out...despite it being in their shop for 3 days (They probably did not look at it...and asked if they can just wipe out everything and install fresh...i had said NO):
    Restart computer and hold Cmd+V when you hear chime. This will start the computer in Verbose mode.
    See the messages and see where the system boot fails. In my case, it was some backtrace IOStorageFamily issue with com.paragon-software.
    Google may be able to solve your Apple issues - just type the error message in and see if you get any useful suggestions. in most cases - this would be some faulty 3rd party drivers.....
    In my case, it was something stupid i had probably installed....I had to boot to safe mode (Hold Shift at boot chime) - open Terminal, delete the folder com.paragon-software.kext from System/Library/Extensions....that fixed the problem. Mavericks is working great now....
    Let me know if your debugging thing works...

Maybe you are looking for

  • Copy reports in report painter

    Friends, I have some custom reports along with standard reports in one library. I want to copy all the custom reports from this library to other library. What is the best way to do it. I can copy each report from grr2 or grr3 but i want to do for the

  • Paper handling HP Officejet Pro X576dw MFP

    My HP Officejet Pro X576dw MFP printer started making a very loud (annoying) banking sound everytime the paper guage moved. Additionally, it won't pick up paper from Tray 2 (main tray). This happened all of a sudden when I was printing and I have no

  • I have some ebooks that were given to me and I want them in my Ipad...how do I get them in? they are on my MacBook Air, Please help

    I got an Ipad for graduation; I have some Ebooks that are in my email and I want to upload them in my Ipad...how can I do that...I have a MacBook right now....Does anybody know...?

  • Transfer contacts, iPod touch to iPhone 4S

    Hello, I have an iPod touch 3rd generation.  My iPod syncs my contacts with my works exchange server using mail for exchange feature in ios.  I have now left the company.  All of my contacts are still on my iPod touch.  Is there a way I can transfer

  • Photoshop online help - help

    When clicking on the 'Photoshop online help' menu link, i'm met with: Any clues anyone, hope to hear from you, i'm confused why it's started to do this every time. brgds Alex