Air application shows no GUI, any help?

Hi all,
I built and run an AIR application in  Flash Builder 4 IDE. The code works fine, the application runs and there is no error or warning. The GUI shows up okay and there is no any error when I  run "Export Release Build"  to create the myApp.air to make the application installable.
With the myApp.air file, when I install this application, the installation goes okay but when I run the installed myApp application nothing shows up. I mean no GUI. If I check the task manager, the app seems running there as a process.
This whole thing remained the same when I used FLEX Builder 3 as well as when I used command line build.
Please help me resolve this problem.

KGLAD, I appreciate your time and suggestions.
I am sorry but I think I was not able to make my problem clear to you or may be didn't get you quite well.
I have an application which runs fine when I build and run it in the IDE.  There is no error or warning at all.
I can export this application to application.air without any error or warning.
The main problem is - after I install the exported application.air app, nothing shows up. If I check in the task manager, the app seems running as a process.
I can see all the required files loaded in the application.air package when I open it as a zip folder.
Please tell me what things should I try to trace and when and where? Also share me some ideas on how to fix it.
For your info:
This app is AIR 1.0 app compiled with flex sdk 3.0 in Flex builder 3
The problem remains same if I use flash builder 4 or do the command line compilation with adl and adt.
I am using windows vista OS [Business Version].

Similar Messages

  • I am trying to download a variety of files and when it is finished, the Mac freezes up and the task bar continues to blink on and off. I have to go into Firefox and actually quit the application to continue. Any help is very much appreciated

    I am trying to download a variety of files and when it is finished, the Mac freezes up and the task bar continue to blink on and off.
    I have to go into Firefox and actually quit the application to continue. Any help is very much appreciated.

    are you backing up files, or doing a Time machine backup, either way, the Time machine will STOP when finished and show "last backup at XXXXXX"  meaning its done...... OR if when transferring files, it will show a progress bar on your desktop and vanish when files are copied.
    Open up the Hitachi drive (your G drive is made by Hitachi, and the best made by the way).....and see if the files are there.
    a MORE VISUAL way is to open the hard drive file, and drag and drop files INTO the Gdrive and you can see them visually be copied there as you do it.
    To see your HD on your desktop GOTO  FINDER......PREFERENCES....then GENERAL TAB.........check the box marked HARD DRIVES.........then your Gdrive will appear on your desktop........open it from there,  and DRAG and drop files from anywhere INTO the Gdrive....... easy visual way to see the files being copied into the Gdrive.

  • TS1717 iTunes 10.7 freezes randomly in my Macbook Air, cannot do anything. Any Help?

    iTunes 10.7 freezes randomly in my Macbook Air, cannot do anything. Any Help?

    iTunes 10.7 freezes randomly in my Macbook Air, cannot do anything. Any Help?

  • Ipod stuck on black screen(soft dtf) and my home button is broken. i also cant restore it with itunes as it shows error 6. any help?

    So. my home button was broken and i wanted (stupid idea) to jailbreak my ipod, i used the new redsn0w Dfu ipsw, then tried to put it in dtf mode via itunes. how ever now its just stuck on a black screen, i tried t restor it with itunes but that just comes up with an error. help?

    Errors related to third-party security software
    Error 2, 4 (or -4), 6, 1000, 9006
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. Contact the manufacturer of the software that installed the packet size modification for assistance or follow this article by Microsoft: How to reset Internet Protocol (TCP/IP).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or phobos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps underAdvanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.
    Last,
    Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar 

  • HT5649 when i connect my iphone to my pc, itunes is not recognizing it.  PC is authorized but can't get phone to show up.  Any help or suggestions on how to fix?

    When I connect my iphone to itunes it does not appear under devices.  Can't get the two to connect and pc is authorized.  Any suggestions?

    Hello Lori,
    It sounds like your iPhone is not being seen in iTunes anymore. I recommend the troubleshooting steps from the article named:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Here is an overview of the troubleshooting to be done:
    1. Update iTunes
    2. Check the USB cable
    3. Verify that Apple Mobile Device Support is installed
    4. Restart the Apple Mobile Device Service
    5. Verify that the Apple Mobile Device USB Driver is installed
    6. Check for third-party software conflicts
    If the issue persists, try uninstalling iTunes and its associated apps with this article:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/ht1923
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • I cannot open rss feeds - Firefox asks whether I want to open or save both rss.php files and application/rss+xml files - any help out there?

    Trying to add feeds to live bookmarks - cannot figure out what setting to change so that when I click on the "subscribe to" button the option to add these feeds to live bookmarks is available.

    Did you find a solution to this yet? I'm trying to do exactly the same thing.

  • My java chat doesn't show more characters (�,�,�,�,�),any help?

    Hello!I'm studing two java source:
    //Importo i package necessari
    import java.net.*;
    import java.io.*;
    public class TCPClient {
    public void start()throws IOException {
    //Connessione della Socket con il Server
    Socket socket = new Socket("localhost", 7777);
    //Stream di byte da passare al Socket
    DataOutputStream os = new DataOutputStream(socket.getOutputStream());
    DataInputStream is = new DataInputStream(socket.getInputStream());
    BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
    System.out.print("Per disconnettersi dal Server scrivere: QUIT\n");
    //Ciclo infinito per inserimento testo del Client
    while (true) {
    System.out.print("Inserisci: ");
    String userInput = stdIn.readLine();
    if (userInput.equals("QUIT"))
    break;
    os.writeBytes(userInput + '\n');
    System.out.println("Hai digitato: " + is.readLine());
    //Chiusura dello Stream e del Socket
    os.close();
    is.close();
    socket.close();
    public static void main (String[] args) throws Exception {
    TCPClient tcpClient = new TCPClient();
    tcpClient.start();
    //end
    and
    //Importo i package
    import java.net.*;
    import java.io.*;
    //Creazione di una classe per il Multrithreading
    class ServerThread extends Thread {
    private Socket socket;
    public ServerThread (Socket socket) {
    this.socket = socket;
    //esecuzione del Thread sul Socket
    public void run() {
    try {
    DataInputStream is = new DataInputStream(socket.getInputStream());
    DataOutputStream os = new DataOutputStream(socket.getOutputStream());
    while(true) {
    String userInput = is.readLine();
    if (userInput == null || userInput.equals("QUIT"))
    break;
    os.writeBytes(userInput + '\n');
    System.out.println("Il Client ha scritto: " + userInput);
    os.close();
    is.close();
    System.out.println("Ho ricevuto una chiamata di chiusura da:\n"
                   + socket + "\n");
    socket.close();
    catch (IOException e) {
    System.out.println("IOException: " + e);
    //Classe Server per attivare la Socket
    public class TCPParallelServer {
    public void start() throws Exception {
    ServerSocket serverSocket = new ServerSocket(7777);
    //Ciclo infinito di ascolto dei Client
    while(true) {
    System.out.println("In attesa di chiamate dai Client... ");
    Socket socket = serverSocket.accept();
    System.out.println("Ho ricevuto una chiamata di apertura da:\n" + socket);
    ServerThread serverThread = new ServerThread(socket);
    serverThread.start();
    public static void main (String[] args) throws Exception {
    TCPParallelServer tcpServer = new TCPParallelServer();
    tcpServer.start();
    but this client/server program doesn't display more characters such ��� ect ect,how i do to mode this code for a correct output?
    Greetings

    ok,i'm trying but now to test my source i've to find
    the readChar in BufferedWriter,i've see that in
    BufferedWriter readChar is read() but this don't
    work,the editor gives me an error that says"found int
    required char" possible loss of precision.I can't
    read the javadocs corretly,i'm a newbie.
    I assume that you mean BufferedReader and that your use of BufferedWriter is a typo.
    From your first post I assumed you were reading and writing lines not the individual characters but no problem. Yes, one should use the read() method to read an individual character and if the value returned is not -1 (which signifies end of file) then it can be cast to a char using
    char ch = (char)br.read();

  • Why is my Air application taking so long to show the first view on iOS devices?

    I built an Air application that runs on Android devices and iOS devices. The application uses Air 3.4 and Flex SDK 4.6. On my Android device, the application starts in 5 seconds. On my iPad device, the application starts in 90 seconds.
    My application has a splash screen, which is launched via the ViewNavigatorApplication property, splashScreenImage.
    The application was built in release mode and the SWF file is 1.384M. After I create the ad-hoc build, which includes the Air Captive Runtime, I see the following file sizes and startup times.
    iPad 2 - ipa size, 8.6M
    12 seconds of black screen. Then my splash screen appears. 80+ seconds of splash screen. Then my first view appears.
    Android Nexus 7 - apk size, 4.0M
    2.5 seconds of black screen. Then my splash screen appears. 2.5 seconds of splash screen. Then my first view appears.
    Here are more details about my app.
    It's a video conferencing app. So I have to set renderMode to "cpu". The app has 5 views and several popups. The popups use the SkinnablePopupContainer. The app uses dependency injection as provided by the Parsley framework to share two small data objects between the views. The app uses web service calls to manage the conference state.
    The problem occurs at startup. I haven't rendered a view with video logic, and the first view is a welcome page with a scrollable text area for terms and conditions, one button with an icon, one toggle button, and one hyperlink button.
    The app has about 400k of embedded images which are rendered using the MultiDPIBitmapSource.
    The app has 43.3K of icons for the various sizes as specified in the application xml file.
    Any help would be greatly appreciated.

    I figured out how to resolve the issue. I had to change the renderMode from "cpu" to "direct". That solved the problem, and the application performs perfectly. Even the video displays work ok. It's interesting that Adobe advises against using "gpu" or "direct" renderMode when displaying video. I need to figure out why and make sure the application is acceptable as is.
    I have more testing to conduct, but I'm very encouraged.

  • Help Support in ADOBE AIR application.

    How to add context sensitive help for the ADOBE Air application.
    Is there any authoring tool to author help for any ADOBE AIR application.
    Thanks in advance
    Regards
    Penugonda

    Hi Jon,
    Thanks for bringing this to our attention, the AIR team is aware of this issue on Ubuntu. And we are looking into this.

  • AIR application breaks session in Safari

    Hello everybody,
    I have found strange behaviour of WebKit (I suppose). Following problem I observe under MacOS:
    Open Safari and establish connection to a site using login/password (let say: USER1) to keep the session (eg. Delicious.com)
    Open AIR and establish connection with the same site but with different login/password (let say: USER2)
    Back to the Safari - the session of USER1 is broken by session of USER2!
    I suspect WebKit (which is used both in the Safari and AIR) shares the session in the same way like tabs in the same browser. What shall I set to avoid the problem. I want to have treated session established by AIR application as a separate one, without interfering with Safari... Can I instantiane "another" WebKit for my AIR application? Have you any idea?
    Thanks in Advance!

    Hi,
    I tried the same thing on Windows with Google Chrome(Uses Webkit) with Delicious.com in browser i logged in with my gmail account and in AIR App I logged in using yahoo ID. I can still use my chrome session.
    tomorrow I will check on Mac OS and get back to you.
    meanwhile can check if this is happening with all the sites using Sessions?
    Also, can you check if you can reproduce the issue with Chrome on Mac? (Chrome-AIR and Chrome-Safari)
    Thanks,
    Saumitra Bhave
    Software Engineer
    AIR-Linux

  • Unusaul problem with capturing footage of a sony Z1 and iMovie 11,  any help?

    Trying to capture video off of a Z1 camera like i have done many times before but for some reason the screen stays blue in iMovie 11? It can still control it but nothing is show on screen, any help?

    Hello Matt
    Thank you for your reply.  I tried all that you suggested but nada! Nothing worked.
    So I brought the Sony Camcorder back to the store (as it was brand new a couple of days old) and exchanged it for a Canon Legria HF R206 HD.
    I can now easily upload the video and photos from this camcorder onto my MacBook and it all works fine that way.
    But my MAIN PROBLEM is that iMovie in my iPad2 can't read the content of the camcorder using iMovie?
    I'm wondering if it has something to do with the fact that I'm using a different version of iMovie on the MacBook vs the iPad 2.  Everything works fine using version iMovie 09 ver. 8.0.5 (820) on the MacBook.
    I'm using iMovie version 122 ( 2010-2011) on the Ipad2.
    After going back to the store and dropping an extra 20 Euro as I was advised that this Camcorder does work well with all Apple products, I now find that it may be the version of iMovie that is preventing the upload to iPad2.
    Can you shed any of your wisdom on this for me please?
    Many thanks
    Aryelle

  • After backing up my iPod my applications will not reload and just shows waiting underneath the application any help?

    After backing up my iPod my applications will not reload and just shows waiting underneath the application, any help?

    http://lifehacker.com/5948155/fix-iphone-apps-stuck-waiting-during-installation
    http://alvinalexander.com/apple/iphone-waiting-apps-update-install-reinstall-del ete-ipod

  • I have an ipod 2  just bought an ipod air and would like to transfer everything over from ipod 2. i backed up the 2 in itunes and when i connect the air it does not even show up. any help would be greatly appreciated.

    I have an ipod 2  just bought an ipod air and would like to transfer everything over from ipod 2. i backed up the 2 in itunes and when i connect the air it does not even show up. any help would be greatly appreciated.

    sorry not ipod 2 but an ipad 2

  • Content overflow, when building an Air Application. Does Catalyst provide any solution?

    As artboard is in fixed size, but at 1 stage the content has to move down on navigating to different states, and I need to show all content, when I build an air file, the content is over flowing from the fixed artboard size. How I can restrict its content to not to be displayed from any direction and may open from other sides as I have few popups to show on the right of this application, and I need it as it is.
    Any Help?

    Thanks for your swift reponse Peter but I tried these steps and am still unable to get my application to update.
    I can't understand how I can get the application to update locally by specifying the location of the xml file in the SSL properties and not get the application to update when I enter the http address for the xml file in the SSL properties.
    I have used the same folder throughout this process and I am baffled as to why it does not work.

  • How to open and show a word, excel, ppt file in Adobe AIR application?

    Dear All,
    I have a requirement to open a MS- word/ Excel file in the AIR application.
    On click of a brows button a file reference box opens...on any file
    selection...it should open in the application itself...
    so plz let me know the solutions u have...

    Here is your basic issue: setting a classpath (and presumably compiling and executing a program) is one of the most basic, fundamental concepts in Java. I would advise you to follow JVerd and Annie's links and get started on a tutorial. Try writing a simple HelloWorld application before delving into POI. When you are more comfortable writing and compiling programs, and post a specific question, it will be much easier to help you.
    - Saish

Maybe you are looking for

  • How to put value of specific line number in BDC

    Hi all, I am working on a BDC (MI04)which has 3 fields as header: Document Number: Date: Fiscal Year. After entering I get a screen having default Material Number, its description and its serial number. There is one field named QTY where I need to pu

  • How can i use a Property as Link in the Resource Renderer Setings

    Hi to all, i have created a Propertry with the name SFS_NewsLink. The content of this Property is http://<server>.<domain>/path/sitemap Now, how can i use this property in the Visible Propertis? i dont will use use the default "contentLink" i will us

  • Urgent plz!! partner profit centre derivation

    my company has 2 plants under one company code . one plant supplies one material type A to second plant .Both the plant have different profit centres. How to make the partner profit centre hit when i am doing an invoice posting in MIRO. I tried doing

  • Running calculation totals when adding pages

    http://www.funkylogic.co.uk/equity.pdf In a nutshell what I want to achieve is this: a cleint may own several properties, and have different percentage holding on each. Each property has a separate page of questions (the PDF above is that page). The

  • How can i download a youtube video?

    For a while now I have been able to use the activity Option to get my videos.... but now its gone.. so how can i get videos from youtube w/o software... is there a way thats not all complicated.... something easy and quick like the activity way.