Why am I stuck in single app mode after upgrading to Lion?

I completed the upgrade to Lion (10.7.1) painlessly on my Mac Pro, but now when I switch to any application, either by clicking or using Command-Tab, it acts as though I have selected "Hide Others" from the application menu and hides all other open applications. I can't find any way to turn off this behavior. It's driving me crazy because I have a 27" monitor and want to have my mail and IM client visible at all times. Has anyone seen this before?

Hi Canes,
Sorry - not sure what you mean?
GB

Similar Messages

  • Single app mode with VPP Token Managed Distribution apps?

    For some reason, single app mode setting in Profile Manager will only pick up apps that have been purchased by the device/user Apple ID I.e. individuals personally purchased apps, it will not allow single app mode on pushed apps via VPP Token Managed distribution.
    My questions are:
    1) should it be possible to single app mode, after all MD is to help organisations 'manage' the devices? If so, what am I doing wrong?
    2) is it ethical that I can see users 'personally' purchased apps when MDM allows for 'dual' managed devices
    Any help would be most appreciated.

    iCab
    https://itunes.apple.com/us/app/icab-mobile-web-browser/id308111628?mt=8
    I've used iCab.  I've not used iCab's Kiosker mode.
    Robert

  • Profile Manager cannot set ibooks as single app mode in iOS

    Right now I had updated all my iPad to iOS 8.0.2, and the server is updated to the newest version,too.
    Sadly, When I want to setup the iPad to single app mode with iBooks, I cannot find it in the list.
    Is this means ibooks is no long support on the single app mode? Then why give us the new function about push ibooks?
    I have try the assistant function on my iPhone (8.0.2) itself, it can be locked in iBooks.
    Any one can tell me what is the problem?
    Many many thanks!

    HI Hines,
    I had the same problems after the 3.0.2 update: enrolling of devices not working, unable to push configurations from Profile Manager, etc.
    The update was a simple 3.0.1 => 3.0.2 on already updated OSX Mavericks to 10.9.1 and it seemed that all was ok, not like this situation: https://discussions.apple.com/message/24450438
    Services used:
    -Web
    -Profile Manager with 20 iPads/iPhones already enrolled and with some in-house app pushed
    I followed a solution similar to what suggested from Hines, apart from point #6. I was unable to re-download Server.app from App Store, greyed-out button.
    So I was very happy to have another mac to download a fresh copy of Server.app.
    Then:
    -Deleted and thrashed the old version
    -Message "all services stopped"
    -Reboot
    -Copied fresh "Server.app" to /Applications
    -Started "Server.app" that made some initial auto configuration
    -Services restarted
    I just had to restart the postgres service and seems that I didn't lost any data/config (I hope, I'm already checking!)
    =begin RANT
    I know that Apple is essentially an hardware manufacter manly for consumer target now but that a simple minor update broke an entire software meant to be solid, like a server must be, is just plain unacceptable.
    I know that OSX Server is very cheap and we can't pretend too much....but F**K...i loosed my sleep tonight!
    =end RANT

  • Single App Mode iOS 8 broken

    Hi there
    Noticing a problem with both Single App Mode and Guided Access Mode since iOS 8 upgrade, and not fixed by 8.0.2.
    Every time a link is pressed within a web view or any external URL request, the notice "Guided Access Enabled, triple tap the home button to exit" pops up in the top bar. We have a tonne of iPad Minis out on shows with clients that are locked into one single app using one of the two methods - Guided Access / Single App.
    This is a real problem since the notice is shows on every single external URL request or page load within a WebViewer.
    Anyone else had this problem or know of a way of fixing it? Looking like the only fix is to jailbreak, downgrade to iOS 7 and use that - a much more stable iOS release!
    Ollie

    Hi Ollie,
    I've found a workaround thanks to Chris from Kiosk Pro App.
    You need to transform all requests (only when Guided Access is on) with navigation type "UIWebViewNavigationTypeLinkClicked" to navigation type "UIWebViewNavigationTypeOther"
    One issue with this workaround is that the Guided Access message still appears for links using types "Form Submitted" and "Form Resubmitted". Trying to transform these types could potentially cause an error with loading the page.
    Here is an implementation by Blandine from Adaptive Channel :
    In the method :
    - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
    Just add  :
    if (UIAccessibilityIsGuidedAccessEnabled()) {
            if (navigationType == UIWebViewNavigationTypeLinkClicked ) {
                navigationType = UIWebViewNavigationTypeOther;
                [webView loadRequest:request];
                return NO;
    Hope it helps.
    Cheers,
    Mehdi

  • Full Screen Safari in Single App mode

    I'm trying to configure some ipads for use as web kiosks.  I can set Safari to single app mode and to only allow the one website we want used, but it still shows the bookmarks, share, new tab, and other buttons, along with the address bar, at the top.  I also tried configuring a web clip for the site, and setting the web clip to full screen mode.  That worked to get rid of the address bar etc, but if safari is in single app mode I can't launch the web clip, and if it's not in single app mode, the web clip works but other apps are also available.
    How can I get Safari locked down to single app mode and showing the website in full screen only?
    Thanks!

    iCab
    https://itunes.apple.com/us/app/icab-mobile-web-browser/id308111628?mt=8
    I've used iCab.  I've not used iCab's Kiosker mode.
    Robert

  • Single app mode in my IOS application

    I want to implement Single app mode in my IOS application through coding. For this I am doing the following steps:-
    1. I am supervising my device through apple configurator and using config profile generated by configurator itself.
    2. I have selected the restriction payload to generate my profile because I want single app mode functionality.
    3. According to apple documentation one key is added in Restriction payload that is “autonomousSingleAppModePermittedAppIDs” in IOS and later. But I am not able to find it anywhere to fill my bundle identifier. I have tried to add this key manually by editing the profile in text edit but this process invalidates my profile.
    Here is the link reference:-
    https://developer.apple.com/library/ios/featuredarticles/iPhoneConfigurationProf ileRef/Introduction/Introduction.html#//apple_ref/doc/uid/TP40010206-CH1-SW13
    Under Restrictions Payload section of the documentation.
    4.I have tried to generate my profile with the help of iPCU(iPhone configuration utility) as well but did not find anything.
    So please help me out what I am missing here or what else i need to do.
    Thanks
    Steven Meister

    Hi Ollie,
    I've found a workaround thanks to Chris from Kiosk Pro App.
    You need to transform all requests (only when Guided Access is on) with navigation type "UIWebViewNavigationTypeLinkClicked" to navigation type "UIWebViewNavigationTypeOther"
    One issue with this workaround is that the Guided Access message still appears for links using types "Form Submitted" and "Form Resubmitted". Trying to transform these types could potentially cause an error with loading the page.
    Here is an implementation by Blandine from Adaptive Channel :
    In the method :
    - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
    Just add  :
    if (UIAccessibilityIsGuidedAccessEnabled()) {
            if (navigationType == UIWebViewNavigationTypeLinkClicked ) {
                navigationType = UIWebViewNavigationTypeOther;
                [webView loadRequest:request];
                return NO;
    Hope it helps.
    Cheers,
    Mehdi

  • Need to hide battery/wifi status in single app mode on iPad

    I am running a dozen iPads in single app mode. The App "Live OEE". I'm using Apple configurator to push a restore, and restrict it to single app mode.
    Here's the problem, the first time it loads the app, everything works fine. But once the screen goes into auto lock, or is locked manually with the lock button, when it comes back up, the Wifi icon + ipad is on the left hand side and the battery status is on the right hand side at the top of the ipad screen. The text isn't really the problem, the problem is the wifi logo + the word "ipad" is blocking the "back" button in this app. I can't click the back button (easily, the VERY corner works like 20% of the time). This is a usage issue as the back button is pretty critical to the operation of the app.
    Thanks,

    Never mind.  I found it it was due to a default setting in Quicksilver, which i just recently installed.  This other question solved my problem:
    https://discussions.apple.com/message/10230913#10230913
    I searched a while and couldn't find anything to match my problem on the forums.  However, i wasn't sure what terms to use to describe my problem because they are all generic.

  • Why are websites in firefox loading in an index mode after upgrading to mountain lion?

    why are websites in firefox loading in an index mode after upgrading to mountain lion?

    Hi Canes,
    Sorry - not sure what you mean?
    GB

  • IPhone 5 stuck in portrait mode after upgrade to iOS 8

    iPhone 5 stuck in portrait mode after upgrade to iOS 8.
    Phone was fine before the upgrade, iOS 8.1 did not fix the issue.
    Have done a factory reset at Genius bar and they say it's a hardware issue and have gotten this response below:
    "Now, when you perform an update to any iOS device many system checks are run to verify that all components are working as they should. This is part of the firmware update process. When these checks are run sometimes issues are detected, even if all seemed to be running well previously. When this happens one of two things can occur. Either the hardware will be deactivated completely, or it will be locked in a state of use so that the device can still be used. In the case of the gyroscope for screen rotation, the firmware locks in place so that while not perfect, the device can still remain on some functioning level. This is what appears to have happened when you updated. The software itself did not cause any failure, but it detected a currently upcoming issue and prevented it from becoming worse."
    All I want is a replacement but they want me to pay £199 since it's out of warranty.
    Anyone have the same issue?

    If the device is out of warranty you must pay the out of warranty replacement fee to have your iPhone replaced. If the phone was still under warranty the phone would have been replaced at no charge.

  • Why does Calendar not go back to all entries in list mode after upgrading to iOS 6?

    Why does Calendar not go back to all entries in list mode after upgrading to iOS6?

    I have an iPhone 5 running at iOS7.1.1. The Calendar list mode previous to iOS 6 showed all past entries, which I found very useful. After the upgrade, it only showed the previous 12 months (as I recall). All past entries are still present, you just have to exit list mode to see them. I'm asking this now after finding the forum for the answer to rediscover the list function in iOS 7.

  • My iPhone is stuck in the recovery mode after downloading iOS7.  i Tunes screen reads "Waiting for iPhone".  It's been waiting for two days.  Can anyone help?

    My iPhone 4 is stuck in the recovery mode after downloading iOS7.   iTunes screen reads "Waiting for iPhone".  It's been waiting for two days.  Can anyone help?

    Hi Imw7996,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    iOS: Unable to update or restore
    http://support.apple.com/kb/ht1808
    Cheers,
    - Judy

  • Why can't i access the app store after Mountain Lion install?

    Why can't i access the app store after Mountain Lion install?

    Hi There,
    What happens when you try to access it?   You've not given a lot of information for people to help you.

  • Why can't I use word, excel etc after upgrading OS X lion ?

    Why can´t I use word,excel etc after upgrading too OS X Lion ?

    Office 2004 is a PowerPC app that requires Rosetta to run. Roseeta and thus all PPC aps are not supported on Lion. Further Office 2008's Installer is a PPC app. Office 2008 will run if installed before installing Lion, but you cannot install it from Original Office 2008 Media after installing Lion.
    Steve

  • HT1338 Why is my MacBook Pro running so slow after installing Mountain Lion 10.8.

    Why is my MacBook Pro running so slow after installing Mountain Lion 10.8. I have restarted, created more free space on my hard drive and run disk utilities. Simple operations result 20 seconds or more of the spinning wheel. Some are so slow that the operation does not happen at all. Itunes music cuts out during operations.

    Check out this article by Thomas Reed for help http://www.reedcorner.net/understanding-upgrade-nightmares/. Also, make sure all apps are compatible with Mountain Lion using www.roaringapps.com. Do you have any antivirus installed? Make sure all apps are updated as well.

  • Why can't I use my Photoshop or AppleWorks after upgrade to Lion?

    Why can't I use my Photoshop or AppleWorks after upgrade to Lion?

    PowerPC apps and the Rosetta software are no longer supported.
    Here is a remnant of what was
    http://www.apple.com/asia/rosetta/

Maybe you are looking for

  • IDOC  Delayed in SAP to XI

    Hi Gurus , An IDOC is resent and there is a delay from SAP to XI changing sales order . Pls tell me a valid reason for this . Thanks in advance

  • Iphoto crushed after new update 9.1.3.. need help please

    When i open Iphoto there is no library and there is a litlle circle .. to me it seems like is a loading circle but is doenst go any futher than that ... this is one of the errors i got Process:         iPhoto [129] Path:            /Applications/iPho

  • Firefox won't display Courier

    Firefox 14 simply won't display Courier on my system. Every instance of Courier is replaced by Courier New, and it makes my website look improper (I want the aliased look of the original Courier font). Why won't Firefox 14 use Courier?

  • How do I stop the auto generation of previews to imported files?

    In a recent post it was suggested that I do not let Aperture automatically generate the previews to all imported files. I think that is a great idea, but how do I stop the auto generation of such files? Under Preferences/Previews I have unchecked the

  • ABAP certificatrion

    Hi , I want to do certification in abap . if somebody has the training material as per certification please send it to my email id :  [email protected] . Regards