If I run a second monitor from an iMac, will I be able to achieve a resolution of 1928x1080 which is the max resolution of my second monitor?

I am changing to an iMac later this year. At the moment I run a Sony Vaio all-in-one and use a second monitor with it. Although the resolution of the second monitor is 1928x1080, I can only get it to work at a max of 1680x1050 so it's a bit fuzzy.
My question is, when using an iMac, will it be able to support the additional monitor at its max 1928x1080?
Thanks

You are only limited by what the maximum resolution is on the external display. Look at it's specifications, then when you have connected it to your iMac look at System Preferences - Diplays - Display tab and choose the resolution on the external display.
BTW please complete your profile. It's difficult to assist you without knowing anything about your iMac. Much like asking Sally Ormond for financial advice and not telling her anything about your financial situation.

Similar Messages

  • I have two monitor speakers that I would like to airplay to from my iMac. Is this possible? Is there an adapter or receiver? The monitor speakers are KRK VXT8.

    I have two monitor speakers that I would like to airplay to from my iMac. Is this possible? Is there an adapter or receiver? The monitor speakers are KRK VXT8.

    They have a trial version you can test before you purchase. It limits you to 10 minutes of streaming before it starts inserting noise into the stream.
    But you may not need it. I've read a bit further, and it appears that you may be able to stream any system audio to an Airport Express without needing AirFoil since you have Mountain Lion. I though it would work only with an Apple TV, but I've seen mention that it works with the AE as well (I don't have one to try). When you get your Airport Express set up, go to the Sound (speaker) icon in the menu bar, hold down the Option key, and click the icon. You may see the AE listed there as a selectable output device; if so, select it and all your system audio should be sent to the AE, including Spotify.
    Regards.

  • Having trouble with running an APP transferred from my imac?

    Having trouble with running an APP transferred from my imac?

    It asks me to sign in.  I sign in and nothing happens. 

  • Does run Mac OS X from external disk will damage Win7 installed at internal disk?

    Hi,
    When I buy a Mac Mini Server 2011, I replace the Mac OS X Lion bootable disk with a SSD and install Win7 64, the other internal disk is also used by windows.
    Now I need write some code in Mac OS using XCode, I assembling the Mac OS X Lion bootable disk with a USB disk shell and plug in Mac Mini's USB port, when I power on the machine and press the ALT key, the firmware show the Max OS disk, but I stoped.
    I want to know if I boot into Mac OS, will it damage the Win7 disk? Can I apply OS patch or upgrade firmware?
    Thanks in advance!

    Does run Mac OS X from external disk will damage Win7 installed at internal disk?
    Of course not.  Why would it?

  • A client is curious to see if I export HTML from Adobe Muse, will he be able to edit the HTML in another program?

    A client is curious to see if I export HTML from Adobe Muse, will he be able to edit the HTML in another program?

    Thank you. I thought so, but just wanted to confirm. I appreciate the feedback.
    -Joe

  • Hi. If i buy an unlocked iphone from canada. Will i be able to use it in Mauritius Island on network Orange?

    Hi,
    I live in Mauritius Island. My brother wants to send me an unlocked iphone 5s from CANADA as a gift, but i am unsure if i wil be able to use it here. Can you help? We use Orange here.

    Not sure that they are selling unlocked phones in Canada.  Mostly, the Canadian phones are carrier locked and the Canadian carrier do not offer unlocking, with Bell being the main one.
    It might work, but this would only be on 3G because you have to remember the frequency differences and phones built in Canada were designed to work in Canada with the Canadian carriers/networks.
    Also be aware that warranty for the iPhone is not international, so if anything goes wrong with the phone and you need help, you'll have to physically go back to Canada or post the phone back to your brother in Canada, but not directly to Apple.

  • I have remote access from my IMAC to my windows PC at work. How do I set up the keyboard functions to work on the work PC when I work from home?

    I have remote access using my IMAC. The computer at work is a Windows PC, how do I set up the IMAC's keyboard to function as the same one at work?

    Port 3389 should be open on your work network. Check with your admin. They know what ports are open on your work firewall.

  • Running a jar file from java code

    Hi!
    Im trying to run a jar file from my code.
    I've tried Classloader, but that doesnt work because it doesnt find the images (also embedded in the 2nd jar file).
    WHat I would like to do is actually RUN the 2nd jar file from the first jar file. There must be a way to do this right?
    any ideas?

    ok, I found some wonderful code (see below) that will try to start the jar. But it doesn't. What it does is produce the following error when my application runs...
    So it's not finding the images in the jar file that I am trying to run? Strange. I checked the URL that sending, but it seems ok....
    I think I will check the url again to make sure......
    any ideas?
    Uncaught error fetching image:
    java.lang.NullPointerException
         at sun.awt.image.URLImageSource.getConnection(Unknown Source)
         at sun.awt.image.URLImageSource.getDecoder(Unknown Source)
         at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
         at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
         at sun.awt.image.ImageFetcher.run(Unknown Source)
    the code....
    /* From http://java.sun.com/docs/books/tutorial/index.html */
    import java.io.IOException;
    import java.lang.reflect.InvocationTargetException;
    import java.lang.reflect.Method;
    import java.lang.reflect.Modifier;
    import java.net.JarURLConnection;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.net.URLClassLoader;
    import java.util.jar.Attributes;
    * Runs a jar application from any url. Usage is 'java JarRunner url [args..]'
    * where url is the url of the jar file and args is optional arguments to be
    * passed to the application's main method.
    public class JarRunner {
      public static void main(String[] args) {
        URL url = null;
        try {
          url = new URL(args[0]);//"VideoTagger.jar");
        } catch (MalformedURLException e) {
          System.out.println("Invalid URL: ");
        // Create the class loader for the application jar file
        JarClassLoader cl = new JarClassLoader(url);
        // Get the application's main class name
        String name = null;
        try {
          name = cl.getMainClassName();
        } catch (IOException e) {
          System.err.println("I/O error while loading JAR file:");
          e.printStackTrace();
          System.exit(1);
        if (name == null) {
          fatal("Specified jar file does not contain a 'Main-Class'"
              + " manifest attribute");
        // Get arguments for the application
        String[] newArgs = new String[args.length - 1];
        System.arraycopy(args, 1, newArgs, 0, newArgs.length);
        // Invoke application's main class
        try {
          cl.invokeClass(name, newArgs);
        } catch (ClassNotFoundException e) {
          fatal("Class not found: " + name);
        } catch (NoSuchMethodException e) {
          fatal("Class does not define a 'main' method: " + name);
        } catch (InvocationTargetException e) {
          e.getTargetException().printStackTrace();
          System.exit(1);
      private static void fatal(String s) {
        System.err.println(s);
        System.exit(1);
    * A class loader for loading jar files, both local and remote.
    class JarClassLoader extends URLClassLoader {
      private URL url;
       * Creates a new JarClassLoader for the specified url.
       * @param url
       *            the url of the jar file
      public JarClassLoader(URL url) {
        super(new URL[] { url });
        this.url = url;
       * Returns the name of the jar file main class, or null if no "Main-Class"
       * manifest attributes was defined.
      public String getMainClassName() throws IOException {
        URL u = new URL("jar", "", url + "!/");
        JarURLConnection uc = (JarURLConnection) u.openConnection();
        Attributes attr = uc.getMainAttributes();
        return attr != null ? attr.getValue(Attributes.Name.MAIN_CLASS) : null;
       * Invokes the application in this jar file given the name of the main class
       * and an array of arguments. The class must define a static method "main"
       * which takes an array of String arguemtns and is of return type "void".
       * @param name
       *            the name of the main class
       * @param args
       *            the arguments for the application
       * @exception ClassNotFoundException
       *                if the specified class could not be found
       * @exception NoSuchMethodException
       *                if the specified class does not contain a "main" method
       * @exception InvocationTargetException
       *                if the application raised an exception
      public void invokeClass(String name, String[] args)
          throws ClassNotFoundException, NoSuchMethodException,
          InvocationTargetException {
        Class c = loadClass(name);
        Method m = c.getMethod("main", new Class[] { args.getClass() });
        m.setAccessible(true);
        int mods = m.getModifiers();
        if (m.getReturnType() != void.class || !Modifier.isStatic(mods)
            || !Modifier.isPublic(mods)) {
          throw new NoSuchMethodException("main");
        try {
          m.invoke(null, new Object[] { args });
        } catch (IllegalAccessException e) {
          // This should not happen, as we have disabled access checks
    }

  • Is it possible to run my iTunes solely from an external drive?

    I'm a college student and don't have my own computer anymore, and I currently use campus computers and library computers (No admin priviledges).
    I currently have all my previous iTunes music backed up on my external drive, and I have the iTunes package (The install package you download from Apple) also on there as well.
    I'm basically wondering if I can install iTunes onto my external drive, open it from there, and also be able to access my music from there as well?
    To give more clarification, I want to be able to go to a college or library computer (These computers are running on Windows XP or 7), be able to open iTunes from my external drive, and be able to manage and use my library from there.
    With college and library computers, you don't have the admin rights to install iTunes. However, I do have friends that will let me use their computer to install iTunes onto my external drive (If that is possible). So not being able to install iTunes because of lack of admin priviledges is a barrier I can get through.
    How ever I don't know if it's possible to run, and open iTunes from an external drive, and be able to open and use my iTunes library from there.
    And help would be great.
    Thanks in advance!

    how would I go about putting my iTunes library on an external drive?
    It depends on where your library is now and how it's organized. If you have all your content and library files in a single iTunes folder, drag the entire iTunes folder (the _entire_ folder, _not_ just the iTunes Music folder) to your desired location. Then hold down the Shift key while launching iTunes. You'll be given a dialog box where you can select the iTunes library you want to use. Navigate to and select the iTunes folder in it's new location. Note that this procedure assumes that all of your tracks are contained in the iTunes Music folder. If they're scattered around your volumes, moving them becomes much more complex. Don't delete the tracks from the old location until you've confirmed that they're working correctly from the external drive
    Also is it possible to get past administrator rights, to install iTunes and delete iTunes each time I use a computer that I don't have administrator rights to? That way I can still use iTunes.
    No, it's not possible. As with most applications, you need administrator rights to install iTunes.
    Regards.

  • HP Officejet Pro 8500A Premium will not print docs from computer, but will print a test page.

    HP Officejet Pro 8500A Premium will not print docs from computer, but will print a test page.  I continually get a message that the computer cannot communicate with the printer.   Not only will it not print docs, it will not print web pages using IE 11 or Google Chrome.
    I've used Print and Scan Doctor, it always reports there are no issues and prints a test page even though I can't print anything else. 
    Each time I want to print, I must reboot the computer.  After reboot I have one chance to print.   This problem started February 15, 2015.  
    My operating system is Windows 8.1.   I have unintalled the HP software, rebooted, then reinstalled the software:
    OJ8500_A910_1315-1.exe
    HP Print and Scan Doctor - HPPSdr.exe
    HPSupportSolutionsFramework-11.51.0049.msi
    All versions were last downloaded on April 4, 2015.
    I have a home wireless network (Ubee DDW366 router).  All other devices in the house will print to the 8500A printer without issues:  2 Toshiba laptops, 2 Android phones, and 1FireHD.
    The desk top is installed with a Netgear Network card I don't know the model, but I had it tested by a PC Tech to confirm that the card is working.   The card and Windows 8.1 were installed on January 3, 2015.
    I have run virus scans and malware scans.  Each time they show there are no issues with my desktop.  What kind of desktop? Specifically made to my specs from store parts. . . no brand name computer.  ASUS Motherboard P6X580 Premium.  Now I will probably get hacked!
    I am at my wits end.  And it is frustrating when I need to make a print of something and the system locks up.  I often resort to screen printing to a word document to save in order to reboot. . . .but then I lose all sorts of capabilites when I salvage what I needed.  Also this is a time consumer.
    This printer has served us well for two years and I have expensive cartridges waiting; another two rounds of refills.
    Help?
    Addendum:  I can scan using HP Printer Assistance.  I open the HP Printer assistant, it "retrieves" info from the printer, then I select "scan a document or photo" and the printer responds.   I have no trouble with scanning.
    This question was solved.
    View Solution.

    Hi ArielAce , thanks for getting back to me!
    I would recommend downloading and running the HP Print and Scan Doctor.
    Please keep me posted!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • I have Elements 10 when I select a thumbnail from organizer it will not open in editor what do I do?

    I have Elements 10 when I select a thumbnail from organizer it will not open in editor what do I do?

    I deleted the photoshop settings file. I can't get the welcome screen back now.
    Ted Neis
    719-395-9251
    719-429-4916
    "Rise above principal and do what's right."
                                Joseph Heller  (1923 - 1999)
                          " He wrote Catch-22"
    Date: Wed, 28 Nov 2012 09:28:20 -0700
    From: [email protected]
    To: [email protected]
    Subject: I have Elements 10 when I select a thumbnail from organizer it will not open in editor what do I do?
        Re: I have Elements 10 when I select a thumbnail from organizer it will not open in editor what do I do?
        created by 99jon in Photoshop Elements - View the full discussion
      You need to keep the keys pressed for several seconds. Close down Elements. Hold down the CtrlShiftAlt keys and simultaneously click on the Edit button on the welcome screen. Release the three keys and look behind the welcome screen by closing it. Or hold down the keys whilst clicking on the desktop icon for the Editor or PhotoshopElementsEditor.exe in the Programs folder. Keep holding down all three keys until you get the settings option. You should see a pop up box with the words: Delete Adobe Photoshop Elements Settings File?Click on YesThen wait whilst Elements rebuilds the preferences.  You should see something like this (example PSE9)  http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-4880527-258346/320-111/Setting s-pop-upPSE9.png
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4880527#4880527
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4880527#4880527
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4880527#4880527. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Using APex with Airtunes from an iMAc can you control playing tunes?

    Hi, got an imac at Xmas, am looking into Airport stuff, and found this APex, with wireless play of iTunes music, Ive been looking into the Philips streamium and stuff doe playing tunes.
    My question is once setup from your iMac to play music wirelessly how can you control it? Ive read the manual but doesnt say anything. So can all you do is press shuffle on the iMac and then it plays everything?
    I know you could do playlists and stuff, but I have all my music, kids music, wife's music in my library, so theres a real mixture, and Im sick of listening to High School Musical!!
    So can you contol the song playing, ie skip etc with it?
    cheers

    iTunes needs to be running in order to stream music to the Airport Express so therefore - no - the Mac running iTunes cannot be in sleep mode. It must be powered up and running, though you could blank the screen if you wish.
    Why did Apple not build the function of the Keyspan Express remote into the Airport Express. Likely because it would have increased the cost of the product by 50%, while at the same time adding a feature most people would be happy to live without - in other words, not a great idea from a product marketing perspective.

  • How do I get all my contacts and my bookmarks from my iMac to macro

    How do I get all my email contacts and bookmarks from my Imac to Macpro??

    In Mail go to Mailbox > Export Mailbox on the other mac just import your Mailbox.
    If you want your contacts, Are they all in your Address book? if they are just go to File> Export in Address book. and then again File> Import on the new mac
    Same thing for the bookmarks (Safari): File> Export Bookmarks ...
    Hope that helps!

  • HT1937 Can I replace my broken iphone in Bangkok because my iphone is from USA and I am not able to sent it in USA

    Can I replace my iphone from Bangkok because my iphone is from USA and I am not able to sent it to USA

    Any Apple store in the US will replace as an out of warranty exchange An iPhone 4S is US$199
    They do not accept international mail in ,has to be in person

  • Can I sync my Contacts from my iMac OS X 10.4.11 to my new iPad?

    Am I able to sync my Contacts from my iMac OS X 10.4.11 to my new iPad2?

    You need the latest version of iTunes for Tiger it appears, but v10.5 is 10.5.8+ only, yet...
    Contacts
    To sync contacts with your computer, choose Sync Contacts on your Windows-based PC, or “Sync Contacts with Address Book” on your Mac.
    You can sync your contacts with:
    Microsoft Outlook 2003 or Microsoft Outlook 2007 (Windows XP, Windows Vista, or Windows 7)
    Windows Address Book (Windows XP and Windows Vista)
    Address Book (Mac OS X v10.4.11 or later)
    Microsoft Entourage 2004 or Microsoft Entourage 2008.
    http://www.tcgeeks.com/the-ipad-2-sync-guide-contacts-calendars-email-photos/

Maybe you are looking for

  • Do I need Logic Pro 8.0.1 Update, and if so, how do I get it now?

    Do I need Logic Pro 8.0.1 Update, and if so, how do I get it now? Tuesday, 2008-07-29 Due to prolonged illness, I purchased the Logic Studio Upgrade version (I already had Logic Pro 7.2.3, with dongle) only last week. Logic Studio Upgrade version ini

  • Os x not recognize motorola moto g

    Hello, I have a macbook air with OS X Yosemite and when I connect my phone, the OS X does not recognize it. The phone is a Motorola Moto G 4G with Android 4.4.4. I have installed the drivers from the Motorola web but it doesn´t work. Please help

  • Movers Coupon

    I have a movers coupon and am thinking of using it on the PS4 bundle with GTA V and The Last of Us. Is this possible or is this excluded from it? I looked at terms and conditions and it doesnt seem like it is. Please check for me. SKU number is 86371

  • Screen Saver starts while playing DVD in Front Row (Tiger)

    Just recently, Screen Saver starts while playing a DVD in Front Row. This never used to happen and I suspect it's due to some software update. I know that Leopard users now have Settings within Front Row to disable the Screen Saver...but why is this

  • Why cant i install airport extreme 802.11n on my macbook running 10.8.4

    I just bought an airport extreme 802.11n and i cant install it on my macbook pro running 10.8.4. It says its not compatible. Im no genius, so if anyone can help, please go easy on me!