Air-cairngorm inFlex4

Hello All,
I am using Air-cairngorm With Flex, and i am facing some problem here, i used this type of code in flex3 but the same code is not working in flex4.
i am facing the fallowing problem.
1.In my "SQLStatementConfiguration.as" i got error 
"Call to a possibly undefined method getResourceBundle through a reference with static type Class"
2.Might be the problem with fallowing code in "SQLStatementConfiguration.as".
[ResourceBundle('sql')]
private static const resource:ResourceBundle;
Can any one solve my problem ?
Thanks in advance

One thing that will cause events to appear not to fire is
when you forget to instantiate your controller somewhere on your
mxml file. The events will dispatch, but the command won't get
executed.
Another one - if you create custom events and override the
constructor, you have to to call super(MyController.EVENT_TYPE) or
else your event doesn't get bound to the command.

Similar Messages

  • Cairngorm 3 + AIR + Modules

    I had seen a couple of posts about the issues using modules in AIR application. Does Cairngorm 3 [Module Library] provides a solution for this issue OR Module Library only supports Flex Applications for now?
    -MD

    Thanks Alex,
    I believe that I've got all the dependencies downloaded from the trunk and in the build path:
    Module
    Navigation
    Integration
    IntegrationRPC
    Task
    parsley-complete-flex3-2.1.0.swc
    spicelib-complete-flex-2.1.0.swc
    Here's the PM that is dispatching the event:    
    ilc.modules.timeline.presentation{
    import flash.events.EventDispatcher;  
    import ilc.modules.timeline.GetDecadesEvent; 
    Event(name="getDecades", type="ilc.modules.timeline.GetDecadesEvent")][ManagedEvents(
    "getDecades")] 
    public class TimelinePM extends EventDispatcher{
    public function TimelinePM(){
    getDecades();
    public function getDecades():void
    dispatchEvent(
    new GetDecadesEvent());}
    Here's the Command class:
    package  
    ilc.modules.timeline.application{
     import ilc.modules.timeline.GetDecadesEvent; 
    import ilc.modules.timeline.domain.Decades; 
    import mx.collections.ArrayCollection; 
    import mx.rpc.AsyncToken; 
    import mx.rpc.events.FaultEvent; 
    import mx.rpc.events.ResultEvent; 
    import mx.rpc.remoting.mxml.RemoteObject; 
    public class GetDecadesCommand{
    public function GetDecadesCommand(){
    [MessageDispatcher]
    public var dispatcher:Function; 
    [Inject]
    public var decades:Decades; 
    [Inject(id=
    'remoteService')] 
    public var service:RemoteObject; 
    [Command]
    public function execute(event:GetDecadesEvent):AsyncToken{
    trace('getting decades'); 
    return service.getDecades() as AsyncToken;}
    [CommandResult(selector=
    "getDecades")] 
    public function serviceResult(event:ResultEvent):void{
    decades.decades =
    new ArrayCollection(event.result as Array);}
    [CommandFault(selector=
    "getDecades")] 
    public function showError(fault:FaultEvent):void{
    trace(fault.toString()); 
    Do you see anything obvious?
    Jeff

  • SQLite in Cairngorm architecture

    Hi All I am new to MVC and Cairnhorm . I am developing an AIR application where besides the regular services that I define through ServiceLocator I have also SQL database  . My question is what is the right place for SQLite in MVC .Should it be accessed through ServiceLocator too and the sql commands queries with regular delegates?
    Any help will be appreciated !

    So I have recently developed a Cairngorm library for persistence. It hasn't been announced yet, but feel free to take a look and try it: http://opensource.adobe.com/wiki/display/cairngorm/How+to+Use+the+Cairngorm+Persistence+Li brary
    There is a sample app, which uses a DAO to access the database. It doesn't use the Service Locator. The app is implemented on the Parsley IoC container so the DAO is configured in the context and injected in to the Presentation Model. This is a sample so I would expect in a larger app that there is a domain layer.

  • Issue maximizing air app to fullscreen on a Mac

    My code works fine for PC but on a mac the code doesn't work. Here's the code:
    package com.wb.thehub.control.commands
        import com.adobe.cairngorm.commands.ICommand;
        import com.adobe.cairngorm.control.CairngormEvent;
        import com.wb.thehub.model.ModelLocator;
        import flash.display.NativeWindow;
        import flash.display.NativeWindowDisplayState;
        public class MaximizeApplicationCommand implements ICommand
            public function execute(event:CairngormEvent):void
                var nativeWindow:NativeWindow=ModelLocator.instance.mainWindow.nativeWindow;
                if(nativeWindow.displayState == NativeWindowDisplayState.MAXIMIZED){
                nativeWindow.restore();
                }else nativeWindow.maximize();
    On a Mac the app simply moves to the upper left corner of the screen. The restore works fine. My app is set to chromeless and transparent.
    As anyone else had this problem?

    See my post on Air in FULL_SCREEN_INTERACTIVE on Mac
    I am doing crazy things to get basic functionality for a chromeless. Something is wrong with this picture.

  • AIR app :: Channel.Call.Failed faultString:'error' faultDetail:'NetConnection.Call.Failed:

    I have built an AIR app using ColdFusion 8.01 as the backend.  I am getting this error occasionally on Remote Object calls. My suspicion is that the Channel being used by the RemoteObject is timing out.  I'm not bothering to configure the Channel separately, I'm just going with the default that is part of the RemoteObject.
    I'm using Cairngorm, with a ServiceLocator and my thought is that I could separately define my channel from the RemoteObject declaration and listen for timeout events on the Channel and refresh the Channel if it times out. 
    I'd be really interested in anyone's feedback on this issue.
    Jeff

    Hi,
    Can you please try tracing the FaultEvent.fault.rootCause
    object and see if there is any error message. Usually exceptions
    thrown from the server is available in this rootCause object.
    Hope this helps.

  • Cairngorm events dispatch problem

    Hi,
    We are developing a Flex 3 AIR application on Cairngorm and
    LCDS 2.6. The problem is some Cairngorm events don't get fired
    which results in null reference errors. But when we put an Alert is
    starts working. Can you suggest any solution and reason why its
    happening.
    Thanks,
    Oleg

    One thing that will cause events to appear not to fire is
    when you forget to instantiate your controller somewhere on your
    mxml file. The events will dispatch, but the command won't get
    executed.
    Another one - if you create custom events and override the
    constructor, you have to to call super(MyController.EVENT_TYPE) or
    else your event doesn't get bound to the command.

  • Very strange Adobe AIR bug...

    Hi,
    I have an AIR application that makes some http calls -- simply enough.  This works when I run the app in Flex Builder but after I package the application and run the exe, the calls are never made.  Even stranger, if I add an alert before the call in the method, then the http call is made.  This makes no sense to me and I was wondering if someone could help shed some light on this.  The code is below:
    My config is as follows:
    Flex 3.3 SDK
    AIR 1.5
    Cairngorm
    Thanks!!
    public function refreshCurrentStatusPanel():void{
    //Alert.show("bears");
            var event:SetDateEvent = new SetDateEvent();
            event.dispatch();
            var event2:GetCurrentStatusEvent = new GetCurrentStatusEvent();
            event2.dispatch();
            var event3:GetDailyMaxMinEvent = new GetDailyMaxMinEvent();
            event3.dispatch();
            var event4:GetRawGraphEvent = new GetRawGraphEvent();
            event4.dispatch();
    <mx:Button id="btnRefresh" toolTip="Refresh"
                            icon="@Embed('assets/refresh.png')"
                            width="18"
                            height="18"
                            click="refreshCurrentStatusPanel()" />

    We are looking at the bug https://bugbase.adobe.com/index.cfm?event=bug&id=3000289 for upcoming release project.
    thanks,
    Hitomi

  • Is Cairngorm something I would want to use?

    I've heard of Cairngorm for some time now and I know it's been around for a while.  I decided to look into exactly what it does today because I have no clue and I've been writing Flex apps since the release of Flex 2.  I can't find many good resources that don't state the obvious on Adobe's page.
    "Cairngorm is the lightweight micro-architecture for Rich Internet Applications built in Flex or AIR. A collaboration of recognized design patterns, Cairngorm exemplifies and encourages best-practices for RIA development advocated by Adobe Consulting, encourages best-practice leverage of the underlying Flex framework, while making it easier for medium to large teams of software engineers deliver medium to large scale, mission-critical Rich Internet Applications."
    This means very little to me aside from wanting to build RIA's in Flex and wanting to use best practices in doing so.
    So can anyone kindly break down what Cairngorm is or what it does?  Or can provide some links to a getting-started guide?  Anything that might help me understand what it is and whether it's something I'd like to use.  thanks!

    In my opinion:
    Cairngorm is a framework (collection of code) and a set of rules for how you should organize your code. I'm a big fan of frameworks in general, especially for web development, but Cairngorm wasn't right for me.  I do, however, see how it could help large teams develop by following the same set of rules.
    I found the following helpful in evaluating Cairngorm:
    http://www.adobe.com/devnet/flex/articles/introducing_cairngorm/introducing_cairngorm.pdf
    http://www.adobe.com/devnet/flex/articles/cairngorm_pt1.html (and the rest of the series)
    Hopefully they will help you out too.
    Ben Edwards

  • Localization with an LCDS based AIR application

    Hi,
    I wanted to add localization in my app, so I followed this
    step by step how-to :
    http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_Runtime_Localization
    I succed make this to work, but with a simple test
    application.
    So I decided to do the same with a biger cairngorm LCDS based
    application.
    But a encounter an issue : with locales specified in the
    compiler params (ie:en_US,fr_FR), everything works, but with bundle
    list, I got an error :
    "Could not find resource bundle data"
    I found some related pages on the web speaking about this,
    but they all were concerning Flex betas.
    Can you help me ?
    Note : I'm using Flex 3 and LCDS 2.5.1

    I'm afraid you are picturing the architecture in the wrong
    way. An AIR application is essentially a traditional desktop
    application -- you just create them with what have traditionally
    been web-based technologies. There are also many APIs and a
    built-in security model for network and Internet interaction which
    make it easier to develop an AIR-based desktop application that can
    safely access networked content.
    Your main application SWF (or HTML file) is installed with
    the application, not downloaded. You could download additional
    modules and execute them in the privileged application sandbox, but
    there is a security risk that either your server being hacked or a
    man-in-the-middle attack could result in a forged module being
    downloaded and executed instead of the original. I believe Flex
    intends to implement signed modules to mitigate this risk, but
    until this feature is available, it is better to install all the
    application logic as part of the application. AIR includes an
    update framework for updating an installed application, but for
    user experience reasons, you probably wouldn't want to update the
    application too frequently.
    All that said, if what you really want is a customized
    browser for your web application, you could write such a thing
    using AIR (using the mx:HTML control, for example) and have that
    hardcoded to access your web application.

  • Reuse a Flex App as AIR application

    Hi!
    I've developed a Flex application and now I want to use it
    again with the same codebase as an AIR application.
    But there are several factors that don't work as expected.
    The Flex App uses some advanced features that make reuse a
    little bit complicated:
    I use the latest Cairngorm.swc in the app.
    I use ResourceBundles in the app.
    I often use "Application.application" in the app.
    These are the three things, which make porting to AIR a
    little bit complicated.
    Are there any "Best practices" for sharing the same codebase
    for Flex and AIR?
    I've tried to make the Flex app a module and reuse that, but
    then I get troubles with ResourceBundles, also the addressing
    doesn't work correctly anymore (I've refactored the
    Application.application.<element> calls to say:
    Application.application.app.<element> where "app" is the ID
    of the ModuleLoader). But I get the error that
    <ApplicationType> cannot be converted to ModuleLoader.
    Then I've tried to make a SWC out of the App, didn't work
    either.
    Has someone already done things like that?
    What's the best way to accomplish that?
    Thanks a lot for replies!
    Bye,
    Fritz

    Hi.
    Based on Adobe's document
    http://www.adobe.com/devnet/air/flex/articles/flex_air_codebase.html
    which I haven't found earlier, I got the project working with all
    my special things lik Cairngorm and ResourceBundle.
    Currently I'm writing a tutorial how this works, I'll post it
    for further use on monday :-)
    Bye,
    Fritz

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

Maybe you are looking for

  • Can I change managed media to external media in FCP 10.1?

    I just upgraded to Mavericks and FCP 10.1.1 and I think both are great software so far. I am working on a documentary with about 250 GB of HD footage. The footage for the project was all on the same external drive where I am saving the Library, and I

  • Xml payload in a single field

    Hi All, I hve a scenario like this ERP->XI->Monitoring system In the mapping, I need to assign the outbound payload (whole xml) to a field in the target message field since the (Target) Monitoring system wants to receive the whole xml message in sing

  • Problems installing SAP NetWeaver 2004 trial version from book DVD

    Hi I'm trying to install netweaver trial version from the dvd in Horst Keller's book ABAP Objects but am having problems. I have tried to uninstall and start again but I keep getting the message below. Any suggestions welcome as I'm new to all this.

  • IAS does not start when using SSL

    Hello all, I hope I hit the correct board for this question and search did find anything useful for my Problem. We have a couple of Oracle Databases which are using IAS to serve a PL/SQL and Perl based WepApp. The Databases are 10g (10.2.0.3), and th

  • How can we give a user, alter procedure privilege on only one procedure of another schema.

    Scenerio: User A owns a procedure called 'TESTPROCEDURE'. User B has execute privilege on 'TESTPROCEDURE'; Now i want to give user B , alter procedure privilege for only one procedure i.e 'TESTPROCEDURE'; I do not want to give ALTER ANY PROCEDURE to