UIApplicationExitsOnSuspend in AIR 2.6

UIApplicationExitsOnSuspend in AIR 2.6, this does not apply. Who can do that?

dreamsandcreations wrote:
I got it working by using:
<key>UIApplicationExitsOnSuspend</key>
<true />
I just wanted to confirm that dreamsandcreations post does work. Did this in AIR 3.2 on an iPad2 application deployment. Thanks

Similar Messages

  • Air 3.7 Flash Builder 4.6

    I am trying to get the GeoLocation to work on an iPhone 5
    This current Config is working under Android
    On  IPhone I keep getting Muted
    Here is my app.xml
    Can you let me know where i am going wrong..
    Thanks for your time..
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/3.7">
              <id>com.xxxx.xxxxxx.xxxxxxx</id>
    <filename>Waypoints</filename>
    <name><text xml:lang="en">Waypoints SE</text></name>
    <versionNumber>2.2.0</versionNumber>
    <versionLabel>Pre Release 2.24</versionLabel>
    <autoOrients>false</autoOrients>
            <fullScreen>true</fullScreen>
            <visible>true</visible>
            <softKeyboardBehavior>none</softKeyboardBehavior>
    <….
    ….>
    <iPhone>
    <InfoAdditions>
    <![CDATA[
              <key>UIDeviceFamily</key>
                        <string>1</string>
              <key>UIRequiredDeviceCapabilities</key>
                   <string>location-services</string>
            <key>UIRequiredDeviceCapabilities</key>
                          <string>gps</string>   
             <key>UIBackgroundModes</key>
                           <string>location</string>
             <key>UIApplicationExitsOnSuspend</key>
                               <true/>
      ]]>
    </InfoAdditions>
    <requestedDisplayResolution>high</requestedDisplayResolution>
    </iPhone>
    public function start_gps():void
                                  geo = new Geolocation();
                                  if (Geolocation.isSupported)
      //Initialize the location sensor.
      // So if a device has GPS and is not on
      // the Device is give you the GPS Coord
      // from the network carrier
      // if the GPS is on the Polling is Much faster
      // than coming from the network carrier.
                                            if(! geo.muted)
      //          trace("GPS CLASS GPS is ENABLED " );
                                                      gpsStatus = 'ENABLED';
                                                      geo.addEventListener(GeolocationEvent.UPDATE, onLocationUpdate);
                                                      this.dispatchEvent(new Event("GPSON"));
                                                      this.change_refresh_rate(0);
                                            else
      //          trace("GPS CLASS GPS is ENABLED " );
                                                      gpsStatus = 'MUTED';
                                                      dispatchEvent(new Event("GPSOFF"));
      else
      // trace("GPS CLASS GPS Hardware not Available " );
                                            gpsStatus = 'NA';
                                            this.dispatchEvent(new Event("GPS_ABSENT"));

    Finally Figure it out..
    geo = new Geolocation();
    geo.addEventListener(GeolocationEvent.UPDATE, onLocationUpdate);
    has to be executed before checking if it is muted.
    geo.addEventListener(GeolocationEvent.UPDATE, onLocationUpdate);
    Is what requests permissions from the phone to use the gps.
    Hope this saves someone alot of time.
    Tested With Flex 4.9.0 Air 3.8 Beta.

  • AIR iOS URL Scheme

    I'm developing an AIR for iOS app for my client to run on an iPad, and my app needs to be able to launch other apps using a URL scheme, and also to be launched by another app, by receiving a URL scheme from it. From what I have read, it would appear that AIR for iOS apps can receive and respond to URL schemes, but they cannot send URL schemes to launch other apps, due to security restrictions.
    Does anyone know if it is possible to both send and receive URL schemes?

    Yes, you can.
    Open installed "Wikitude" app can be done via this script
    import flash.events.MouseEvent;
    btn.addEventListener(MouseEvent.CLICK, callURL);
    function callURL(e:MouseEvent):void{
        navigateToURL(new URLRequest("wikitude://"));
    Same way you can open your app from any other. In example above Wikitude app it's URI id. The same as below iPadARIconAppB
    Here is part of Application-xml.xml descriptor from my old project:
    <iPhone>
        <InfoAdditions><![CDATA[
      <key>UIDeviceFamily</key>
      <array>
        <string>1</string>
        <string>2</string>
      </array>
      <key>CFBundleURLTypes</key>
      <array>
        <dict>
          <key>CFBundleURLName</key>
          <string>com.camel.geo.iPadARIconAppB.iPadARIconAppB-scheme</string>
          <key>CFBundleURLSchemes</key>
          <array>
            <string>iPadARIconAppB</string>
          </array>
        </dict>
      </array>
      <key>UIApplicationExitsOnSuspend</key>
      <true/>
    ]]></InfoAdditions>
        <requestedDisplayResolution>standard</requestedDisplayResolution>
      </iPhone>
    You need to change CFBundleURLName to your app ID by my sample and CFBundleURLSchemes put there your own app name.
    If you want open your app from any other - you must open "iPadARIconAppB://" and if you need pass params - just make "iPadARIconAppB://myparams" and read it via Invoke from Adobe Air.
    Air is great and allow many things

  • Air 3.3 and background ios apps

    Hi All
    I cannot find some coherent information on this so I am asking here.
    I need to write an iOS app that needs to perform a webservice call every x minutes to update the slqite db on the device, even if the application is not running in the foreground.
    From google what I could find out was that iOS will only allow your app to run a small time after closing(to finish an upload etc).
    e.g. "AIR does not provide support for this iOS background processing model":  http://www.adobe.com/devnet/air/articles/considerations-air-apps-mobile.html#articleconten tAdobe_numberedheader_5
    but then later " applications may now support location updates and networking in the background": http://forums.adobe.com/message/4380335http://forums.adobe.com/message/4380335
    Can I do what I need in Air 3.3+ an iOS 5.1+ ?
    Thank You

    Some of the statements in this thread are no longer true, or need to be updated.
    Here is a recap:
    As of AIR 3.9, background execution will work on iOS+Android with render mode set to 'direct' ( which implies that you are using Stage3D ).
    For background execution to work in iOS, you need:
    to set NativeApplication.nativeApplication.executeInBackground = true, in your as3 code somewhere ( note: strangely, background exec on iOS has worked for me in the past even by not doing that ).
    to add in the iPhone section of your app manifest ( *-app.xml ):
    UIApplicationExitsOnSuspend = false
    UIBackgroundModes = audio ( and/or location, or some other background mode ).
    a good excuse / reason :  since battery-gate on the iPhone4, Apple has  tightened its policies regarding background execution.  For example:  last time I tried, setting UIBackgroundModes=audio was only allowed if the app was intended to play a sound persistently in the background ( not occasionally, such as an alarm clock sound ).
    For local notifications, I recommend Distriqt's local notification ANE ( Android+iOS), since it's the ony one I know which uses the AlarmManager api on Android ( Koesler's Android Local notif doesn't last time I checked ).  This means that on Android, the local notification can be scheduled for a later time ( same as iOS ), and will fire EVEN if the app is either minimized or has been closed properly ( meaning closed by the OS, or by the user via NativeApplication.nativeApplication.exit() -- note: force-stopping is the exception and cancels scheduled notifications on Android ).  You can also have the local notification play a custom sound which is up to 30 secs long ( mp3s on Android / cafs on iOS).  Sound will be audible on both platforms, even if the device is suspended.  This is ideal for an alarm-clock, for example.  The downside of local notifs is that they don't execute code, per se, however they can pass a data payload ( text ) back to the app, if it is running ( even if minimized ), which a handler can receive to do stuff.

  • FB 4.6 / Air 3.4 / Any issue with 3GS

    Hi all,
    I've been working on a mobile app for a while and I did suscessfull tests on a 3GS (was Air 3.3)
    Now, I'm running with air 3.4 and I can't install anymore my app on a 3GS (application non compliant message)
    I may have change others things than the air version but I don't see what could be the issue.
    Any advice on this ?
    Thanks

    Just a compement ...
    I'm building with Windows 7 and by descriptor file is :
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/3.4">
              <id>XXXXXXXX</id>
              <filename>GenericTest</filename>
              <name>GenericTest</name>
              <versionNumber>0.0.13</versionNumber>
              <initialWindow>
                        <content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
                        <autoOrients>true</autoOrients>
            <fullScreen>false</fullScreen>
            <visible>true</visible>
            <softKeyboardBehavior>none</softKeyboardBehavior>
            <renderMode>cpu</renderMode>   
        </initialWindow>
              <icon>
                        <image16x16>assets/icons/icon16.png</image16x16>
                        <image32x32>assets/icons/icon32.png</image32x32>
                        <image36x36>assets/icons/icon36.png</image36x36>
                        <image48x48>assets/icons/icon48.png</image48x48>
                        <image57x57>assets/icons/icon57.png</image57x57>
                        <image72x72>assets/icons/icon72.png</image72x72>
                        <image114x114>assets/icons/icon114.png</image114x114>
                        <image128x128>assets/icons/icon128.png</image128x128>
                        <image512x512>assets/icons/icon512.png</image512x512>
              </icon>
              <iPhone>
                        <InfoAdditions>
                <![CDATA[
                    <key>UIDeviceFamily</key>
                    <array>
                        <string>1</string> <!-- iPhone -->
                        <string>2</string> <!-- iPad -->
                    </array>
                                            <key>UIRequiresPersistentWiFi</key>
                    <string>YES</string>               
                          <key>UIApplicationExitsOnSuspend</key>
                          <string>YES</string>     
                          <key>UIRequiredDeviceCapabilities</key>
                    <array>
                       <string>gps</string>
                       <string>camera-flash</string>
                     </array>
                ]]>
            </InfoAdditions>
                        <Entitlements>
                <![CDATA[
                          <key>get-task-allow</key>
                          <true/>
                          <key>aps-environment</key>
                          <string>development</string>
                          <key>application-identifier</key>
                          <string>XXXXXXXX.GenericTest</string>
                    <key>keychain-access-groups</key>
                    <array>
                        <string>2XWA95BMEJ.*</string>
                    </array>
                ]]>
            </Entitlements>
                        <requestedDisplayResolution>standard</requestedDisplayResolution>
              </iPhone>
      </application>
    Any help would be welcome !!!!

  • I am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier

    i am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier photo please help me to recover my photos

    Well I'll guess you're using iPhoto 11:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Error in installing Adobe AIR runtime (Windows)

    I've been trying to install TeeBoard to be used with OBS, however, AIR will not install no matter what i do. I've followed all the help on the support page and none of it worked. It keeps saying i need administrator access even though i'm running it as an administrator. Additionally, every time i double click a .air extension to try and install the application it wont open up with the windows installer.
    [2014-03-10:19:54:56] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2014-03-10:19:54:56] Commandline is: -silent -eulaAccepted -programMenu AdobeHelp.air
    [2014-03-10:19:54:56] No installed runtime detected
    [2014-03-10:19:54:56] Invoking Application Installer for combined install
    [2014-03-10:19:54:56] Launching subprocess with commandline C:\Users\JONATH~1\AppData\Local\Temp\AIR1D44.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIR1D44.tmp -silent -withRuntime -url -programMenu -eulaAccepted file:///C:/Users/Jonathon%20Beliveau/Downloads/Adobe%20CS6%20Master%20Collection/payloads /AdobeHelp/AdobeHelp.air
    [2014-03-10:19:54:56] Application Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2014-03-10:19:54:56] Commandline is: -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIR1D44.tmp -silent -withRuntime -url -programMenu -eulaAccepted file:///C:/Users/Jonathon%20Beliveau/Downloads/Adobe%20CS6%20Master%20Collection/payloads /AdobeHelp/AdobeHelp.air
    [2014-03-10:19:54:56] No installed runtime detected
    [2014-03-10:19:54:56] Unpackaging file:///C:/Users/Jonathon%20Beliveau/Downloads/Adobe%20CS6%20Master%20Collection/payloads /AdobeHelp/AdobeHelp.air to C:\Users\Jonathon Beliveau\AppData\Local\Temp\fla28A9.tmp
    [2014-03-10:19:55:01] Application signature verified
    [2014-03-10:19:55:01] Unpackaging/validation complete
    [2014-03-10:19:55:01] Converting unpackaged application to a native installation package in C:\Users\Jonathon Beliveau\AppData\Local\Temp\fla398B.tmp
    [2014-03-10:19:55:01] Native installation package creation succeeded
    [2014-03-10:19:55:01] Starting silent combined runtime and app install.
    Installing runtime version 3.1.0.4880.
    Installing app chc.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 4.0.244 to C:\Program Files (x86)\Adobe using the source file at file:///C:/Users/Jonathon%20Beliveau/Downloads/Adobe%20CS6%20Master%20Collection/payloads /AdobeHelp/AdobeHelp.air
    [2014-03-10:19:55:01] Installing msi at C:\Users\JONATH~1\AppData\Local\Temp\AIR1D44.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2014-03-10:19:55:03] Installing msi at C:\Users\Jonathon Beliveau\AppData\Local\Temp\fla398B.tmp\setup.msi with guid {7451619F-5377-BE39-26FC-4685CB012ABB}
    [2014-03-10:19:55:07] Application Installer end with exit code 0
    [2014-03-10:19:55:07] Subprocess app installer succeeded
    [2014-03-10:19:55:07] Runtime Installer end with exit code 0
    [2014-03-10:19:57:49] Runtime Installer begin with version 2.7.1.19600 on Windows 7 x86
    [2014-03-10:19:57:49] Commandline is: -silent -eulaAccepted -programMenu WidgetBrowser.air
    [2014-03-10:19:57:49] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-03-10:19:57:49] Invoking Application Installer for combined install
    [2014-03-10:19:57:49] Launching subprocess with commandline C:\Users\JONATH~1\AppData\Local\Temp\AIRC5A3.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIRC5A3.tmp -silent -withRuntime -url -programMenu -eulaAccepted file:///C:/Users/Jonathon%20Beliveau/Downloads/Adobe%20CS6%20Master%20Collection/payloads /AdobeDreamweaverWidgetsBrowser1.0-mul/WidgetBrowser.air
    [2014-03-10:19:57:49] Application Installer begin with version 2.7.1.19600 on Windows 7 x86
    [2014-03-10:19:57:49] Commandline is: -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIRC5A3.tmp -silent -withRuntime -url -programMenu -eulaAccepted file:///C:/Users/Jonathon%20Beliveau/Downloads/Adobe%20CS6%20Master%20Collection/payloads /AdobeDreamweaverWidgetsBrowser1.0-mul/WidgetBrowser.air
    [2014-03-10:19:57:49] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-03-10:19:57:50] Unpackaging file:///C:/Users/Jonathon%20Beliveau/Downloads/Adobe%20CS6%20Master%20Collection/payloads /AdobeDreamweaverWidgetsBrowser1.0-mul/WidgetBrowser.air to C:\Users\Jonathon Beliveau\AppData\Local\Temp\flaCE89.tmp
    [2014-03-10:19:57:50] Application signature verified
    [2014-03-10:19:57:50] Unpackaging/validation complete
    [2014-03-10:19:57:50] No app located for appID 'com.adobe.WidgetBrowser' and pubID ''
    [2014-03-10:19:57:50] Converting unpackaged application to a native installation package in C:\Users\Jonathon Beliveau\AppData\Local\Temp\flaD0DA.tmp
    [2014-03-10:19:57:51] Native installation package creation succeeded
    [2014-03-10:19:57:51] Starting silent app installation to C:\Program Files (x86)\Adobe. Installing app com.adobe.WidgetBrowser version 2.0 Build 348 using the source file at file:///C:/Users/Jonathon%20Beliveau/Downloads/Adobe%20CS6%20Master%20Collection/payloads /AdobeDreamweaverWidgetsBrowser1.0-mul/WidgetBrowser.air
    [2014-03-10:19:57:51] Installing msi at C:\Users\Jonathon Beliveau\AppData\Local\Temp\flaD0DA.tmp\setup.msi with guid {1907FB7F-C178-4C59-AB2B-1075AFF15FEB}
    [2014-03-10:19:57:52] Application Installer end with exit code 0
    [2014-03-10:19:57:52] Subprocess app installer succeeded
    [2014-03-10:19:57:52] Runtime Installer end with exit code 0
    [2014-09-21:01:35:35] Runtime Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:35:35] Commandline is:
    [2014-09-21:01:35:35] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:35:40] Relaunching with elevation
    [2014-09-21:01:35:40] Launching subprocess with commandline c:\users\jonath~1\appdata\local\temp\air3cfc.tmp\adobe air installer.exe -ei
    [2014-09-21:01:35:41] Runtime Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:35:41] Commandline is: -stdio \\.\pipe\AIR_10716_0 -ei
    [2014-09-21:01:35:41] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:35:42] Starting silent runtime update. Updating runtime from version 3.1.0.4880 to version 15.0.0.249
    [2014-09-21:01:35:42] Installing msi at c:\users\jonath~1\appdata\local\temp\air3cfc.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-09-21:01:35:43] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:35:43] Rolling back install of c:\users\jonath~1\appdata\local\temp\air3cfc.tmp\setup.msi
    [2014-09-21:01:35:43] Rollback complete
    [2014-09-21:01:35:43] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:35:43] Runtime Installer end with exit code 7
    [2014-09-21:01:36:13] Runtime Installer end with exit code 7
    [2014-09-21:01:36:41] Runtime Installer begin with version 15.0.0.249 on Windows Vista x86
    [2014-09-21:01:36:41] Commandline is:
    [2014-09-21:01:36:41] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:36:46] Relaunching with elevation
    [2014-09-21:01:36:46] Launching subprocess with commandline c:\users\jonath~1\appdata\local\temp\air3fab.tmp\adobe air installer.exe -ei
    [2014-09-21:01:36:47] Runtime Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:36:47] Commandline is: -stdio \\.\pipe\AIR_10476_0 -ei
    [2014-09-21:01:36:47] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:36:48] Starting silent runtime update. Updating runtime from version 3.1.0.4880 to version 15.0.0.249
    [2014-09-21:01:36:48] Installing msi at c:\users\jonath~1\appdata\local\temp\air3fab.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-09-21:01:36:48] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:36:48] Rolling back install of c:\users\jonath~1\appdata\local\temp\air3fab.tmp\setup.msi
    [2014-09-21:01:36:48] Rollback complete
    [2014-09-21:01:36:48] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:36:48] Runtime Installer end with exit code 7
    [2014-09-21:01:36:50] Runtime Installer end with exit code 7
    [2014-09-21:01:37:12] Runtime Installer begin with version 15.0.0.249 on Windows Vista x86
    [2014-09-21:01:37:12] Commandline is:
    [2014-09-21:01:37:12] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:37:17] Relaunching with elevation
    [2014-09-21:01:37:17] Launching subprocess with commandline c:\users\jonath~1\appdata\local\temp\airbb40.tmp\adobe air installer.exe -ei
    [2014-09-21:01:37:17] Runtime Installer begin with version 15.0.0.249 on Windows Vista x86
    [2014-09-21:01:37:17] Commandline is: -stdio \\.\pipe\AIR_10276_0 -ei
    [2014-09-21:01:37:17] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:37:17] Starting silent runtime update. Updating runtime from version 3.1.0.4880 to version 15.0.0.249
    [2014-09-21:01:37:17] Installing msi at c:\users\jonath~1\appdata\local\temp\airbb40.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-09-21:01:37:18] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:37:18] Rolling back install of c:\users\jonath~1\appdata\local\temp\airbb40.tmp\setup.msi
    [2014-09-21:01:37:18] Rollback complete
    [2014-09-21:01:37:18] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:37:18] Runtime Installer end with exit code 7
    [2014-09-21:01:37:19] Runtime Installer end with exit code 7
    [2014-09-21:01:37:57] Application Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2014-09-21:01:37:57] Commandline is: "C:\Users\Jonathon Beliveau\Downloads\TeeBoard\TeeBoard v0.1.5.air"
    [2014-09-21:01:37:57] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:37:58] Unpackaging file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air to C:\Users\Jonathon Beliveau\AppData\Local\Temp\fla7877.tmp
    [2014-09-21:01:37:58] Unpackaging/validation complete
    [2014-09-21:01:37:58] Application has unknown namespace http://ns.adobe.com/air/application/3.7. Attempting immediate runtime update
    [2014-09-21:01:37:58] Begin runtime update download from http://airdownload.adobe.com/air/3/windows/x86/add/3.7/update
    [2014-09-21:01:37:58] Download destination is C:\Users\Jonathon Beliveau\AppData\Roaming\Adobe\AIR\Updater\Update
    [2014-09-21:01:37:58] Unpackaging http://airdownload.adobe.com/air/3/windows/x86/add/3.7/update to C:\Users\Jonathon Beliveau\AppData\Roaming\Adobe\AIR\Updater\Update
    [2014-09-21:01:38:16] Unpackaging complete
    [2014-09-21:01:38:16] Download success
    [2014-09-21:01:38:16] Successfully downloaded immediate update. Invoking downloaded installer
    [2014-09-21:01:38:16] Launching subprocess with commandline C:\Users\Jonathon Beliveau\AppData\Roaming\Adobe\AIR\Updater\Update\updater -x1 file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:38:17] Application Installer end with exit code 0
    [2014-09-21:01:38:19] Runtime Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:38:19] Commandline is: -x1 file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:38:19] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:38:19] Invoking Application Installer for combined install
    [2014-09-21:01:38:19] Launching subprocess with commandline C:\Users\JONATH~1\AppData\Local\Temp\AIRC1C5.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIRC1C5.tmp -withRuntime -url file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:38:19] Application Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:38:19] Commandline is: -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIRC1C5.tmp -withRuntime -url file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:38:19] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:38:20] Unpackaging file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air to C:\Users\Jonathon Beliveau\AppData\Local\Temp\flaCEA1.tmp
    [2014-09-21:01:38:21] Application signature verified
    [2014-09-21:01:38:21] Unpackaging/validation complete
    [2014-09-21:01:38:21] No app located for appID 'be.gip.twitch.TeeBoard' and pubID ''
    [2014-09-21:01:38:33] Converting unpackaged application to a native installation package in C:\Users\Jonathon Beliveau\AppData\Local\Temp\fla329.tmp
    [2014-09-21:01:38:34] Native installation package creation succeeded
    [2014-09-21:01:38:34] Launching subprocess with commandline C:\Users\JONATH~1\AppData\Local\Temp\AIRC1C5.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIRC1C5.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files (x86)\Air\Gip" -desktopShortcut -programMenu file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:38:34] Relaunching with elevation
    [2014-09-21:01:38:36] Application Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:38:36] Commandline is: -stdio \\.\pipe\AIR_3768_0 -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIRC1C5.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files (x86)\Air\Gip" -desktopShortcut -programMenu file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:38:36] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:38:36] Unpackaging file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air to C:\Users\Jonathon Beliveau\AppData\Local\Temp\flaECC.tmp
    [2014-09-21:01:38:37] Application signature verified
    [2014-09-21:01:38:37] Unpackaging/validation complete
    [2014-09-21:01:38:37] No app located for appID 'be.gip.twitch.TeeBoard' and pubID ''
    [2014-09-21:01:38:37] Converting unpackaged application to a native installation package in C:\Users\Jonathon Beliveau\AppData\Local\Temp\fla1265.tmp
    [2014-09-21:01:38:38] Native installation package creation succeeded
    [2014-09-21:01:38:38] Starting silent combined runtime update and app install.
    Updating runtime from version 3.1.0.4880 to version 15.0.0.249.
    Installing app be.gip.twitch.TeeBoard version 0.1.5 to C:\Program Files (x86)\Air\Gip  using the source file at file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:38:38] Installing msi at C:\Users\JONATH~1\AppData\Local\Temp\AIRC1C5.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-09-21:01:38:38] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:38:38] Rolling back install of C:\Users\JONATH~1\AppData\Local\Temp\AIRC1C5.tmp\setup.msi
    [2014-09-21:01:38:38] Rollback complete
    [2014-09-21:01:38:38] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:38:38] Elevated install failed: error 0 1603
    [2014-09-21:01:38:39] Application Installer end with exit code 7
    [2014-09-21:01:38:47] Application Installer end with exit code 7
    [2014-09-21:01:38:48] Subprocess app installer failed (7)
    [2014-09-21:01:38:48] Runtime Installer end with exit code 7
    [2014-09-21:01:38:59] Application Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2014-09-21:01:38:59] Commandline is: "C:\Users\Jonathon Beliveau\Downloads\TeeBoard\TeeBoard v0.1.5.air"
    [2014-09-21:01:38:59] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:38:59] Unpackaging file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air to C:\Users\Jonathon Beliveau\AppData\Local\Temp\fla692B.tmp
    [2014-09-21:01:39:00] Unpackaging/validation complete
    [2014-09-21:01:39:00] Application has unknown namespace http://ns.adobe.com/air/application/3.7. Attempting immediate runtime update
    [2014-09-21:01:39:00] Begin runtime update download from http://airdownload.adobe.com/air/3/windows/x86/add/3.7/update
    [2014-09-21:01:39:00] Download destination is C:\Users\Jonathon Beliveau\AppData\Roaming\Adobe\AIR\Updater\Update
    [2014-09-21:01:39:00] Unpackaging http://airdownload.adobe.com/air/3/windows/x86/add/3.7/update to C:\Users\Jonathon Beliveau\AppData\Roaming\Adobe\AIR\Updater\Update
    [2014-09-21:01:39:04] Unpackaging complete
    [2014-09-21:01:39:04] Download success
    [2014-09-21:01:39:04] Successfully downloaded immediate update. Invoking downloaded installer
    [2014-09-21:01:39:04] Launching subprocess with commandline C:\Users\Jonathon Beliveau\AppData\Roaming\Adobe\AIR\Updater\Update\updater -x1 file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:39:04] Application Installer end with exit code 0
    [2014-09-21:01:39:07] Runtime Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:39:07] Commandline is: -x1 file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:39:07] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:39:07] Invoking Application Installer for combined install
    [2014-09-21:01:39:07] Launching subprocess with commandline C:\Users\JONATH~1\AppData\Local\Temp\AIR7B15.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIR7B15.tmp -withRuntime -url file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:39:08] Application Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:39:08] Commandline is: -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIR7B15.tmp -withRuntime -url file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:39:08] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:39:08] Unpackaging file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air to C:\Users\Jonathon Beliveau\AppData\Local\Temp\fla8A80.tmp
    [2014-09-21:01:39:09] Application signature verified
    [2014-09-21:01:39:09] Unpackaging/validation complete
    [2014-09-21:01:39:09] No app located for appID 'be.gip.twitch.TeeBoard' and pubID ''
    [2014-09-21:01:39:17] Converting unpackaged application to a native installation package in C:\Users\Jonathon Beliveau\AppData\Local\Temp\flaAD6C.tmp
    [2014-09-21:01:39:17] Native installation package creation succeeded
    [2014-09-21:01:39:17] Launching subprocess with commandline C:\Users\JONATH~1\AppData\Local\Temp\AIR7B15.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIR7B15.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files (x86)\Air\Gip" -desktopShortcut -programMenu file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:39:17] Relaunching with elevation
    [2014-09-21:01:39:19] Application Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:39:19] Commandline is: -stdio \\.\pipe\AIR_9760_0 -runtime C:\Users\JONATH~1\AppData\Local\Temp\AIR7B15.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files (x86)\Air\Gip" -desktopShortcut -programMenu file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:39:19] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-09-21:01:39:19] Unpackaging file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air to C:\Users\Jonathon Beliveau\AppData\Local\Temp\flaB788.tmp
    [2014-09-21:01:39:20] Application signature verified
    [2014-09-21:01:39:20] Unpackaging/validation complete
    [2014-09-21:01:39:20] No app located for appID 'be.gip.twitch.TeeBoard' and pubID ''
    [2014-09-21:01:39:20] Converting unpackaged application to a native installation package in C:\Users\Jonathon Beliveau\AppData\Local\Temp\flaBAC4.tmp
    [2014-09-21:01:39:21] Native installation package creation succeeded
    [2014-09-21:01:39:21] Starting silent combined runtime update and app install.
    Updating runtime from version 3.1.0.4880 to version 15.0.0.249.
    Installing app be.gip.twitch.TeeBoard version 0.1.5 to C:\Program Files (x86)\Air\Gip  using the source file at file:///C:/Users/Jonathon%20Beliveau/Downloads/TeeBoard/TeeBoard%20v0.1.5.air
    [2014-09-21:01:39:21] Installing msi at C:\Users\JONATH~1\AppData\Local\Temp\AIR7B15.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-09-21:01:39:21] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:39:21] Rolling back install of C:\Users\JONATH~1\AppData\Local\Temp\AIR7B15.tmp\setup.msi
    [2014-09-21:01:39:21] Rollback complete
    [2014-09-21:01:39:21] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:39:21] Elevated install failed: error 0 1603
    [2014-09-21:01:39:22] Application Installer end with exit code 7
    [2014-09-21:01:39:23] Application Installer end with exit code 7
    [2014-09-21:01:39:23] Subprocess app installer failed (7)
    [2014-09-21:01:39:23] Runtime Installer end with exit code 7
    [2014-09-21:01:44:06] Runtime Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:44:06] Commandline is:
    [2014-09-21:01:44:06] No installed runtime detected
    [2014-09-21:01:44:10] Relaunching with elevation
    [2014-09-21:01:44:10] Launching subprocess with commandline c:\users\jonath~1\appdata\local\temp\aircf8.tmp\adobe air installer.exe -ei
    [2014-09-21:01:44:10] Runtime Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:44:10] Commandline is: -stdio \\.\pipe\AIR_3416_0 -ei
    [2014-09-21:01:44:10] No installed runtime detected
    [2014-09-21:01:44:10] Starting silent runtime install. Installing runtime version 15.0.0.249
    [2014-09-21:01:44:10] Installing msi at c:\users\jonath~1\appdata\local\temp\aircf8.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-09-21:01:44:10] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:44:10] Rolling back install of c:\users\jonath~1\appdata\local\temp\aircf8.tmp\setup.msi
    [2014-09-21:01:44:10] Rollback complete
    [2014-09-21:01:44:10] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:44:10] Runtime Installer end with exit code 7
    [2014-09-21:01:44:15] Runtime Installer end with exit code 7
    [2014-09-21:01:44:25] Runtime Installer begin with version 15.0.0.249 on Windows Vista x86
    [2014-09-21:01:44:25] Commandline is:
    [2014-09-21:01:44:25] No installed runtime detected
    [2014-09-21:01:44:27] Relaunching with elevation
    [2014-09-21:01:44:27] Launching subprocess with commandline c:\users\jonath~1\appdata\local\temp\air56b4.tmp\adobe air installer.exe -ei
    [2014-09-21:01:44:29] Runtime Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:44:29] Commandline is: -stdio \\.\pipe\AIR_5404_0 -ei
    [2014-09-21:01:44:29] No installed runtime detected
    [2014-09-21:01:44:30] Starting silent runtime install. Installing runtime version 15.0.0.249
    [2014-09-21:01:44:30] Installing msi at c:\users\jonath~1\appdata\local\temp\air56b4.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-09-21:01:44:30] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:44:30] Rolling back install of c:\users\jonath~1\appdata\local\temp\air56b4.tmp\setup.msi
    [2014-09-21:01:44:30] Rollback complete
    [2014-09-21:01:44:30] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:44:30] Runtime Installer end with exit code 7
    [2014-09-21:01:44:32] Runtime Installer end with exit code 7
    [2014-09-21:01:50:38] Runtime Installer begin with version 15.0.0.249 on Windows Vista x86
    [2014-09-21:01:50:38] Commandline is:
    [2014-09-21:01:50:38] No installed runtime detected
    [2014-09-21:01:50:43] Relaunching with elevation
    [2014-09-21:01:50:43] Launching subprocess with commandline c:\users\jonath~1\appdata\local\temp\air8f2.tmp\adobe air installer.exe -ei
    [2014-09-21:01:50:45] Runtime Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:01:50:45] Commandline is: -stdio \\.\pipe\AIR_9440_0 -ei
    [2014-09-21:01:50:45] No installed runtime detected
    [2014-09-21:01:50:45] Starting silent runtime install. Installing runtime version 15.0.0.249
    [2014-09-21:01:50:45] Installing msi at c:\users\jonath~1\appdata\local\temp\air8f2.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-09-21:01:50:45] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:50:45] Rolling back install of c:\users\jonath~1\appdata\local\temp\air8f2.tmp\setup.msi
    [2014-09-21:01:50:45] Rollback complete
    [2014-09-21:01:50:45] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:01:50:45] Runtime Installer end with exit code 7
    [2014-09-21:01:53:50] Runtime Installer end with exit code 7
    [2014-09-21:02:16:54] Runtime Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:02:16:54] Commandline is:
    [2014-09-21:02:16:54] No installed runtime detected
    [2014-09-21:02:16:56] Relaunching with elevation
    [2014-09-21:02:16:56] Launching subprocess with commandline c:\users\jonath~1\appdata\local\temp\air134f.tmp\adobe air installer.exe -ei
    [2014-09-21:02:16:56] Runtime Installer begin with version 15.0.0.249 on Windows 7 x86
    [2014-09-21:02:16:56] Commandline is: -stdio \\.\pipe\AIR_10552_0 -ei
    [2014-09-21:02:16:56] No installed runtime detected
    [2014-09-21:02:16:56] Starting silent runtime install. Installing runtime version 15.0.0.249
    [2014-09-21:02:16:56] Installing msi at c:\users\jonath~1\appdata\local\temp\air134f.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-09-21:02:16:57] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:02:16:57] Rolling back install of c:\users\jonath~1\appdata\local\temp\air134f.tmp\setup.msi
    [2014-09-21:02:16:57] Rollback complete
    [2014-09-21:02:16:57] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-09-21:02:16:57] Runtime Installer end with exit code 7
    [2014-09-21:02:16:59] Runtime Installer end with exit code 7

    Download and run the offline installer from http://get.adobe.com/reader/enterprise/
    [topic moved to Adobe Reader forum]

  • Cannot send email from my IPad Air

    I suddenly cannot send email from my IPad Air. Keep getting message that my email recipient
    was rejected by the server because it does not allow relaying.  Don't understand what this means as I have been able to send email before.

    Paula, in most cases this message appears when you are sending email from a ISP server not in the pop settings and SMTP settings in your email program.
    In example if I send out email from my iPad I must be on my own isp's server to send. I have roadrunner but if I send email out using say Verizon's email server I will get a reject notice.
    You did not say what email program you are using but if it is hotmail or yahoo or your isp's email in two of these email accounts there are stand alone apps which work much better than the stock email program on the phone.
    If you are using road runner or another ISP email you must get the proper Pop3 (incoming) server settings and SMTP (send) settings from your ISP
    You can then just go into the Settings-Mail, Contacts and Calendar section and click on the email account and change to the proper settings from your ISP.
    You could delete as you were told but why bother when only the sending and receiving settings need to be entered.
    If the settings are correct, on an iPhone it tests the settings. If correct send an email. If incorrect you will need the proper settings from your ISP.
    It is actually very easy to do.
    Hotmail is not an option on my iPad air | Apple Support Communities
    Problems with POP email accounts set up on iPad... | Apple Support Communities
    Good Luck

  • Flex application running under AIR takes a long, long time to start.

    I have a flex application which runs on a desktop under AIR. The application has an assets folder with 3,500 mp3 soundclips totalling about 50MB. The problem is, the application takes around 90 seconds to load. I'm sure that AIR is scanning the application folder and doing something with the contents because if I delete the assets folder it loads in about 5 seconds. Does anyone know why AIR/Flex would do this, and why it doesn't exhibit the same problem if I run or debug in Flexbuilder on eclipse? It's making my killer app unusable!
    Thanks
    Paulo

    Well, I've spent a bit longer looking at this now, and the problem appears to lie with my encrypted local store. The first thing that happens is for the app to read the product key from the ELS. But, it fails (for some unknown reason). So, the app seems to hang there for 90 seconds until it eventually renders the welcome screen. If I remove the assets folder it still fails to read from the ELS, but only takes a couple of seconds to start the welcome screen. This is where the scanning of the application folder seems to come into play, because if I remove the code which reads from the ELS the app starts within 2 seconds whether the asset folder is there or not.
    I think the slow startup and the scanning of the assets folder are just symptoms of a different problem, i.e. a problem with the ELS. I don't have the same problem with my development environment though - it's only when I test deploy the application.
    Thanks for your help on this problem EgorKDie. I think I should be able to resolve it once I can sort out why the ELS is being awkward.

  • Can I return my macbook air that I brought during the holidays (Thanksgiving)

    I was gifted a Macbook air during the thanksgiving season, and since I am a computer science developer ( a student to be precise), I want to return my Mac and opt in for a Windows machine ( so that I can get enough software support if needed, there are several people around me with a pc). I was wondering, how can I return my laptop ? What are the terms and conditions ?
    Thank you in advance.

    I would think you cannot return a product after the return date has passed.
    Call the Apple Store and ask them.

  • 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?

  • How do I use my Macbook Air with a display?

    I wish to use the display with the Macbook Air. The screen on the MBA is too small for home use so I want to use the display instead. How do I do this? It's awkward to type on the MBA keyboard and then look at the display next to the MBA.
    However I want to keep the MBA as my main computer because I like to use the MBA outside my home a lot. So that is why I do not buy an iMac.
    I also do not want to go to the trouble of syncing a Macbook Air and an iMac.
    I figured if I can use the hard drive on the MBA and then use the cinema display to show everything like my LCD screen that would be great.
    How can I get around the problem of awkward placement on my desk?
    Can I buy a keyboard and will that prevent the need to type using the MBA's keyboard?
    I plan on replacing my old MBA with the new MBA that has two USB ports.
    Will the separate keyboard and display fit into a USB hub? I need to keep one hub free on the MBAir for the USB ethernet.
    Is it just a matter of plugging the cinema display and keyboard into the MBA and then just typing away, using the MBA's hard drive?
    I do not know how this will work.
    Thanks for any explanation.

    I figured if I can use the hard drive on the MBA and then use the cinema display to show everything like my LCD screen that would be great.
    <http://support.apple.com/kb/ht3131>
    Can I buy a keyboard and will that prevent the need to type using the MBA's keyboard?
    Yes.
    Will the separate keyboard and display fit into a USB hub? I need to keep one hub free on the MBAir for the USB ethernet.
    There are two USB ports on the display. Use one for ethernet and one for the keyboard (a USB mouse can plug into the keyboard).
    Is it just a matter of plugging the cinema display and keyboard into the MBA and then just typing away, using the MBA's hard drive?
    Yes. Or you can use a wireless keyboard and mouse.
    <http://store.apple.com/us/product/MC184LL/A?fnode=MTY1NDA1Mg&mco=MTMzNzg5MDM>
    <http://store.apple.com/us/product/MB829LL/A?fnode=MTY1NDA1Mg&mco=MTMzNzY2NTE>
    <http://store.apple.com/us/product/MC380LL/A?fnode=MTY1NDA1Mg&mco=MTg1ODE3MDE>

  • ITunes/Music Home sharing does not work on my iPad Air

    No matter what I do I cannot use Music.app on my iPad Air to play music from my iTunes Library with Home-Sharing switched on. The Library name correctly appears in the Music.app source list after the loading symbol takes an age to complete. When it appears to have connected to the Library on my Mac, contents of my Library are shown in the app but I cannot play anything. If I select an albumn and press Play the Music.app merely cycles rapidly through all the track titles of the Album and then stops. Nothing plays. I've tried dozens of times to get this to work, even rebuilding my iTunes Library. Nothing seems to cure the problem. I can connect and play via Plex which is just plain daft seeing Apple designed all the software/hardware but they, themselves, cannot correctly code for this basic functionality.
    Also, not all Album cover artwork is displayed correctly.
    It seems many of the things I bought the iPad for are non-functional and the tablet is virtually useless. I can't beleive Apple would produce software and hardware which is specifically made to work harmoniously but obviously doesn't.
    Any help, here, please?
    I'm also having problems with Bluetooth connecting to my Mac Pro (2008)... Namly, it will not.

    Understanding Home Sharing
    http://support.apple.com/kb/ht3819
    Setup Home Sharing on iPad
    http://support.apple.com/kb/ht4557
    Troubleshooting Home Sharing
    http://support.apple.com/kb/TS2972

  • Movies from iMac 27 do not show up on macbook air

    I have 24 home-made movie that show up on my main computer, iMac 27, two iPads and and iPhone5. However, I am baffled how to get the same movies to show up on my Macbook Air. I've tried Sharing the Library, turning Sharing off and on on both compueters, and many other obvious possibilities. This is baffling me. Has anyone else had the same situation and a solution to go with it?
    Thank you,
    Steve Roesler

    Hello, Steve. 
    Thank you for visiting Apple Support Communities. 
    I would need a little more information on this issue to provide a better answer.  Are these movies in your iTunes library?  If not see the steps in the first article below.  Some imported movies do show as Home Videos when imported.  If these are in your iTunes library, see the troubleshooting steps in the second article below. 
    Adding music and other content to iTunes
    http://support.apple.com/kb/ht1473
    Troubleshooting Home Sharing
    http://support.apple.com/kb/ts2972
    Cheers,
    Jason H. 

  • Mid 2013 macbook air keyboard/trackpad stop responding

    I have a mid-2013 13" Macbook Air - 512GB SSD, 8GB RAM - 1.7Ghz i7
    I spend a good deal of time working at my home, where I have two external monitors (one via USB, one via the thunderbolt port) and a bluetooth wireless mouse and keyboard.  Things are great.
    I also go on the road, and when I do, I simply unplug my monitors, close the lid, and go.
    Lately, I've had some very odd behavior happen which acts a lot like what is described in the latest 13" Macbook Pro Retina EFI fix:  http://www.macrumors.com/2013/11/07/apple-releases-fix-for-13-inch-retina-macboo k-pro-keyboardtrackpad-issues/
    Here's what happens....when I'm traveling and away from my bluetooth keyboard/mouse, I will open up my MBA and the trackpad and internal keyboard are unresponsive.  I can press the power button and get it to turn off...power it back on and am able to use the keyboard to control various boot options (diagnostics, single-user, safe-mode, recovery model, etc).  Booting up full, however, the issue will still exist.  Looking at the console log, when this is happening, there are a ton (about 4000 every minute) of the following :
    11/1/13 7:45:26.000 PM kernel[0]: Error: AppleHSSPIController::doSPITransfer CRC from device was invalid
    11/1/13 7:45:26.000 PM kernel[0]: Error: AppleHSSPIController::InterruptOccurred Failed to transfer interrupt data with Err (0xe00002eb)
    Eventually, something happens and things start to work -- I will generally see the following in the console log when it starts working:
    11/1/13 7:45:27.000 PM kernel[0]: Apple Internal Keyboard / Trackpad::start Start Succeeded
    If I let the machine sit at the unlock screen, eventually a dialog comes up and says "unable to find external bluetooth keyboard/mouse..."  It says it will continue to search and will pair with one eventually....it's the same message I would get from my mac mini if it couldn't find the bluetooth keyboard (and has no internal/hardwired keyboard).
    When it is happening, I can use "cmd-r" to boot into recovery mode and recovery mode will complain about not having a mouse/trackpad - yet the keyboard seems to work to control what happens at boot time.
    I called Apple and got sent to the apple store with a "it sounds like a faulty logic board or a connection that needs soldering".  The Apple Store "genius" didn't quite think that was the case and has instead suggested I re-install the operating system.  I'm non-plussed by both suggestions. This has happened both before and after Mavericks... 
    On one of my latest trips, I had a case where I took my laptop out on the plane to try to use it...only to have this issue occur.  I landed, got to the hotel, tried again and everything worked fine.  Went to dinner - leaving my laptop on the desk plugged in - only to come back to have the keyboard unresponsive....  I've now resorted to traveling with my bluetooth keyboard and mouse "just in case".
    Any ideas/thoughts?

    Mv2400
    I will open up my MBA and the trackpad and internal keyboard are unresponsive.
    Do four things to test for fault on this,
    reset SMC ,
    reset NVRAM,
    uncheck "put hard disks to sleep"
    and UNPAIR both your bluetooth mouse and keyboard from this Mac that you are using with it currently.
    yes, the notion that your logic board is at fault is extremely unlikely, additionally (though far more likely) that your Mavericks OS is corrupt.
    RESET SMC
    Shut down the computer.
    Plug in the MagSafe power adapter to a power source, connecting it to the Mac if its not already connected.
    On the built-in keyboard, press the (left side) Shift-Control-Option keys and the power button at the same time.
    Release all the keys and the power button at the same time.
    Press the power button to turn on the computer. 
    Note: The LED on the MagSafe power adapter may change states or temporarily turn off when you reset the SMC.
    RESET NVRAM
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    Lastly, go into SYS PREFERENCES > ENERGY > uncheck "Put hard disks to sleep when possible" in both tabs.
    Let your Mac go into sleep or close the lid for a few mins. and reopen and verify that your trackpad and mouse are fine.  They should be after this,.........
    If not contact Apple for full in shop diagnostic, theyll run a hardware test (unlikely causation) and reinstall the OS, then retest and LASTLY replace the logic board (very unlikely).

Maybe you are looking for

  • Restoring address book after hard drive failure

    my hard drive has just died on me and been replaced. I now want to sync and restore my address book from .Mac onto my address book on hard drive - but am scared am going to wipe it out on .Mac instead. Is it as simple as syncing? I just want to check

  • Transfer music from an ipod to a macbook

    My brother died recently and I now have his iPod.  Is there a way that I can safely transfer his music to my itunes.  His iPod is older and I am worried that I will lose his music.

  • Mail deletes messages unexpectedly

    Unexpected behvior from Apple Mail. I have Notifications on. Upon receiving some mails (for instance, confirmations of purchase from Amazon), I click on "Open" in the Notifications box which appears on the right up side of the screen. After I clicked

  • Calling servlet from hyperlink

    Hi all, how can I call a servlet from an html hyperlink, I tried this code but it says the resource is not available

  • Why do i never have service anywhere and my phone always needs restoring?

    Someone please help. My phone hardly ever works. It never has service. Sometimes, I will turn it off and back on, and I might get lucky enough for it to have service. It tells me daily "Iphone cannot make or recieve calls. Iphone needs to be restored