Need help getting adobe air to run on windows

how do i get windows to recognize adobe air as a program to open a .swf file?

Hello,
Unfortunantly, I'm not quite good in JavaScript to give you a good response. But I can you give you an advise, that can help you:
1. Add a simle system.out.println("Init called!"); message in public void init() method of the servlet RefreshInfo.
2. Try to access servlet by simple browser request "http://localhost:8080/yourApp/RefreshInfo".
2. If the message "Init called!" appears in the Tomcat console, your servlet code is correct and the serlet is described properly in web.xml . In this case, the possible problem is in the JavaScript code.
Good day,
http://www.myjavaserver.com/~voronetskyy/

Similar Messages

  • Need help getting Adobe OnLocation CS3 to work with windows 7 64 bit. Any ideas?

    Need help getting Adobe OnLocation CS3 to work with windows 7 64 bit.  The program installed ok and the S/N took.
    The program does record video and audio HDV M2T.
    The problem is video doesn't display or play back on the monitor component @ 16:9 or 720 p.  4:3....
    The scopes respond as do the audio components when recording. (with a blank monitor component).
    The video does play back on my system no problem.
    Any ideas?
    Dan

    Moving the discussion to OnLocation
    Thanks,
    Atul Saini

  • Need help activating Adobe Acrobat XI PRO FOR WINDOWS?

    need help activating Adobe Acrobat XI PRO FOR WINDOWS?

    Hi jurleana15722686,
    Are you working with a subscription version or perpetual (where you bought the software outright)? Are you running into a particular problem or receiving an error message when you try to activate?
    For starters, please check out this document: https://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html.
    If you're still having trouble, please let us know what the exact issue is, including any error messages that you're receiving. It would also be helpful to know what version of Windows you're using.
    Best,
    Sara
    [disucssion moved to Downloading, Installing, Setting Up forum]

  • I cannot get adobe air to run keep getting error message 'damaged or broken'

    Adobe air problems will not run despite several attempts to install and reinstall. Keep getting error messages - file damaged or broken - reinstall or contact Adobe Help

    Follow the steps mentioned in the Knowlegdebase article:-
    http://helpx.adobe.com/creative-suite/kb/help-application-doesnt-update.html

  • Need help getting my applet to run..

    Hi, I am having the utmost trouble getting my applet to run. First I spent a month correcting syntax and other errors generated during compile. Now I find myself spending another month getting the compiled product to run. I don't care if the screen is completely blank and my logic is all messed up, I don't mind logic debugging. My applet just will not run at all, it won't even initialize.
    First when I tried to run my applet in Internet Explorer I got the following error in the statusbar:
    "load: tsorgi5 can't be instantiated"
    So, I researched that error message, and the solution appeared to be that I would need to use the Java Plug-In. So, I use that and now I find this message in the statusbar:
    "exception: null."
    That happens when the text "Loading Java Applet ..." is in the centre of the applet, and Internet Explorer acts like it is still doing something no matter how long I wait.
    I tried researching this, but only found "exception: null" with other things after the text "null."
    In Forte, when I choose "Execute" I get the following in the Output Window, I/O tab:
    java.lang.NoSuchMethodError: main
    Exception in thread "main"
    I would assume it expects me to add a method "main()," but I also get that same message with a different applet (which doesn't have a method "main()") which runs perfectly fine.
    I usually try to solve many of my problems myself, but with this one I have no idea where to start looking for answers. I'm relatively new to Java, been using Java for only half a year, so this particular problem is like looking for a four-leaf clover in the streets of New York City..
    I'm going to be chopping my applet into pieces, having a separate class file for each major engine. (It is a role-playing game, so I'll separate battle engine from cut-scene engine from world exploration engine etc..) Hopefully I will be able to narrow down my search for what is causing me all of these problems. Then once I solve my problems I can piece everything back together.
    In the meantime, I am hoping that some of you could help me out so that I may know what I am looking for.
    Thank You for your time,
    -Tony Slater

    Ah.. Forte is still a bit confusing to me, I have not and probably will not take the time to learn much about Forte, as the only real reason I use it is because unlike wordpad, I can see line numbers. =] Very helpful with my program being the size that it is.
    I do not think that the simple applet idea will be of much use, because one of my earlier applet projects (a main menu for my current project) which I mentioned above as another applet without a main() method which worked perfectly fine is very simple. Although I will try it anyway, as it could help and you are most likely much more experienced than I. =]
    Okay, I typed the following in the Dos Prompt:
    appletviewer TestApplet.class
    ..It printed a blank line, paused a little bit, then brought me back to the prompt, just like running a dos program that does not give any output. I'm not sure, but I would assume it should print a line containing the text "Here?" I have not used appletviewer before, so I do not know what it is supposed to do. =P
    I have already tried using System.out.println, but the problem occours even before the applet is started. I'll try enabling the Java Console first thing tomorrow morning, since a restart is required when enabling it.
    Now, I would be happy to post some code, but I'm not sure it would be best to post the code when my program is 2814 lines.. although 800 lines are probably comments, and most of those comments are probably irrelevant. Also I can sometimes be a messy coder. Although I can post some general information and can probably (with a little work) post an "outline" of the code.
    Since it is getting late I'll just post some portions of code which hopefully will prove important.
    // Import Packages
    import java.awt.Graphics;
    import java.awt.Color;
    import java.awt.*;
    import java.applet.*;
    import java.lang.System;
    import java.lang.reflect.Array;
    import java.lang.Math;
    import java.lang.Double;
    import java.math.*;
    import java.util.Random;
    import java.io.*;
    variable/object types created and/or declared between "public class.." and "public void init()...":
    int
    byte[]
    String
    RandomAccessFile
    int[][]
    double
    int[]
    double[][][]
    Random
    Image
    int[][][]
    arrays are filled in the init() method.
    public String getIniStrValue(String iniFile, String iniGroup, String iniItem) // Used for retrieving information from the game's external file system.
    another method getIniIntValue(int, String, String, String) is used for int values stored in external files.
    Within public void paint(), gameplay modes are detected and dealt with accordingly. With Cut-Scenes, proper charecter images and text is displayed, all cut-scene information is stored externally. Other modes do virtually the same, display graphics and text based on internal game data or un-changing external data files.
    Within public void mouseClick(), in certain modes of the game the mouse click will trigger a change no matter where the user clicked (such as cut-scenes, to advance to the next line of dialog), or different variables are set depending on where the user clicked. (What I like to call.. custom buttons) At the end of the method repaint(); is used, and the paint() method will alter the screen according to any changes that may have happened.
    public void charAttack() is a method called to handle battle equations when a playable and controllable charecter is making a move. It will detect the current charecter, detect the move being made by the charecter (attack, special move, magic, etc) and will change any variables accordingly and will then use repaint(); so that the player may know what has happened. (Whether or not attack was successful, how many HP the enemy lost, etc)
    public void loadBattle() is called when the charecter encounters an enemy. It will load possible enemies of the current part of the world being explored, select one, then load that enemy's "stats" from external game data files, and will then specify the new mode (Battle Menu, where the player chooses the moves to be made for the turn) by setting the int value "Mode." repaint(); is then called and it will paint the battle menu.
    public boolean keyDown() is of course used to detect keyboard events. In world exploration, the charecter will be moved accordingly. In modes such as cut-scenes, a variable will be changed to advance to the next line of speech. In menus, the keyboard events are used to switch between options. repaint(); is used to update the screen accordingly.
    Well, even though I very briefly summarized the code, it appears to have taken half an hour to do. I'll be getting some sleep in a few minutes, and when I wake up tomorrow morning I hope to both see and make some progress on solving this problem.
    Thank You,
    -Tony Slater.

  • Need help with adobe air!

    Error message "  ask for adobe air.: "a download error occurred. try to download again?"
    this is when I'm trying to download someting. Right now I"m using the update feature and or vudu (cloud service) Adobe air will not let me download to my computer!
    error!  : "a download error occurred. try to download again?"
    I tried to reinstall it and the same..

    Does it happen with all downloads? Does the same error happen attempting to access the same download from a different computer? What version of AIR?
    I'd recommended posting again with more details here:
    http://forums.adobe.com/community/air
    Hope that helps,
    -Dave

  • I need help with Adobe AIR

    ok so
    when i try to play my MMORPG it says to install the latest version of Adobe AIR "click here".... so i click it and try to install... when it is in the middle of instalation an error thing shows stating it cannot finish because the admin wont allow it >_< i don't understand i AM the admin.. and the only one.. and i have no clue what to due........

    Hello,
    Could you try installing the stand alone version of AIR 2.5.1?  If it fails again, which I suspect it might, please post the contents of your AIR installer log and a few basic details of your system (cpu, os version.)  Hopefully we'll get this straightened out quickly.
    Thanks,
    Chris
    Ps. Just out of curiosity, which MMO are you playing that's requiring AIR?

  • Newbe at Applescript - Need Help Getting Applescript to Auto-Run

    Ok so I admit I'm new at creating Apple Scripts, but here's my dilemma:
    I have created an Apple Script to mount and unmount my new LaCie d2 Quadra 1TB drive (For use with the LaCie "Shortcut Button), the script "runs" great in Script Editor. However, when finally saved to a newly created Mac HD>Library Folder>Scripts Folder>LaCie d2 Shortcut Button Scripts Folder ... when I use the LaCie d2 front panel "shortcut button", the script launches the Script Editor app and the script shows in the script window. If I select "run" in the window the script will mount and then unmount the LaCie drive (in the Finder), as designed to do.
    My issue is, obviously, how do I get the script to run/activate "behind the scenes without always
    launching the Apple Script Editor app.
    Have I saved the script wrong or something else?
    Is the script something to be "run" through Apple Automator?
    Any assistance will be appreciated.
    This is the script:
    tell application "Finder"
    if not (exists the disk "LaCie 1TB") then
    do shell script "diskutil mount `disktool -l | grep 'LaCie 1TB' |
    sed 's/.\(disk[0-9s]*\)./\\1/'`"
    delay 2
    else
    eject "LaCie 1TB"
    delay 2
    end if
    end tell

    Ah yes ... changing the Apple Script from .scpt to .app., that works!
    But I still notice that when the LaCie d2 Quadra 1TB drive "front short-cut button"
    is selected, and it mounts and dismounts the drive from the finder as the Apple Script
    was written to do .... that the Apple script still launches the "script icon and the script saved text title", briefly in the bottom dock. It then disappears out of the dock once the script has "run".
    Is there any way to keep the "script icon and the script saved text title" from launching in the dock (when the script first runs), and just have it launch invisibly "behind the scene" so to speak?

  • Need help getting I-tunes to run on XP

    I have tried most all the tricks listed and still I-tunes will not run on relatively new windows XP, Dell machine (also newly purchased I-pod), - I have disabled virus protection, I have loaded most recent versions of i-tunes, I have cleared temp files and reloaded. I tried loading Q-time player as a stand alone. I deleted old folders of I-tunes and Q-time and reloaded.
    I-tunes down-loads without any error message. the I-pod connects to USB and charges - and shows up as an "E" drive. But clicking on i-tunes icon, or loading audio disk or connecting I-pod all fail to visably launch i-tunes (nothing is seen in task manager after attempting to launch I-tunes - but on shut down of the computer I get the message that I-tunes is not responding and must be shut down manually) (also for grins I tried launching newly loaded Q-time -> I get message saying its loading, but this message never clears). Already 10 hours spent on this

    Hello,
    Unfortunantly, I'm not quite good in JavaScript to give you a good response. But I can you give you an advise, that can help you:
    1. Add a simle system.out.println("Init called!"); message in public void init() method of the servlet RefreshInfo.
    2. Try to access servlet by simple browser request "http://localhost:8080/yourApp/RefreshInfo".
    2. If the message "Init called!" appears in the Tomcat console, your servlet code is correct and the serlet is described properly in web.xml . In this case, the possible problem is in the JavaScript code.
    Good day,
    http://www.myjavaserver.com/~voronetskyy/

  • Need help getting PC2 8500 to run at 1066

    I have an MSI MS-7510 P7N Diamond motherboard, Core 2 Quad Q6600 overclocked from 2.40 GHz to 3.0 GHz via raising FSB to 1333 MHz and running stable for ~ 3 years now.
    I just installed 2x PC2 8500 2GB G. Skill sticks for 4 GB RAM (replacing  4x 1 GB) and CPU-Z reports DRAM frequency at 400.0 MHz.
    I have tried setting DRAM Frequency to 1066, timings to 5-5-5-15 (the rating of the RAM sticks), DRAM Voltage at 2.1, and Memory Timing to 2T.  The systems starts to load Windows 7 and then it reboots back to POST screen and continues in this loop until I undo reset DRAM back to 800.
    Is it possible for me to get this RAM set to 1066 MHz?

    Thanks for the fast reply. Here’s what I did.
    DRAM Frequency set to 1066 (from original setting of 800)
    Timings to 5-5-5-15 (from original setting of AUTO)
    Memory Timing to 2T (from original setting of AUTO)
    DRAM Voltage to 2.1 (from original setting of AUTO)
    The only DRAM Frequencies that boot into Windows 7 are 800 and 533, which CPU-Z reports as 400 and 266.5 respectively. 1066 puts the PC into an endless boot/POST loop and I have to go into BIOS and adjust DRAM frequency off of the 1066 value to either 800 or 533 to get into Windows 7.
    Is DRAM Frequency of 800 (as reported in BIOS) the best I can do? If so the only difference to my machine now is going from 4x 1GB RAM sticks to 2x 2GB RAM sticks and I’m still at 4 GB RAM running DRAM 800 MHz.
    So I can use my machine again I set –
    DRAM Frequency 800 in BIOS (CPU-Z reports 400)
    Timings 5-5-5-15
    Memory Timing 2T
    DRAM Voltage 2.1
    I have a feeling that I am either overlooking something simple here or my machine just cannot handle RAM running at 1066 MHz. With all the OC functions this MSI board has I would think I could get the RAM rated at 1066 to run at 1066 instead of 800.

  • Need help getting first servlet to run in tomcat

    hi,
    i've complied my first servlet ok, using tomcat as server, problem is it can't find it. i up the class file under Web-inf/myApp under tomcat directory, typed:
    http://localhost:8080/myApp/TestingServlet
    in the url but it can't locate it. also i did start tomcat before going to url. can someone tell me what am i missing?
    Thank you.

    ok i got it to run but i had to create a classes dir under web-inf and had to use the url:
    http://localhost:8080/myApp/servlet/TestingServlet
    but why the servlet in the url, i don't have a servlet dir, does tomcat map classes dir to servlet dir?
    Thank you.

  • I need help installing adobe digital 2.0 on windows 8.

    I have windows 8 and when I try to install the install stops and says I need a certain upgrade for microsoft.net.  I go to the page it says and try install said version and get the message that I have a later version already installed as part of my operating system.  I cannot seem to get past this.  Does anyone have any idea what I need to do?

    If you go to Programs and Features what version of the Microsoft .Net framework does it indicate you have installed?  Have you tried repairing or removing and reinstalling your current .Net framework installations?
    Was this computer upgraded to Windows 8?  If so which operating system were you using previously?

  • Need help Getting outlook activex vi to workin Windows 7

    Hi Folks,
    I was looking at a LV8.6 example that searches Outlook Email and Retrieve an Email's Subject, Body, and Return Address.  I can't get this to work in outlook 2010 with Windows 7.  when I execute using highlight execution with a know seach string I do not see any error but it returns blanks.  I'm guessing that I'm not configuring think correct but don't know where to start.  Any guidance would be appriciated.
    Here is the activex example:  https://decibel.ni.com/content/docs/DOC-26470
    Regards,
    -SS

    Did you have outlook opened or closed?  I'm using Outlook 2007.  -SS

  • I need help getting the license number for Adobe Photoshop Elements. However, It doesn't recognize me as an authorized user. Can someone help?

    I need help getting the license number for Adobe Photoshop Elements. However, It doesn't recognize me as an authorized user. Can someone help?@

    I am having the same problem...did you ever fix it?

  • Cant get Adobe Air to download

    I have windows 7 and I cant get Adobe Air to download not even if I run it as administrator. I need Adobe air to run my Cricut.

    you successfully downloaded adobe air but are not able to install it?
    if yes, what file (name and extension) did you download and what is its file size?

Maybe you are looking for

  • Background IMG won't show up in browser IEXPLORE

    I have a div tag called "banner" in which I have used our company logo as a background image. I can't figure out why it's not showing up when I preview the page in Internet Explorer. It is showing up in the design page just fine. Below is my code: <!

  • MEGA memory leak!! cannot use PS ideas please?! deadline looming!!

    Hello PS community!! I'm running PS 5.5 on a Macbook pro Retina version 10.7.5 Despite having more than 30gb free on my disk, as soon as I open my file (Doc 199.1M/655.6M) within 1 minute, all 30gb is consumed leaving just 10MB and I cannot work anym

  • What is the meaning of APPROVE,SIGNOFF in Hyperion Planning

    Hi Gurus, Please elaborate the difference between APPROVE and SIGNOFF in Hyperion Planning. Your efforts are highly appreciated. Thanks and Regards JYothi.

  • Advice on SAP BI or ABAP

    Hello Gurus, I have seen this question in forum before , still i am putting this, Sorry for that. I have work experience of 5.5yrs in SAP , Basically i joined as an ABAPer but here i put into BI project. from 5.5yrs i have 4.5 hands on exp in ABAP ,

  • HT203288 i loss my photos and contacts

    iloss my old data of my photos and contacts how to get that data