Can you still go to the corners and change screens?

I bought a new IMac and don't seem to be able to go to a corner and switch screens when I have multiple screens (windows) open. Is it no longer a feature?

Maybe:  System Preferences, Mission Control, Hot Corners (down in the lower left).
charlie

Similar Messages

  • Have an original iPhone 3G. Can you still sync iTunes (10.6) and Contacts after Lion install?

    Have an original iPhone 3G. Can you still sync iTunes (10.6) and Contacts after Lion install?

    An older iTunes will not open the library once used by a newer version.
    iTunes 10.6.3 will work with iOS6 as long as the hardware doesn't post-date the release of 10.7  Use iTunes 10.6.3 on both machines.
    iTunes 10.6.3.25 - http://support.apple.com/kb/DL1575

  • Hello, we have both Creative Cloud and Creative Cloud for teams. Can you help me with the difference and if i need to have both?

    Hello, we have both Creative Cloud membership and Creative Cloud for team. Can you help me with the difference and if i need to have both? We have 9 employees that are using it. Just not sure if i'm paying for something i don't need.
    Thank you

    Please refer to Creative Cloud Help | Creative Cloud / Common Questions
    CC is for retail use with 20 GB of storage space, CCT is where number of seats are purchased & assigned by one program admin where each seat gets 100GB of storage space.
    You can not have both the CC & team in one account as it will only provide you added storage space of 120 GB but you can activate the CC any of them or either of them twice as CC is based on Adobe ID.
    Regards
    Rajshree

  • When taking a picture with home button and sleep button can you get rid of the tool and task bar??

    When taking a picture with home and sleep button can you get rid of the tool and task bar?? (the search bars)

    No, but you can use any picture editing tool to crop out the bars.  (Many are free in the App Store.)  Me personally, I use PhotoPad, which I use to crop as well as rotate the screen shot.  Takes less than a minute to do both with PhotoPad.

  • Can you still not pair the iPad 2 to an iPhone

    I have been trying to pair my iPad 2 to my iPhone 4 via Bluetooth, when I turn on Bluetooth they both just stay in searching mode. I read that you couldn't do this but it was from last year so I'm wondering is this is still the case. Thanks in advanced and if there is a way to do this can you please let me know.

    Am having the same problem as a number of other people.
    Have set up a Personal Hotspot on my iPhone so that I can tether my iPad to the 3GS service and that way access internet without wifi.  The devices find each other using Bluetooth.  Hopefully that much is clear.
    It worked for a little while, but now both devices just keep searching and I've gotten a message that my iPad is "not supported."  Any experts out there?

  • Can you explain steps in the Async and Sync scenarios JDBC to RFC.

    Hi,
    Can you explain some basic steps in the Async and Sync scenarios for sending data from JDBC to RFC.
    Like,
    The data is picked up from the  database table through JDBC adapter.
    It is passed on to SAP  by calling the RFC. RFC gets executed         
    successfully. The status is returned by the RFC. The status needs to be
    updated back into the SQL database table.
    Is this a sync case or async case.
    What si the diffrences in the sync and async scenarios in the above JDBC to RFC scenarios.
    Soorya

    hi check the below link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5474f19e-0701-0010-4eaa-97c4f78dbf9b
    JDBC Synchronous call using BPM  
    Data Types -
    1) File Input
    2) JDBC Req
    3) JDBC Response
    4) File Response of similar type of JDBC Response.. ( This you can avoid also..let it be for first time)
    Message Types
    4 for each data type
    Message Interfaces
    1) Async, Outbound, Interface, to receieve the file
    2) Async, Inbound , Interface to send the file from XI
    3) Async, Absract , Interface of type File message type to recieve the message in the BPM
    4) Sync, Abstract Interface with Req message type as File Request, and Response Message type as a file Response
    5) Sync , Inbound interface for JDBC with Input message type as a JDBC Request and Output Message type as a JDBC Response
    Message Mapping:
    1)Mapping between File Req to the JDBC req
    2) JDBC Response to File Response
    Interface mapping:
    1) Sender Interface as a Sync,Abstract Interface created for the file type and target interface as Synchrnous JDBC interface.
    Use corresponding mapping for Req and Resp..
    note:reward points if solution found helpfull.....
    regards
    chandrakanth.k

  • Can you mix calls to the Posix and native thread librariess?

    Is it possible to mix calls to different thread libraries within the same process.
    We have a shared library interface to our product which is called from a customers application. In order to provide a thread safety we need to protect global data in this library with a mutex. However we do not know which thread library (if any) will be used by the calling application.
    If we used a Posix mutex in our library would it work if the calling application was implemented using non-Posix threads?
    Are the Posix and Solaris thead header files different interfaces to the same underlying implementation?
    What overheads are there loading the thread library when it is not needed? If for example the calling application was implemented without using threads.
    Would we have to test our interface with the different thread implementations available? eg /usr/lib/lwp/libthread.so, /usr/lib/sparcv9/libthread.so as well as /usr/lib/libthread.so.

    I know the author of the original post wrote this long ago, but I thought I'd write a reply in case anyone else stumbles on this like I just did.
    Is it possible to mix calls to different thread
    libraries within the same process.Yes. Though you have to be careful about compilation and link flags, and the order of libraries specified on the link command-line (-lpthread and -lthread). For complete information, refer to the Solaris "Multithreaded Programming Guide", available at http://docs.sun.com in the the Solaris 8 (or whatever version) Software Developer Collection.
    If we used a Posix mutex in our library would it work
    if the calling application was implemented using
    non-Posix threads?Yes.
    Are the Posix and Solaris thead header files different
    interfaces to the same underlying implementation?Yes, I believe so. POSIX specifies an interface. I think the Solaris threads implementation was part of the Solaris OS before pthreads were supported on it. Anyway Solaris really uses "LWPs" (Lightweight Processes) at the kernel level, and user-level threads (POSIX or Solaris threads) are mapped onto LWPs.
    What overheads are there loading the thread library
    when it is not needed? If for example the calling
    application was implemented without using threads.You should never link to the thread library when it is not needed. It results in unnecessary overhead. This is documented in the book mentioned above.
    Would we have to test our interface with the different
    thread implementations available? eg
    /usr/lib/lwp/libthread.so,
    /usr/lib/sparcv9/libthread.so as well as
    /usr/lib/libthread.so.I don't think so, but judge for yourself; I suspect if any inconsistent behavior is found it will have more to do with defects in these implementations than in your own code. On Solaris 8:
    - /usr/lib/libthread.so is the default Solaris threads library that does a many-to-many mapping of user-level threads to kernel-level-lwp's
    - /usr/lib/lwp/libthread.so is the "alternate" Solaris threads library that does a 1-to-1 mapping of user-level threads to kernel-level-lwp's
    - /usr/lib/sparcv9/libthread.so I think is the fully 64-bit version of the default libthread
    Hope this helps somebody.

  • My wife and I share an iTunes account, if I create her own account can she still access all the music and apps we have purchased together over the years?

    My wife and I have been sharing an iTunes accound and library on our own iPods then iPhones for years without much trouble. Now, Mai ly because of the cloud and a new desktop, I think it's time to create her own account but I don't want to have to repurchase all her music and apps. Is this poosible?
    Thanks!

    Yes, with the credentials of the account that the media/content was purchased with.
    Content is permanently tied to the account it is purchased with and cannot be merged, moved, or transferred to another account.

  • Apple TV - can you have 1 in the lounge and 1 in the bedroom and watch different things even if working off the same Wifi?

    Hi There!
    Sorry for what may be a stupid question but I really have no clue when it comes to Apple TV's!
    It is my boyfriends birthday coming up and I would love to get him an Apple TV for his gift. The problem I have is that he lives at home and his Dad already has a whole entertainment system thing going on in the lounge with the full works, including an apple TV which he controls from his ipad.
    If I was to get my boyfriend his own ATV for his bedroom, would this mean he could watch seperate content to his dad in the lounge? Can they be controlled seperately?
    As an additional qs, he doesnt have an iPad but has an iPhone - this is ok to use with it isnt it?
    Any advice would be greatly appreciated!
    Many thanks!

    Absolutely. During setup each AppleTV can be named differently (Bedroom ATV, Living Room ATV, AppleTV, etc). and then you have the option of password protecting it so you have some control over access.
    The iPhone has an app called Remote - and it works awesome. I've never used the iPad but my iPhone is a great replacement for that stick of gum they call a remote that comes with the ATV. It's a free app written by Apple... easy to find and braindead easy to use. It even gives you a touchpad like area to quickly scroll and select items on screen.
    The only thing that could be a deal breaker is wifi signal quality and wifi speed in his bedroom. If he can stream to other devices in his bedroom - the ATV will work perfectly.

  • Can you share spreadsheets between the mac and an ipad

    My wife downloaded numbers for her ipad and is working on a spreadsheet that she would like to open on our imac or mac book pro.  The spreadsheet is shared between her ipad and iphone; can it be shared via icloud with the imac?

    Yes. Go to the iCloud web site, log in, go to the Numbers tab, and drag the file from the web page to the desktop of your Mac.

  • If your ipod is stolen or lost can you still get back the photos?

    All i really need is the photos!!!

    And have your phone set to require a passcode before it can be accessed.

  • Can you run SQL in the portal and create a drop down list??

    Can anyone tell me if its possible to create a drop down list using sql in the portal?
    Can I create a drop down list of items via sql and then have those same values be used for a discoverer portlet? I am trying to replicate the same concept using parameter values and discoverer worksheets, but through sql. I dont want to have to cut and past lists on the parameter fields. I want to be able to run sql when I post a discoverer worksheet with a parameter and have the values from the sql pass into the worksheet.
    Is that possible???

    I created a lov but i cannot post it on my portlet. When i go to post a portlet, under the db_link, portlet reposistory it does not show.? Also, how do make the connection to the discoverer worsheets to this lov?
    thanks,

  • Can you rename "Trash" in the Dock and Mail in Lion? It sounds odd to us Brits.

    I just want to call it a bin.

    "Unless my memory has gone AWOL, my last OS (10.5) had the word "Eject" when a disc was dragged over the trash."
    It hasn't and that still is the case in Snow Leopard. I don't care for the use of "Trash" in Lion when ejecting a disk.
    I've submitted feedback to that extent.

  • Can you still work  when the internet goes down?

    Since internet service in this country is pretty unreliable, will that make it difficult to get work done when internet is down? Where I live, high speed internet isn't even available, so will I even be able to use Photoshop at all? Should I just find an alternative app?

    Your Creative Cloud desktop applications (such as Photoshop and Illustrator) are installed directly on your computer, so you won't need an ongoing Internet connection to use them on a daily basis.
    You will need to be online when you install and license your software. If you have an annual membership, you'll be asked to connect to the web to validate your software licenses every 30 days. 
    Please refer the below FAQ link for more details:
    http://www.adobe.com/in/products/creativecloud/faq.html
    -Harshit yadav

  • Wondering if one has not activated "find my device" on their ipod touch, can you still locate with the serial number?

    Wondering if one can locate an ipod touch if the "find my device" was not activated, all we have is the serial number?

    No.
    Barry

Maybe you are looking for

  • Accessories for Mac Pro

    Hi, guys. I have a problem here. I am looking for something that can protect against dust or something like that. Because my room is really not that clean, which means there's a lot of dust. I am worrying about the Mac Pro that will "eat" some dust.

  • Reports 6.0 (TABS missing in print/preview)

    I have created a paragraph (with TABS) using Oracle System Editor. When print using Reports, the TAB get replaced with a SPACE. Any ideas of how to get the TAB spacing in Reports? Thanks for and ideas. null

  • How to upgade Oracle from 9.2 on SUN to Oracle 10g R2 RAC on Oracle EL4

    Hi all, I have production database Oracle 9i EE Release 9.2.0.5.0 - 64bit on SunOS 5.9 cca 100GB. I would like to upgrade Oracle 10g Relase2 RAC with 2 nodes on Oracle Enterprise Linux. Database availability is 24x7 and system breakdown must be minim

  • Problems with Internationalisation

    Hi All, We have built an enterprise class, web based, J2EE application built on Orion Application Server, Apache Struts and Oracle (no surprises here :) ) database. The application is internationalised to cater to various European languages and the i

  • BUSINESS PROCESS CONVERTER

    I want to convert one Visio diagram to bmp diagram, but my diagram in visio not use bmp components neither use bmp models, in this cases is posible convert it? Or i need review my diagram and standarize with bmp complements before convert? I'm wainti