Problems running Air Applications

3 days ago, I was running inCombat 4e perfectly fine, without any issues.
Yesterday, I installed this app, it worked fine for a while. I closed it down and went to start it up later. That's when the problems started. I get the license agreement screen(pic), and when I click "I Agree", that screen closes and nothing happens. At all.
I uninstalled Air and the 2 apps I use, restarted and tried to reinstall, but I get the same issue. I'm running Windows 7, Pentium Dual Core 2.2 GHz laptop with 3 GB RAM.
Here is my install log file as well. Any help is greatly appreciated.

[email protected] have an identical problem. I run Times Reader and IHT Reader on AIR. After the update, when I launch the application, I get the license screen and when I click on agree nothing happens. I uninstalled AIR and the applications and reinstalled them. The problem remains the same.

Similar Messages

  • Help! Run AIR Applications without Adobe AIR.

    Hello, I wanted to ask that is there any way to run AIR applications without having Adobe AIR in the computer. It's really annoying when you have to give someone your application to use and then the person needs Adobe AIR to run it. Any suggestions?

    Where to start...
    AIR is a lot like Java in the sense that it requires a run-time engine to be installed. This engine has all "things" required to for the application to run. In a similar way, applications such as 3DMax or Word require that the operating system be present for them to run. Those programs are written using API calls that are present within the target operating system. Likewise, AIR and Java apps are written using API calls that are present within their run-time. To bring it full circle, AIR is an application written in C, that uses APIs for the target operating system. So, when you perform certain functions within AIR, it then knows how to execute needed operating system functions (as needed). AIR also provides a lot of higher level functionality and management that make your life as a programmer a lot simpler.
    Looking at iOS or Android, we have the same thing happening. Some developers are writing apps using Objective-C (iOS) or Java (Android) that are using APIs specific to those operating systems. This is the same as writing your app in C like 3DMax.

  • Problem running java applications on Mac Mini.

    Hi all.
    I have a Mac Mini. Days ago, I started having problems running java applications. Right now, I can not run any java application or even a plugin into a web page.
    I downloaded and reinstalled java from Oracle website, but the problem remains unsolve.
    Anyone can help me?
    Thanks in advance.
    Carlos.

    azofra1 wrote:
    Hi all.
    I have a Mac Mini. Days ago, I started having problems running java applications. Right now, I can not run any java application or even a plugin into a web page.
    What error indications do you get? You have to enable error logging in the Java Control Panel to see the details.

  • Run air application

    Hello,
    I'm try to run air application under Arch linux. I have:
    test.air application.
    I installed adobe-air-sdk from aur.
    I try as: https://wiki.archlinux.org/index.php/Adobe_AIR
    I make:
    #! /bin/sh
    /opt/adobe-air-sdk/bin/adl -nodebug home/user/test.air/META-INF/AIR/application.xml /opt/airapps/Mpoker.air
    But get error:
    application descriptor not found
    On other operation systems are all all right. Anybody runs any air application under arch linux?
    Thank you.

    Shouldn't it read "/home/user/test.air/META-INF/AIR/application.xml" with a slash at the beginning?
    Also http://www.siamnet.org/Wiki/AdobeAIR and http://codingbiologist.wordpress.com/20 … not-found/
    Last edited by karol (2011-04-25 13:46:50)

  • 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

  • Error on running AIR application

    Hello,
         I am new to AIR and andriod OS. I have developed a new AIR application in flash builder burrito. It is working fine in native emulator of flash builder. Then I installed on andriod emulator with target name Andriod2.3.3 on andriod sdk. It shows an error - The application barcode (process air.barcode) has stopped unexpectedly. Please try again -  while running the application. this error show for all AIR application.
    Please help me to rectify this error
    Thanks in advance
    Regards
    Shibu

    Hello,
    Thanks for your replay
         I actually tried in andriod 2.2 API level 8 emulator. there is still exists some problem . It is working fine with google APIs 8 target in the emulator.
         I installed the application on my mobile device. It is LG optimus. But unable to install air runtime on this mobile. what are the minimum requirments for air runtime?
    Regards
    Shibu

  • Communication problem between air application from swf at browser

    Hi,
    I am trying to communicate adobe air native application from brwser using swf, I check for native application installed or not. If installed then launch and if not then install and launch.
    I am facing problem when browser crashes and communication get lost with adobe air native application. And when user restart web browser and try to make local connection for communication with native application, some times it get failed. so, how to handle this state please help.
    Thanks
    Nitesh Kumar

    Hi sinious,
    How could I clean up connection when browser is aborted or lost?
    below you can find the code snippet to check for air application and connection
    airSWFLoader = new Loader();
                                  loaderContext = new LoaderContext();
                                  loaderContext.applicationDomain = ApplicationDomain.currentDomain;
                                  airSWFLoader.contentLoaderInfo.addEventListener(Event.INIT, onInit);
                                  airSWFLoader.load(new URLRequest("http://airdownload.adobe.com/air/browserapi/air.swf"),loaderContext);
    function onInit(e:Event):void 
                                  airSWF = e.target.content; 
                                  switch(airSWF.getStatus().toString())
                                            case "available" : AirLoaderStatus = 1;
                                            break;
                                            case "unavailable" : AirLoaderStatus = 2;
                                            break;
                                            case "installed" : AirLoaderStatus = 3;
                                            break;
    private function getAppStatus():void
                                  clearInterval(intervalIdentifier);
                                  if(AirLoaderStatus == 0){intervalIdentifier = setInterval(getAppStatus,1000);return;}
                                  m_launchInstallBtn.visible = true;
                                  var statusInfo:String = airSWF.getStatus();
                                  airSWF.getApplicationVersion(m_installerFileName, m_pubID, versionDetectCallback);
    function versionDetectCallback(version:String):void
                                  if (version == null)
                                            trace("Not Installed");
                                            // Take appropriate actions. For instance, present the user with
                                            // an option to install the application.
                                  else
                                            m_isPluginsInstalled = true;
                                            // Take appropriate actions. For instance, enable the
                                            // user interface to launch the application.
    private function onlickMouse(event:MouseEvent):void
                                  m_text.text += "\nm_isPluginsInstalled:"+m_isPluginsInstalled+":::AirLoaderStatus:"+AirLoaderStatus;
                                  trace("\nm_isPluginsInstalled:"+m_isPluginsInstalled+":::AirLoaderStatus:" +AirLoaderStatus);
                                  switch(event.currentTarget)
                                            case m_launchInstallBtn:
                                                         if(AirLoaderStatus == 1)
           installAirsetup();
                                                      else
                                                                if(!m_isPluginsInstalled)
                                                                          airSWF.installApplication(m_url, m_runtimeVersion, m_argsToPass);
                                                                          airSWF.launchApplication(m_installerFileName, m_pubID, m_argsToPass);
                                                                else
                                                                          airSWF.launchApplication(m_installerFileName, m_pubID, m_argsToPass);
                                            break;
    in the above code snippet I pass localConnection for send and recieve as an argument in m_argsToPass.
    the connection names strarts with "_".
    In the air application I I split the event arguments like given below
    argsArray = event.arguments.toString().split(",");
    and then try to establish connection.
    Please suggest, how could I clean the connection on lost/ abort of browser, since then swf object embeded in browser also get lost.

  • Having problem running an application

    I have recently installed jdk 1.2.2 and i have no problem running applet but when i try to run an application i get the message 1 error can't find<filename> . java.
    The path in autoexec.bat is fine. JRE File is include in my file jdk1.2.2.
    I have installed and deinstalled it a couple of time and can't make it work.
    Could someone help me please!!
    Thanking you in advance!

    doesn't sound like a path problem at all. you say when you try to RUN the app you get a message can't find filename.java. When you're running the app you run the binary class file i.e. java MainClass.class. If you're compiling the app you would do javac MainClass.java. Clarify your situation further if this does not help you out.

  • Problem running javafx application in web browser

    The application runs fine when i build it in netbeans and run it. but when i try running it in a web browser, it displays a blank square!
    the following is the html page that netbeans generated:
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>tasklistinbrowser</title>
    </head>
    <body>
    <h1>tasklistinbrowser</h1>
    <script src="http://dl.javafx.com/1.3/dtfx.js"></script>
    <script>
    javafx(
    archive: "tasklistinbrowser.jar",
    width: 1000,
    height: 1000,
    code: "tasklistinbrowser.Main",
    name: "tasklistinbrowser"
    </script>
    </body>
    </html>does anyone know where i'm going wrong?

    I also have a problem when trying to run my application in a browser. (running with netbeans works)
    Only a grey shape appears.
    But it seems to be a problem with the application itself, because other applications can be run in my browser without any problems.
    any ideas? thanks

  • Problem signing AIR application using migrate option

    I have a pkcs12 certificate (certificate.p12) which expired on 2014-09-16.
    Looking at Adobe AIR * Signing an updated version of an AIR application it should be in range of the 180 days/365 days after expiration, so it should be usable to sign for migration purposes.
    But using it like this:
    adt -migrate -storetype pkcs12 -keystore certificate.p12 test.air migrated_test.air
    Produces the following error:
    The signer's certificate chain contains a revoked certificate
    Questions:
    a) Does anybody have an idea what the problem could be or possible solutions?
    b) Is the error-message really caused by the expiration of the certificate, or would that error message be different, like for example: The signer's certificate chain contains an expired certificate?
    c) My thinking in b) is in regard to that the certificate was issued by TC TrustCenter GmbH which no longer issues certificates. Could this be the cause here?

    Okay, i just learned further infos. It really seems to be the case that the certification entries of TC TrustCenter GmbH were set to revoked state.
    Wahy was that done, should they be allowed to do this at this time?
    Can i still somehow do the migration?

  • Problem running Sample Application after intalling patch set 4.0.2.00.07

    We just applied the patch set 4.0.2.00.07 on our TEST environment APEX4.0.
    Now I can't run the sample application. When I run the application, login using either the admin or the demo user with the #lower_case_workspace_name#", the browser is generating below error message:
    ORA-06550: line 2, column 8: PLS-00201: identifier 'CUSTOM_AUTH' must be declared ORA-06550: line 2, column 1: PL/SQL: Statement ignored
    Error ERR-10460 Unable to run authentication credential check function.
    The sample application works fine on our DEV environment APEX 4.0.0.00.46 *without* the patch set 4.0.2.00.07.
    Does anyone have an idea how to resolve this
    Thanks

    Varad -
    I see that these functions are missing on the TEST environment parsing schema. I will have our DBA rectify the issue.
    Thanks,
    DP

  • Is there a problem running Java applications on my mac?

    I am trying to set up a new website, and am therefore trying to upload photos.  I get a warning message saying:
    "this application will run with unrestricted access which may put your computer and personal information at risk.  Run this application only if you trust the location and publisher above." and  
    "This application will be blocked in a future Java security update because the JAR file manifest does not contain the Permissions attribute.  Please contact the Publisher for more information"
    Does anyone have any advice for me?

    There is no official iBook app for the Mac, but there are plenty of applications for reading a variety of ebook formats as above.  Another is Calibre, which can read the ePub format that is used for iBooks.  The software is free, take a look here:
    http://www.macworld.com/article/160425/2011/06/calibre.html

  • Problem running AIR app on windows server 2003

    Hello,
    I have an AIR app that I am trying to run from a Java program under Windows 2003. (It runs perfect on XP and Vista.)
    The problem is whenever I try to run the AIR app, it runs "Adobe AIR Updater.exe" which causes the app to not run. And both the process stop responding. I can see them both in Task Manager. I disabled the AIR automatic updates using the Settings Manager application but it still runs the Adobe AIR Updater.exe file.
    Any help to resolve this problem would be highly appreciated.

    Not sure about  copying eulaAccepted file from one location to another - that would really depend on which user account your service is running under.
    A better approach (IMHO), is to open the services window (My Computer | <right-click> | Manage, then navigate to Services and expand the tree) so you can see your service on the RHS.
    Stop your service, then inspect it's properties, select the 'Log on' tab, then check the checkbox which says "Allow system to interact with desktop". Apply the change, then restart your service.
    next time the AIR runtime prompts you to accept the EULA, the window will appear on the screen, so you can click "I accept".
    After accepting, reverse the procedure which allowed the service to interact with the desktop, and make sure that you have modified the registry to prevent AIR from updating as mentioned in:
    http://help.adobe.com/en_US/AIR/1.5/air_admin/WS5b3ccc516d4fbf351e63e3 d11c0f59823a-7ff0.html
    You should be all set.

  • Problem running Oracle application server

    Hi,
    I have the following problem.
    After installing Oracle Web Server, I can't start it.
    This is the log file:
    Could not create the Java virtual machine.
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    06/10/10 19:13:37 AVVERTENZA: Application.setConfig Application: system is in failed state as initialization failedjava.lang.InstantiationException: Error initializing ejb-modules: Error loading module file:/C:/product/10.1.3/OracleAS_2/j2ee/home/applications/admin_ejb.jar: Syntax error in source or compilation failed in: C:\product\10.1.3\OracleAS_2\j2ee\home\application-deployments\admin_ejb\generated\MBeanServerEjbRemote_StatefulSessionBeanWrapper0.java
    Could not create the Java virtual machine.
    10-ott-2006 19.13.37 com.evermind.server.Application setConfig
    AVVERTENZA: Application: system is in failed state as initialization failedjava.lang.InstantiationException: Error initializing ejb-modules: Error loading module file:/C:/product/10.1.3/OracleAS_2/j2ee/home/applications/admin_ejb.jar: Syntax error in source or compilation failed in: C:\product\10.1.3\OracleAS_2\j2ee\home\application-deployments\admin_ejb\generated\MBeanServerEjbRemote_StatefulSessionBeanWrapper0.java
    Could not create the Java virtual machine.
    06/10/10 19:13:37 Error initializing server: Error initializing ejb-modules: Error loading module file:/C:/product/10.1.3/OracleAS_2/j2ee/home/applications/admin_ejb.jar: Syntax error in source or compilation failed in: C:\product\10.1.3\OracleAS_2\j2ee\home\application-deployments\admin_ejb\generated\MBeanServerEjbRemote_StatefulSessionBeanWrapper0.java
    Could not create the Java virtual machine.
    06/10/10 19:13:37 Fatal error: server exiting
    Can you help me??
    Thanks
    Rocco

    Hi Recco,
    I hope I'm wrong , I think XP is not supported for AS.
    The second thing is U have not enough memory to run AS, that why U will always get problem with Java.
    The third thing is about your Env. I mis jre path
    ex. at your user profile & system profile just put for example
    ORACLE_HOMe just give your oracle software home
    by PATH U need to say for example c:\oracle_HOME/jre/1.4.2/bin
    Hear from U,
    Regards,
    Hamdy

  • Problem running JavaFX application as web applet / web start

    Hi All,
    I need to run a JavaFX application as applet in a web page. To do that I use the html page
    generated by javafxpackager and all works fine if I launch the html page locally from my
    pc but when I load the html page from web server the application runs slow till freezing the browser.
    All jars are signed with a self-signed certificate, I've tried with Firefox, Chrome, IE and different servers.
    Same problem with web start (jnlp), locally works fine, launched from web it freezes.
    Enabling Java Console I've noticed a lot of log like:
    basic: JNLP2ClassLoader.findClass: java.lang.ImageView: try again ..
    basic: JNLP2ClassLoader.findClass: java.lang.ImageView: try again ..
    basic: JNLP2ClassLoader.findClass: java.lang.Image: try again ..
    basic: JNLP2ClassLoader.findClass: java.lang.Image: try again ..
    network: Cache entry not found [url: http://www.mysite.com/applet/META-INF/services/javax.xml.stream.XMLInputFactory, version: null]
    network: Connecting http://www.mysite.com/applet/META-INF/services/javax.xml.stream.XMLInputFactory with proxy=DIRECT
    network: Connecting http://www.mysite.com:80/ with proxy=DIRECT
    network: Connecting http://www.mysite.com/applet/META-INF/services/javax.xml.stream.XMLInputFactory with cookie "has_js=1"
    basic: JNLP2ClassLoader.findClass: java.lang.Font: try again ..
    basic: JNLP2ClassLoader.findClass: java.lang.Font: try again ..
    basic: JNLP2ClassLoader.findClass: javafx.scene.control.Font: try again ..
    basic: JNLP2ClassLoader.findClass: javafx.scene.control.Font: try again ..
    basic: JNLP2ClassLoader.findClass: javafx.scene.layout.Font: try again ..
    basic: JNLP2ClassLoader.findClass: javafx.scene.layout.Font: try again ..
    network: Cache entry not found [url: http://www.mysite.com/applet/META-INF/services/javax.xml.stream.XMLInputFactory, version: null]
    network: Connecting http://www.mysite.com/applet/META-INF/services/javax.xml.stream.XMLInputFactory with proxy=DIRECT
    network: Connecting http://www.mysite.com:80/ with proxy=DIRECT
    network: Connecting http://www.mysite.com/applet/META-INF/services/javax.xml.stream.XMLInputFactory with cookie "has_js=1"
    What am I doing wrong?
    This is my jnlp (MyApp.jnlp)
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec = "1.0" xmlns:jfx = "http://javafx.com" codebase = "http://www.mysite.com/applet/" href = "MyApp.jnlp">
    <information>
    <title>MyApp</title>
    <vendor>MyApp</vendor>
    <description>Sample JavaFX 2.0 application.</description>
    <homepage href = "http://www.mysite.com/applet/"/>
    <offline-allowed/>
    </information>
    <resources>
    <jfx:javafx-runtime version = "2.2+" href = "http://javadl.sun.com/webapps/download/GetFile/javafx-latest/windows-i586/javafx2.jnlp"/>
    </resources>
    <resources>
    <j2se version = "1.6+" href = "http://java.sun.com/products/autodl/j2se"/>
    <jar href = "MyApp.jar" size = "2836601" download = "eager"/>
    <jar href = "libs/gson-2.2.2.jar" size = "189285" download = "eager"/>
    <jar href = "libs/sun.jar" size = "83743" download = "eager"/>
    </resources>
    <applet-desc width = "1280" height = "1024" main-class = "com.javafx.main.NoJavaFXFallback" name = "MyApp">
    <param name = "requiredFXVersion" value = "2.2+"/>
    </applet-desc>
    <jfx:javafx-desc width = "1280" height = "1024" main-class = "test.App" name = "MyApp"/>
    <update check = "background"/>
    </jnlp>
    and this my html page
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>My App</title>
    <script src="http://java.com/js/dtjava.js"></script>
    <script>
    function launchApplication(jnlpfile) {
    dtjava.launch( {
    url : 'MyApp.jnlp'
    javafx : '2.2+'
    return false;
    </script>
    <script>
    function javafxEmbed_fxApplication() {
    dtjava.embed(
    id : 'fxApplication',
    url : 'MyApp.jnlp',
    placeholder : 'MyAppId',
    width : 1280,
    height : 1024
    javafx : '2.2+'
    <!-- Embed FX application into web page once page is loaded -->
    dtjava.addOnloadCallback(javafxEmbed_fxApplication);
    </script>
    </head>
    <body>
              <div id="MyAppId"></div>
    </body>
    </html>
    Thank you

    Some more info,
    I watched the web server logs and I found many repeated log entries like
    "GET /applet/myapplet.html/META-INF/services/javax.xml.stream.XMLInputFactory HTTP/1.1" 404 19023 "-" "Mozilla/4.0 (Windows 7 6.1) Java/1.7.0_09"
    Googling this I've found many posts regarding similar problems:
    http://stackoverflow.com/questions/7997566/web-service-client-applet-keeps-asking-for-meta-inf-services-javax-xml-ws-sp
    http://stackoverflow.com/questions/2340969/applet-served-by-java-web-start-resources-requested-to-web-server-before-look-i
    It seems to be a strange Behaviour of the JNLPClassLoader that tries to load classes from server instead from jar or local class path.
    Somebody suggests to remove all logging entries from code or to add "codebase_lookup = false" to applet parameters but this does not solve the problem.
    I use FXML to define my UI and I think that every time an fxml is loaded JNLPClassLoader tries to load the xml parser (javax.xml.stream.XMLInputFactory)
    from server.
    Somebody have any idea?
    Thank you.

Maybe you are looking for

  • Problem in Using XSLT

    I am facing a problem while using XSLT. The Problem is that  I have a Structue and corresponding internal table  defined as follows.      TYPES:BEGIN OF X1,         TW(4)        TYPE  c,         TX           TYPE  int1,         TY(1)        TYPE  c,

  • Videos on my device play back audio only, black screen

    Videos I have taken on my device play audio but with a black screen since the 10.3.1 update.  Bell, Z30, up to date. Solved! Go to Solution.

  • Burned DVD does not work in all players

    Hi all, I am quite new to authoring my own DVDs, but since I married more or less recently I thought it is a nice idea to author a DVD with our wedding pictures for family and friends. So I spent enough time in iDVD selecting themes, slide shows, mus

  • Need Command Prompt, system reboots at startup

    Laptop will not boot to XP pro windows.  loops at reboot.    I do not have CD's for the system.  I used another XP service pack 2 install CD but when accessing the repair console the install CD cannot find any hard drives.   I used the Recovery conso

  • 12.1 12.2 making my programs slow

    Hi, I've been using sunstudio 12.1 to compile a prgram witch C/C++ and Fortran 95 parts. Recently, after I've upgraded to Oracle Solaris Studio 12.2, the same program compiled with same compiler options are at least 5 times slow! Even the 'Release' b