Adobe Air not working at all

3 days ago Adobe Air quit working on me.  I was using a few applications with Air, including tweetdeck, and the programs with load with errors that can't connect to the internet or would just load with no information.
I've deleted all programs from my computer, including air, shut down and tried to reload the programs again.  Air seems to load fine, but when I try to download and load a program that uses air I get Error# 2032.
I've tried using a few different network locations, home, work, Free Wifi, Library, and I get the same problem.
I'm on Vista
I have no clue how to trouble shoot and I need this to work as it is critical to my job.
Thanks in advance.
G

Just guessing, but if you are in Windows (which we don't know), you can try using Windows Explorer to navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement.

Similar Messages

  • Adobe Air not work on Mac OS X Yosemite

    Related issues:
    Adobe Air not working on Mac since OS X Yosemite upgrade
    Adobe Air isn't working with Mac OS X Yosemite?
    Bug report: Bug#3847656 - Adobe Air not work on Mac OS X Yosemite
    When I try to install any AIR application on OS X Yosemite (updated last week) I have got error ""Adobe AIR Application Installer" is damaged and can't be opened.".
    Uninstall and re-install AIR runtime didn't solve this issue. It works fine with Mac OS X Yosemite beta.

    It works fine with latest Adobe AIR Runtime (this week update).

  • Adobe Reader Not Working at all.

    The Adobe Reader does not work at all since yesterday, after updating it to the latest version 11. I uninstalled it and installed version 9 and that too does not work. All my work is held up due to it.
    What should I do to get the Adobe Reader working again.

    Just guessing, but if you are in Windows (which we don't know), you can try using Windows Explorer to navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement.

  • Adobe air not working

    hi
    i use various software that need adobe air to use. but for whatever reason it is just not working.
    i have uninstalled adobe air and re-installed it but that didn't work
    i have uninstalled adobe air and one of the software i use with it and re-installed everything and still nothing works
    i am now in a situation where my pc is telling me i have adobe air on my pc but i don't see it anywhere
    as you can tell i am stressed out right now
    i use Firefox as my browser and im using Windows 7 Pro
    i have never had a problem before
    why do i get the feeling im going to have to format my PC and start afresh with an older version of adobe air?
    can anyone help me please? all help gratefully received, thank you in advance.

    I'm using Adobe Air
    http://get.adobe.com/air/
    and
    Keyword Tool, which needs Adobe Air to function. 
    (see attachment)
    I got professional help with this issue and it was determined that my pc and the Keyword Tool had no issues with them.  Do you think I downloaded the wrong version of AIR for a Dell?  Or, does it not matter? Could this be resolved today?  It's been three days of no productivity.
    Thank you kindly,
    Alexia

  • Adobe Air not working - error on mouseover or any interaction

    I had Adobe Air installed on Windows XP for a while, updated and all.
    It was working fine a few days ago, then an error repeatedly started occurring immediately after running an app.
    Normal Adobe Air deinstallation was not possible, due to the same problem - error on any GUI interaction.
    I finally managed to do a reinstall without GUI to no avail (I reinstalled Flash also). Any Air app still exits with error immediately.
    Any ideas?
    Paul

    I still have the same problem and I'd really like to use some Air apps - HELP, ANYONE?
    Every Air app exits immediately with error! I'm running Windows XP (as admin).
    The logs should say something, I am listing them here:
    .airinstall.log SAYS:
    Starting silent x1 install from file:///G:/Adobe%20CS4/payloads/Acrobatcom-mul/acrobat.com_signed.air
    UI SWF load is complete
    stateRunningAppInstaller: appinstaller -runtime "G:\Adobe CS4\payloads\Acrobatcom-mul" -silent -withRuntime -url -programMenu file:///G:/Adobe%20CS4/payloads/Acrobatcom-mul/acrobat.com_signed.air
    App installer failed; exit code 7
    begin quitting
    .airappinstall.log SAYS:
    Starting app install of http://downloads.tweetdeck.com/TweetDeck_0_26.air
    UI SWF load is complete
    UI initialized
    Downloading file to C:\Documents and Settings\<USER>\Local Settings\Temp\fla1472.tmp
    Received HTTP Response Status event
    Response URL is http://downloads.tweetdeck.com/TweetDeck_0_26.air
    WIN XP SAYS:
    "...encountered a problem and needs to close..."
    AppName: seesmic desktop.exe AppVer: 0.0.0.0 ModName: adobe air.dll
    ModVer: 1.5.1.8210 Offset: 000c7a7b

  • Peer2Peer Android Adobe Air Not Working !!!!!

    Hello All,
    I tried to create a small app for my mobile ( android 2.2.1 ) to chat, the app is not working here is the code :
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009" creationComplete="view1_creationCompleteHandler(event)"
            xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
        <fx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                import flash.net.NetConnection;
                import flash.net.NetGroup;
                import flash.net.GroupSpecifier;
                private var nc:NetConnection;
                private var group:NetGroup;
                protected function view1_creationCompleteHandler(event:FlexEvent):void
                    this.title = "P2P Chat App";
                    NativeApplication.nativeApplication.systemIdleMode = SystemIdleMode.KEEP_AWAKE;
                    nc = new NetConnection();
                    nc.addEventListener(NetStatusEvent.NET_STATUS, netStatus);
                    nc.connect('rtmfp://p2p.rtmfp.net', 'key');
                protected function CloseButClick(event:MouseEvent):void
                    NativeApplication.nativeApplication.exit();
                protected function netStatus(event:NetStatusEvent):void
                    trace(event.info.code);
                    switch(event.info.code)
                        case "NetConnection.Connect.Success":
                            setupGroup();
                            break;
                        case "NetGroup.Connect.Success":
                            messages.appendText("Room Connected\n");
                            break;
                        case "NetGroup.Neighbor.Connect":
                            messages.appendText("New Client Connected\n");
                            break;
                        case "NetGroup.Posting.Notify":
                            messages.appendText(event.info.message.message + "\n");
                            break;
                private function setupGroup():void
                    trace(nc.nearID);
                    var groupspec:GroupSpecifier = new GroupSpecifier("myGroup/group0");
                    groupspec.postingEnabled = true;
                    groupspec.ipMulticastMemberUpdatesEnabled = true;
                    group = new NetGroup(nc, groupspec.groupspecWithAuthorizations());
                    group.addEventListener(NetStatusEvent.NET_STATUS,netStatus);
                    topGroup.enabled = true;
                protected function send_message_clickHandler(event:MouseEvent):void
                    var message:Object = new Object();
                    message.message = user_message.text;
                    group.sendToAllNeighbors(message);
                    user_message.text = "";
            ]]>
        </fx:Script>
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <s:layout>
            <s:VerticalLayout gap="5" paddingBottom="5" paddingLeft="5" paddingRight="5" paddingTop="5"/>
        </s:layout>
        <s:HGroup width="100%" verticalAlign="middle" enabled="false" id="topGroup">
            <s:TextInput width="100%" id="user_message"/>
            <s:Button label="Send" id="send_message" click="send_message_clickHandler(event)"/>
        </s:HGroup>
        <s:TextArea id="messages" width="100%" height="100%" editable="false"/>
        <s:Button label="Close" id="close_but" click="CloseButClick(event)"/>
    </s:View>
    and I visited the cc.rtmfp.net and got all greens except the first one : knows public ip address of self

    you say that cc.rtmfp.net shows all green except for "knows IP address of self".  is that the case on both computers that you're trying to do P2P between?  are your two computers actually on the same LAN?  if one is on a wired network and the other is on WiFi, they may not be on the same LAN and may be double-NATted.  if your network topology involves double-NAT and the two computers aren't on the same LAN, AND the outer-most NAT doesn't do hairpinning, P2P communication might not be possible in that configuration.
    if you use the sample 1:1 P2P app, VideoPhoneLabs (link below), can you do P2P between the two computers?  how about on the same computer in two browser windows?
       http://labs.adobe.com/technologies/cirrus/samples/
    if P2P on one computer works but not between two computers, there is probably a NAT or firewall issue going on.  depending on the results from cc.rtmfp.net on both computers, i might be able to deduce what's going on.

  • Adobe Air not working on Mac since OS X Yosemite upgrade

    I upgraded to Mac OS X Yosemite this week and Adobe Air no longer works.  I tried to uninstall and re-install Adobe Air and it still won't work.  I keep getting a message that the application is damaged.  Any suggestions to fix this issues?  I have some applications that I use daily that I cannot use without Adobe Air, so right now I can't use them.  Any help would be appreciated!

    It works fine with latest Adobe AIR Runtime (this week update).

  • Adobe XI not working at all

         Adobe reader XI isnt working it wont open or open PDF files. I have tryed to fix it in the control panel and I have uninstalled and reinstalled it several times and it still isn't working. Anyone know what to do to fix this?

    Since you mention "control panel" I assume that you are on Windows.  Three things to try...
    Using Windows Explorer navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement
    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].
    It could even be a malware issue; see http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html

  • After installing Lion all Adobe products not working will and to slow

    After installing Lion all Adobe products not working will and to slow
    Like the photoshop is to slow to work on it
    Please I need to now what's the problem and how can I solve it
    Best regards

    Yeah Im at a loss too for what is going On here I Do Audio video Editing On the PC side till Now Just got a Not even 6 mo old Mac book pro Dual core 2.5 Ghz 17 in 160 Gb HD 2 GB Ramm did fresh reinstalled of tiger Patched to 10.4.11 then asked the tech at apple store best way to go for Installing my Adobe CS3.3 Master Suite for windows on Here As I said I did not want to go with Lepord as well as I do not use vista yet on PC side with my audio video Apps Abelton live 7.0 Reason 4 Pro tools 7.4 M powered Avid media Composer 3.0 and everything Adobe Makes now he says 2 ways to go VM fusion Or Parallels He likes the Parallels I go that route I install it realize to make Adobe suite work I have too do a custom Virtual machine with 1.5 GB ramm instead of default 512 MB and I create virtual HD at 60 GB instead of default 32 GB which The first time i Installed the master Collection at the 32 GB setting I think it ran out of disk space on the install so i increased the VM to the current settings went to Adobe to Parallels site and Got updates and windows and apple removal tools and ran them here goes reinstall # 3 it takes about 1 1/2 Hrs then at end give ya the error 19-20 errors and when you go look into the folders in Program files adobe there are no Icon launch files and in your programs tab under adobe suite all you see is 2 icons that do not launch anything ? any help is greatly appreciated new to Macs Like them but a lil discouraged !!!!

  • I have downloaded the latest Adobe Flash - it says successful but will not work. It says to 'Manage Plug-ins but the Plug-in says it is enabled but it will not work at all. I have tried disabling and then enabling - no success.

    I have downloaded the latest Adobe Flash - it says successful but will not work. It says to 'Manage Plug-ins but the Plug-in says it is enabled but it will not work at all. I have tried disabling and then enabling - no success. Please help!

    There's two different versions of Flash. The ActiveX version for IE, and the Plugin version for other browsers. Did you install the correct version? This forum's software doesn't thing that Flash is installed for Firefox or the Plugin is disabled.
    1.Download the Flash setup file from here: <br />
    [http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player.exe Adobe Flash - Plugin version]. <br />
    Save it to your Desktop.<br />
    2. Close Firefox using File > Exit <br />
    then check the Task Manager > Processes tab to make sure '''firefox.exe''' is closed, <br />
    {XP: Ctrl+Alt+Del, Vista: Shift+Ctrl+ESC = Processes tab}
    3. Then run the Flash setup file from your Desktop.
    4. Start Firefox and test your installation here: https://www.adobe.com/software/flash/about/
    * On Vista and Windows 7 you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). <br />
    See this: <br />
    [http://vistasupport.mvps.org/run_as_administrator.htm]

  • Java does not work at all upon using the update manager to update to firefox 3.6.10 for Ubuntu 9.0.4

    OS: Ubuntu 9.0.4
    Browser: Firefox 3.6.10
    upon updating to firefox 3.6.10, java does not work at all.
    websites that use java do not work at all anymore, when they worked just fine before the updating thru update manager. e.g. hulu website cannot play any of the shows.
    i can give the folder of bookmarked pages i tried.
    how to do that on here, i've yet to see if possible.
    i can even give saved text from the terminal concerning certain attempts.
    when i updated thru update manager, it gave some weird java plugin that wasn't there before "The IcedTea Web Browser Plugin IcedTea6 Java Web Browser Plugin (execution of applets on webpages)".
    i uninstalled this as instructed by an answer found in one of the pages i saved, cuz it was conflicting w/another java program the updater said i needed. right now, i don't remember for sure what it was. it perhaps was realplayer flash or Java itself. w/all the hours/days of searching i put in, it's difficult if not downright impossible for me to remember all the specifics of what i tried.
    i've searched throughout many webpages (including many searches on mozilla, ubuntu, java, etc) for instruction in fixing the problem.
    oh, and incidentally, on the Java site, when i try the verify test of Java, firefox pops up with that yellow bar right below the slew of tabbed website windows, giving the statement "additional plugins are required to display all the media on this page. (w/link to) install missing plugins ." which is what i do, go thru the requesting plugin installation. it comes up with, guess what, the IcedTea Java Plugin. i click on the 'next' in the "Plugin Finder Service" box that pops up, & all it gives me is "No plugins were installed. IcedTea ...Plugin failed. and the link 'find out more about plugins or manually find missing plugins'". the link takes me to some of the very things/plugins that wouldn't install in the first place. the Java test failure is a LOL funny, as what plugin it is saying is required (IcedTea) is a recommended alternate program to display the very test in the first place.
    i followed the given instructions on those many searched pages, in every case (barring what i may have just plain missed), but to no avail.
    i've even gone to the point of trying to reinstall the previous 3.5.13 firefox version, from mozilla site. even that wouldn't install.
    i've tried installing Java for my sys direct from it's site. nada.
    now it's time for me to post the problem & perhaps someone will come up with some kind of "dummy" way to fix it.
    until then many sites a regularly use are totally useless to me on this fast puter.
    the only way i can get to use such sites, are two choices: 1. use a dinosaur laptop, which is slower than molasses & cannot handle to any streaming stuff, or 2. use an available internet access puter at the library. but useage for ea person per day is limited to only one hour a day. and one can end up waiting for an hour or more ( in the busiest periods) to even get to use one.
    so, is there anyone at all, who knows any for-sure working fix for this problem?
    thanks muchly :^D
    p.s. i can't pay anybody any money for such help, as is required in certain sites (e.g. Java website), cuz i don't have any.
    i can pay in labor tho, if there is someway to find someone who can physically be at this puter w/me, taking me step-by-step
    sorry for the 20-pg essay. i hope it was all clearly understood. if, not, well, clear communication is always what is needed, ask away.

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 9.0 r999
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    In Firefox 3.6 and later versions you need the Next-Generation Java™ Plug-In present in Java 6 U10 and later (Linux: libnpjp2.so; Windows: npjp2.dll).
    http://java.com/en/download/faq/firefox_newplugin.xml
    See also http://java.sun.com/javase/6/webnotes/install/jre/manual-plugin-install-linux.html

  • Acrobat Pro XI not working at all in Windows7 64bit - tried everything

    I am using Acrobat Pro XI not working at all in Windows7 64bit - tried everything. About a month ago I built new computer. Acrobat worked fine. In last week it started not producing PDFs using Save As and would crash when processing scanned document. So I redownloaded exe file, used the acrocleaner to erase existing program, and reloaded Acrobat Pro XI.
    No the program will not start at all. Freezes when opening by clicking PDF file or by opening program icon.
    plz help

    Hi dufflebag123,
    Please try the following basic troubleshooting steps:
    > Enable the hidden Admin Account on Windows 7 ( Ref :  http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-wi ndows-vista/ )
    > Disable all Non-Microsoft Startup Services. (Ref : http://helpx.adobe.com/x-productkb/global/disable-startup-items-services-windows.html )
    > Disable all the Antivirus softwares like CA, Norton,Mc Afee etc. temporarily from the computer.
    Reboot and try installing in the new enabled Admin user account and check.
    Regards,
    Rave

  • [svn] 1720: Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints .

    Revision: 1720
    Author: [email protected]
    Date: 2008-05-14 14:50:06 -0700 (Wed, 14 May 2008)
    Log Message:
    Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints.
    QA: Yes
    Doc: No
    Details:
    Update to the TomcatLoginCommand to work correctly with NIO endpoints.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-304
    Modified Paths:
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

    Revision: 1720
    Author: [email protected]
    Date: 2008-05-14 14:50:06 -0700 (Wed, 14 May 2008)
    Log Message:
    Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints.
    QA: Yes
    Doc: No
    Details:
    Update to the TomcatLoginCommand to work correctly with NIO endpoints.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-304
    Modified Paths:
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

  • When i install the new os my fcp,motion and many adobe software not working so please help me out.

    when i install the new os my fcp,motion and many adobe software not working so please help me out.
    there are so many videos on youtube but i want know any solution from apple side plz my so many works are pending becuze i am working as Video Editor.

    You need to be more specific about which software applications you're using, the versions and what happens when you try to open them.
    It would also be nice if you could include which model MacBook Air you're using.
    Clinton
    MacBook Pro (15” Late 2011), OS X Yosemite 10.10, 16GB Crucial RAM, 960GB M500 Crucial SSD, 27” Apple Thunderbolt Display

  • Flash player 11.0.1.152 not working on all sites. Using Mac OS 10.5.8

    What am I missing?  Flash didn't work properly on previous version either.  I use google chrome primarily but flash does not work on all sites using Firefox or Safari either.  I have a Macbook Pro operating on 10.5.8.  I'm sure it's probably a simple fix but I just haven't found it.  Appreciate any help on the matter. 

    I have spent countless hours trying to get my flash player working and have tried EVERY kind of possible answer through many forums and websites to solve this. Does adobe have anything currently that will solve this flash player problem?? I have the lastest version of Safari 5.1.1. and I have the lastest version of adobe flash player 11.0.1.152, I have even tried the debugging installs adobe put out for flash player. I have tried the "working around lion flash player video thing" where you try private browsing. I have tried going into system preferences and entering into the flash player settings in the storage tab the allow this sites, etc. NOTHING HAS WORKED!! I still get my local storage pop up message whenever I try and watch a you tube or any site that has flash video on it, that flash player settings box still pops up and is stuck on my screen and I cant click allow or deny or get it off. So many people I have read have the same problem and I only the same answers pop up that I have tried again and again, does anyone have a real resolve to this yet??? PLEASE PLEASE PLEASE HELP.

Maybe you are looking for