Can't install air application from website

I am trying to install an Adobe Air application from a local
web page using badge but get the "Something went wrong trying to
install this application"
When I click on the .air file directly all works ok
One thing I've noticed is that if I try to launch the .air
file from the browser, it doesn't to know what program to use to
open the file as buttons on the (Do you want to save this file or
find a program online to open it) dialog are Find, Save and Cancel
(Not Open).
I've checked the file extensions in Internet Tools and the
program for .air is Adobe Air Application Installer which I assume
is correct.
I've also checked that the MIME entry is correct on IIS
I'm running on a 32bit machine with Vista Business and using
IE7
Can anyone help me please, I've been stuck on this for
ages

Howdy Niel
Looks like Apple has opened it's kimono a bit...
Statement from Apple to CNBC ± 10:00 PDT-US
from http://www.cnbc.com/id/102495735
"We apologize to our customers experiencing problems with iTunes and other services this morning. The cause was an internal DNS error at Apple. We're working to make all of the services available to customers as soon as possible, and we thank everyone for their patience," Apple said in a statement to CNBC.
ÇÇÇ

Similar Messages

  • Can't install air applications anymore...

    I'm a flex developer who has been working with air for a few months now. I've been using Air 1.5 and decided to update to 2.0 today. I downloaded and installed and even restarted. Now when I try to open an air application, (ive tried a few) it tell me I need to install air. I click continue and it just sits there. I've tried uninstalling/reinstalling, restarting, downloading other air apps and rummaging through any log file i can find. I'm running OSX 10.6.3.
    Somebody please help!

    Thank you for responding.
    I tried moving, adding and removing languages and logged-out and back in. Same problem. At this point I am not running 1.5.3 anymore. I uninstalled and reinstalled 2.0.3 since the airappinstall.log and airinstall.log files were empty.
    At the end of the install, after I clicked finished it then gave me the same error as before:
    The only item in the consol log listed is:
    8/28/10 1:52:18 PM com.apple.launchd.peruser.718961234[190] ([0x0-0x85085].com.adobe.air.Installer[1057]) Exited with exit code: 7
    Then, when I double click on an air application (that is already installed), it asks to install (okay?) and it gives my the same error in the log while it sits on the installer.
    8/28/10 2:00:43 PM DestroyTwitter 2[1159] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    It does this for several applications.

  • Can't install the application from Application DVD

    Early 2011 Macbook Pro 13 inch
    I reinstalled my Macbook Pro and it was all fine. but when I tried to reinstall the application with the Applications Install Disc that came with my Macbook Pro,
    it just failed. I can't reinstall it. So I can't have the iLife back on my laptop.
    Please help.

    Have a look here for some hints:
    http://forums.lenovo.com/t5/Linux-Discussion/Unabl​e-to-boot-linux-from-USB-drive/m-p/1069715
    I managed to boot from USB with full UEFI on, secure boot off.
    Have a look also in the UEFI/BIOS menu under USB that BIOS support is enabled.

  • Can I launch an application from website?

    I am trying to design a website, which I do not want to publish on the web, just on my own computer.  I would like to establish hyperlinks to applications and documents, which when clicked open the applcation or document itself.  Idelly, I would like the website I design to become my desktop, giving me customised access to applications and files plus a splash of humour and widgetry.  I doubt that os x is going to let me use a webpage as a desktop, but, if I run safari on opening, is there a way that I can achieve my ambition?  All thoughts and suggestions welcome.  Best. John Whiteman

    Funny, alot of Lion users would like to go the other way. Launchpad is an iOSesk application launcher built into lion.
    to go about coding such a monstrosity is over my head

  • How can I install any application from the web as I can`t do so now?

    can I download and install any web application with Adobe download assistant?
    such as download accelerator plus or any other download manager.

    What has this to do with Adobe? You're looking in the wrong place. Browser plug-ins/ extensions are handled by the respective routines in the browsers themselves...
    Mylenium

  • I can't install any application from app store

    cant connect to app store

    Howdy Niel
    Looks like Apple has opened it's kimono a bit...
    Statement from Apple to CNBC ± 10:00 PDT-US
    from http://www.cnbc.com/id/102495735
    "We apologize to our customers experiencing problems with iTunes and other services this morning. The cause was an internal DNS error at Apple. We're working to make all of the services available to customers as soon as possible, and we thank everyone for their patience," Apple said in a statement to CNBC.
    ÇÇÇ

  • How to Call a AIR application from Flex Application

    Hi,
        I have Used AIR (Desktop application) in Flex Builder to Upload a File from a local path and save it it a server path.
    I need to Call this AIR(Desktop application) from my Flex Application.... i.e
    I am using a link button to send a event using Script and Forward that Desktop application  from Flex Screen
    But it doesnot load that (Desktop application)  in Screen. Only Balnk screen is loaded from path
    Here is the code
    AIR(Desktop application)
    <?xml version="1.0" encoding="utf-8"?><mx:WindowedApplication 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="openBrowseWindow();">
    <mx:HTTPService id="urlpath" showBusyCursor="true" useProxy="false" method="
    POST" url="http://localhost:8080/nat/FlexAction.do?method=UrlPath"result="pathresult(event)"
    fault="faultHandler(event)"
    >  
    </mx:HTTPService> 
    <mx:Script>
    <![CDATA[
    import mx.events.FileEvent; 
    import mx.rpc.events.ResultEvent; 
    import mx.rpc.events.FaultEvent; 
    import mx.utils.ObjectUtil;  
    import mx.controls.Alert;
    private  
    var openFile:File = new File() 
    private  
    function openBrowseWindow():void{openFile.addEventListener(Event.SELECT, onOpenFileComplete);
    openFile.addEventListener(Event.OPEN, load);
    openFile.browse();
    private  
    function load():void{Alert.show(
    "load"); 
    var imageTypes:FileFilter = new FileFilter("Images (*.jpg, *.jpeg, *.gif, *.png)", "*.jpg; *.jpeg; *.gif; *.png"); 
    //var textTypes:FileFilter = new FileFilter("Text Files (*.txt, *.rtf)", "*.txt; *.rtf"); 
    var allTypes:Array = new Array(imageTypes);openFile.browse(allTypes);
    private  
    function faultHandler(event:FaultEvent):void { 
    //Alert.show("Fault")Alert.show(ObjectUtil.toString(event.fault));
     private  
    function pathresult(event:ResultEvent):void{Alert.show(
    "res") 
    //Alert.show(ObjectUtil.toString(event.result));}private  
    function onOpenFileComplete(event:Event):void{ 
    //mx.controls.Alert.show("event: "+event.target.nativePath +"UR!!!"); 
    var pPath = event.target.nativePath; 
    var parameters:Object = {FlexActionType:"PATH",path:pPath};  
    // Alert.show("Image Selected from Path : "+pPath); urlpath.send(parameters);
    //Alert.show("Passed.."+parameters);}
    ]]>
    </mx:Script>
    <mx:Button click="openBrowseWindow();onOpenFileComplete(event)" name="Upload" label="Upload" x="120.5" y="10"/> 
    Here is Mxml Code for Flex Application
    <?xml version="1.0" encoding="utf-8"?><mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns="http://ns.adobe.com/air/application/1.0.M4" >
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert; 
    private function Upload():void{ 
    // CursorManager.setBusyCursor();  
    //var url:String = "HomeAction.do?method=onLoad"; 
    //var url:String = "assets/Air.swf"; 
    var url1:URLRequest = new URLRequest("assets/Air.swf");navigateToURL(url1,
    "_self"); 
    // CursorManager.removeBusyCursor(); }
    ]]>
    </mx:Script>
    <mx:LinkButton id="up" click="Upload()" x="295" y="215" label="UpLoad"/>
    In this code i forward using s url to Open tat  Desktop application but a blank screen appears with out the proper output...
    Please Help me in this to forward AIR from Flex Screen..
    Thanks in Advance
    With Regards
    Gopinath.A
    Software Developer
    First Internet Systems Pvt. Ltd.,
    Chennai

    try this
    http://www.leonardofranca.com/index.php/2009/09/17/launching-an-installed-air-application- from-the-browser/
    regards
    Leonardo França
    Adobe Certified Expert Flex 3 with AIR
    Adobe Certified Expert Rich Internet Application Specialist v1.0
    Adobe Certified Expert Flash CS3 Professional
    Certified Professional Adobe Flex 2 Developer
    Adobe Certified Professional Flash MX 2004 Developer
    http://www.leonardofranca.com
    http://twitter/leofederal
    Manager AUGDF - Adobe User Group do Distrito Federal
    http://www.augdf.com.br
    http://twitter/augdf

  • I can't install any application

    I can't install any application from App store directly to Iphone using 3G, it's downloading it but after the loading process is complete, the apps won't open when I tap it, instead, it will start loading/downloading again. (The blue loading indicator doesn't appear/progress but it say's loading then it will stop loading and the name of the apps will appear as if it's already installed but the loading indicator is still empty. When I tap it, it will start all over again in loading/downloading process.)

    If I check it in store - it says, downloaded, but the application is still not opening, the loading indicator still empty but it says the app name already as if its like downloaded already, but when you tap the icon, it will start again sayin, "LOADING" but the blue indicator doesn't fill the empty bar. .
    What do you think bro? should I just restore factory settings? wew. . too bad.

  • Can't download an application from the net because of an apple security block

    MacBook Pro C0*******3UG 1TB Os 10.9.5
    I can't install an application from the net because of some Apple security block. How do I remove or get around the block? The instructions in help say to double click  the application and all that happenes is that I get the same window saying I can't install.
    <Edited By Host>

    It's usually not necessary to change any security settings, and as a rule you shouldn't.
    To make a one-time exception to the security policy, follow these instructions. They apply to Installer packages and other installable items as well as applications.
    Some defective software installers may fail when Gatekeeper is enabled. Think carefully about whether you really want to run such an installer. If you do, temporarily change the setting to
              Allow applications downloaded from: Anywhere
    When the installation is done, revert the setting.
    Some applications that don't have a developer signature have been reported not to launch the first time unless Gatekeeper is disabled. The warning message from Gatekeeper is that the application "is damaged and can’t be opened." Again, think carefully about whether you want to trust the application. If you do, disable Gatekeeper as above, launch the application, and then re-enable Gatekeeper. If you still get the warning, delete the application.

  • I brought  I pad air 3 months ago, but recently I can't install any application and can't make an update. Even I can't install the free application. I can see ... There is a previous purchase problem please Singh up your bank information again. Plz help

    Hi , I brought an I pad air 3 months ago. But recently I can't install any application and can't update any application. Even I can't install any free application. I can see one dialogue box about in red colors " there is a previous purchase problem please type your bank information correctly" . So I don't know what to do please help me. Thanks

    The message implies that a previous purchase may not have been paid-for due to problems collecting the money from your account. Have you tried logging into your account and updating/changing your payment details (tap on your in Settings > iTunes & App Store on your iPad and tap 'view Apple id' on the popup and sign into it) ? Until there is an accepted payment method on your account (credit card, redeemed iTunes gift cards) and what you owe has been paid then you won't be able to download anything (including app updates).

  • I recently got iphone 4 , yesterday i was trying to install an application from the itune store it say that i need to authorize it ( i already have an account and bought some apps ) how can i authorize the device ?

    i recently got iphone 4 , yesterday i was trying to install an application from the itune store it say that i need to authorize it ( i already have an account and bought some apps ) and there was a CLICK HERE BUTTON , when i press on it it take me a to a page that require some kind of activation code or smthn like that ,
    how can i authorize the device ?
    and btw i bought it from UAE store
    IOS 4.3.2

    You should only make purchases for all your devices using a single Apple ID.  There is no need, and indeed a good reason not to, set up a new Apple ID with each new device purchase.  While items purchased under different IDs can be played on a single device, you cannot merge Apple IDs and it makes it cumbersome.
    Apple IDs do not expire but may become dormant and require reactivation if they are not actively used.
    You should make note of your Apple ID and passwords and keep a record of it.  Like a bank account it contains access to items with value.  Update your Apple ID email address as they change.
    I see you were guided to this forum by a help page on recovering your password.  If that is not sufficient try the links below.  Apple will need to verify you are indeed to owner of the accounts to which you are trying to gain access.
    http://www.apple.com/support/appleid/contact/
    Contact Apple for help with Apple ID account security - http://support.apple.com/en-us/HT5699 "This article provides country-specific Apple Support contact information for customers seeking help with their Apple ID password or other security-related issues."
    Frequently asked questions about Apple ID - http://support.apple.com/kb/HE37

  • Installing and Running Air application from webpage

    Hello ,
    I am trying to run the air application from web page and its working fine in my system. (http://localhost:8080/examples/test1.html)
    if i try to run the same air application from another system's webpage by pointing the url to my system's IP Address,(http://lpAdres of my system:8080/examples/test1.html) its showing error "The application could not be installed because the installer file is damaged. Try obtaining a new installer file from the application author"
    Air Application version are . Flex3.6 sdk and Air2.7 sdk & runtime
    Any of you know what could be the problem.
    please help em to resolve this issue asap.
    its very urgent requirement

    Hi, Jeff;
    Make sure you have compiled your application as 32 bit, and not "any cpu".
    See this document for some more info: [64|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/10d5fa88-2013-2c10-c9a5-f11963607d4e&overridelayout=true]
    Regards,
    Jonathan
    Follow us on Twitter u2013 http://twitter.com/SAPCRNetSup

  • How can we implement product key feature while installing AIR application?

    How can we implement product key feature while installing AIR application?

    Hello,
    Could you try using /Q or /QS parameter?
    http://msdn.microsoft.com/en-us/library/ms144259(v=sql.110).aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • I'm now at Sudan. I'm from Bangladesh. After coming Sudan I can't download/install any application from apps store. It shows error code-1009. Now what to do ? can anybody help me....?

    I'm now at Sudan. I'm from Bangladesh. After coming Sudan I can't download/install any application from apps store. It shows error code-1009. Now what to do ? can anybody help me....?

    Are you trying to download apps from the Sudan app store?  If so, you have to have a valid credit card and billing address in the country of the app store to purchase from that app store.
    Some countries also have restrictions on the apps and functions allowed in their countries.

  • I have 2 iphone. when i install an application frome apple store, it install its self on the two. how can i stop it?

    i have 2 iphone. when i install an application frome apple store, it install its self on the two. how can i stop it?

    Use separate Apple IDs on each device.

Maybe you are looking for