Air badge installApplication() problems

The installer for the application of air stopped working for the user who has not installed the air.
I tested this in my installer (http://www.artclick.vn/article/download-install-acbook-offline-version-software-design-pho tobook-41.html) and other as the lita (Lita - SQLite Administration Tool | David Deraedt)

Hi Joe,
First of all, thanks for your quick reply!
Maybe I isolated the problem a bit too much. In fact, I'm
creating context menus using xslt.
Each time, a new context menu is put under a node called
<div id="wrap-menu"> containing
a <ul> of <a>s. It is in these subsequent
refreshing of the context-menu (produced by xslt)
where I observed this behaviour (first time ok, second time
nop). Should I alter each <a> in the produced context-menu
with addEventListener afterwards?
I have the feeling that in that case I could didge xslt as
well. Unfortunatly, I'm a big xslt fan to create
html output (instead of all these program lines of unpacking
and DOM manipulation). I'm porting an
application from JS/PHP to Air because of the file system
access which is exactly what I was looking for.
Thanks again,
Harrold Korte

Similar Messages

  • Air Badge Corrupting application

    Yep, well that Badge thing seems to be another of those Adobe, bugged filled idea, again!
    Here's the deal....
    Have my application.air file on my server.
    Have a badge pointing to it and allowing to install it from webBrowser.
    The badge works fine so i go and install my application... hey everything works! (sounds good eh... wait wait)
    Start application to realize that my DB is duplicated !?#?! what did i do wrong?
    1- review DB                       [no problem]
    2- review app code              [no problem]
    3- reinstall everything          [Problem!!!!!!!]
    (after re-installation the Db is still duplicated...but not as many duplicate this time)
    So wait! Everything is ok but each time you install the app(using the badge) different bug appears......???
    we are getting somewhere, it must be the installation process....
    Solution:
    Install from the .AIR directly see if it it is indeed the Bage process that mess everything up or if it's the file that's corrupted.
    you guess it, downloading the same file that the badge uses to install the app manually....problem disapear!!!?!?!?!?
    now you tell me how to troubleshoot this?
    Goolge is litter with that air-badger praising!!!
    the files used by the badge have been tested and are all good!!!
    Should i Just forget about the adobe air badges all together?

    Rob,
    Thanks very much for getting back but the issue is resolved - I discovered
    that I was passing 1.52 instead of 1.5.2 for the required air version
    parameter.  D'oh.  Once that was set correctly the badge works fine.
    Jeff

  • Issue with the AIR badge on touchscreen device

    Hello,
    I am using the AIR badge and it's working fine on almost every computers but touchscreen devices. I've tried it on a HP Slate (touchscreen device, win7, Flash 10.1) and nothing happens when I click 'yes' on the embeded 'Adobe AIR Installer'.
    Is it a know issue and is there any workaround?
    Edit: When I plug a mouse into the HP Slate, I am able to click the 'yes' button.
    Edit2: It seems to be a broader issue that affects all Flash system popups (e.g. built-in settings, Flash AIR installer ) on this touchscreen device. It looks like a problem with the mouse events (i.e. no mouse down/up, only a click event), but it's only a supposition. I am sometimes able to click the button, but it's quite tedious: 1. put my finger on the buttonl; 2 keep my finger on the screen and moving it around the button; 3 come back on the button; 5. release my finger from the screen
    Thanks,
    Arnaud

    It is not a bug in iOS 7, as several hundred million people haven't commented on it.  Reset: are you holding down both buttons until the Apple logo is displayed?  If a reset doesn't fix it, try restoring the phone from the last backup. If that doesn't work, restore as a new device. If that doesn't work, take it to Apple.

  • AIR Badge with in flash site

    Hello, need some advice / help.
    I currently have a flash site and I have an AIR app. I need
    to use the badge within my flash site. Does anyone know if there is
    anyway of using the AIR Badge within the .swf or will I need to
    create a normal .html page for this to work.
    Your help would be much appreciated.

    What do you mean by "attacked"? and what makes you think it was attacked because it was Flash, or that the same site, in static HTML would not have been attacted?
    Just a review in how Web sites work...
    There is NO SUCH THING as a Flash Web site... only HTML, PHP, ASP, etc. sites which happen to have some Flash content.
    To verify this for yourself, visit ANY site on the Internet which might be called a "Flash site". Look for the file name extension at the end of the Web address...one thing you will NOT see is .swf as the file extension.
    You asked for opinions/views right?
    Best wishes,
    Adninjastrator

  • AIR Badge Install fails on Macromedia Certificate Error

    I noticed my AIR Badge installer stopped working with the message “A download error occurred, would you like to try again” when the person did not have Adobe AIR installed previously.  The badge installer is supposed to download AIR seamlessly as part of the process.
    I snooped with Charles and found that the loaded air.swf file was attempting to access https://www.macromedia.com and this request is returning a certificate error.  Attempting to access the url on my home machine directly using gives me the message that the cert is not from a trusted authority.  Attempting to access that url from my work machine results in a re-direct to Adobe.com.
    Anyone got a clue as to what the heck is going on? Am I dealing with an outdated version of the badge?  I got this from the Flex SDK 3.4 samples directory.
    Thanks,
    Jeff

    Rob,
    Thanks very much for getting back but the issue is resolved - I discovered
    that I was passing 1.52 instead of 1.5.2 for the required air version
    parameter.  D'oh.  Once that was set correctly the badge works fine.
    Jeff

  • I have the Numbers-applications on both Mac mini and Macbook Air. My problem is that they don't sync so when I create a Numbers-file on the MacBook  while travelling, it will not be on my Mac mini when I get home :(((

    I have the Numbers-applications on both Mac mini and Macbook Air. My problem is that they don't sync so when I create a Numbers-file on the MacBook  while travelling, it will not be on my Mac mini when I get home :(((

    Hey iWeb plubishing problems,
    I would first check to make sure that you meet the system requirements for OS X to support Documents in the Cloud. For that your Mac’s needs to be running at least OS X Lion 10.7.5 or later to make sure that everything syncs. Take a look at the article below for more information. 
    iCloud: Troubleshooting Documents in the Cloud
    http://support.apple.com/en-us/HT203517
    Take care,
    -Norm G. 

  • Air and sqlite problem - cumulating results

    Hi,
    I got problem with sqlite in air.
    The problem is that sqlStmt.getResult().data is gathering data from separate Select statements, when  it should be separate results. As in this example, where I call "select" function once, and AFTER geting it's result I call it again with different query.
    public function select(q:String):void {
    conn.open(dbFile);
    sqlStmt.addEventListener(SQLEvent.RESULT,selectComplete);
    sqlStmt.text = q;
    sqlStmt.execute();
    private function selectComplete(e:SQLEvent):void {
    oSqlReturn = sqlStmt.getResult().data;          //this is where sqlStmt.getResult().data remembers previous results and adds current ones to the array.
    conn.close();                                                  //but here sqlStmt.getResult() is null
    sqlStmt.removeEventListener(SQLEvent.RESULT,selectComplete);
    So  after second Select returns I got sqlStmt.getResult().data with results from the first and the second statement.
    Maybe one of You had some simmilar problem and is able to help me with this.

    Thanks for help. It is recomended to use different instances of SQLStatement. But it wasn't the case.
    I changed to asynchronious connection and I added SQLMode and now it works.
    So instead of
    conn.open(dbFile)
    now I got this:
    conn.openAsync(dbFile,SQLMode.UPDATE);
    So I think that the problem was becouse I was listening to result events of synchronious connection.

  • Macbook air Shut down problem

    Hi everyone,
    I used to have the shut down problem with my Macbook air. I have an 11" Later 2011 Macbook air.
    The problem did not go away after updating to Mountain lion.
    I just realized that although I was closing all programs, I was not ejecting my 3G modem/dongle.
    Once I ejected it before commanding it to shut down, it did shut down properly.
    I thought I should share it with you. May be there is a program that has not been closed or a devise that has not been unplugged/ejected properly and is restricting the shut down.
    It worked for me. Hope it will work for you.
    Enjoy your Mac.
    J.

        Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own".
         If this does not help, you may have to take the computer to the Apple store
         to have the battery checked out.
         Best,

  • Systray icon in AIR strange bitmap problem

    Hi there i recently tried to have one of my apps docked to systray instead of taskbar so i've used pretty much the examples floating around and everything went smoothly except the icon itself. I used standard 16x16 png file and it got scrambled looks like each 4th line is shown or something like that. So i've tried with JPG and ended with pure code generated bitmap data but always with the same result. Here is a screenshot of my systray when using new BitmapData(16,16,false,0xFF0000) and assigning it to the bitmaps array of the icon.
    To the left is my AIR application icon which should be 16x16 sized red square however once again glitched. To the right is the classic gtalk icon.
    Everything else except the graphics itself works perfectly.
    Any ideas of whats going on? Or is this some kind of bug in the latest AIR? By the way i am using AIR 2.5
    Thank you.

    Ok did further testing and it seems to be AIR 2.5 problem only. In previous AIR the bitmap is displayed correctly, so i've filed a bug report to Adobe.

  • AIR Badge issues

    Hi,
    I have an AIR 1.1 app and am trying to distribute it via the
    AIR Badge beta.
    The user goes to the page and properly is upgraded to Flash
    player 9, and then when they go back, (they do not have AIR
    installed), they get an error saying:
    Error!
    Adobe AIR is not available for your system.
    How can I get it to automatically download AIR, install then
    install my app?

    I am confused, here it states that 2003 server is supported.
    If this is not the case, where can I get a definitive list of
    supported OS's, at least those that are installable via a badge.
    Need to scope for a client what we can deliver for.
    http://www.adobe.com/products/air/systemreqs/
    Windows
    * Intel® Pentium® III 1GHz or faster processor
    * Windows XP with Service Pack 2; Windows XP Tablet PC
    Edition; or Windows Vista® Home Premium, Business, Ultimate,
    or Enterprise including 64 bit editions; Microsoft®
    Windows® 2000 with Service Pack 4; Windows 2003 Server
    * 512MB of RAM

  • Will AIR has any problems in the future with Android?

    Will AIR has any problems in the future with Android?
    If we are experienced in flash, is it better to do the mobile work with AIR or HTML5?
    But we are doing flash only so that we may face problems if we faced any bugs, is it expected to have any bugs or complexities, we can do flash with AS3 and we will depend on flash in publishing

    Do you mean you dropped the iPad Air?  Is it working properly?  Is the screen damaged?
    If it is working properly and has no signs of damage, it is probably ok.

  • First time I planned to buy a ipad Air. After seeing ipad Air having screen problems, dropped my plan. Planning to go for samsung Note 10.1 2014 edition.

    First time in my life, I planned to buy a ipad Air. After seeing ipad Air having screen problems in the community, dropped my plan. Shall I go for for samsung Note 10.1 2014 edition otherwise wait for ipad Air 2.

    For every iPad Air with screen problems there's a million that work fine.. If you buy at the Apple Store take a good long look and hand it back if it's not right.

  • I currently have an iphone that i connect to my mac air to download music, i have now bought a nano for my wife can we use both devices on the same air without any problems???

    i currently have an iphone that i connect to my mac air to download music, i have now bought a nano for my wife can we use both devices on the same air without any problems???

    My wife and I both have the iPhone 4 and it's actually pretty simple. Add another user on your MBA (her) and she can use the other iTunes when she is logged in. The iTunes is empty and will erase her iPhone, so be sure that she syncs her iPhone, then back up her library onto a portable media device like I did (SD Card) and reload it onto her empty iTunes on your MBA before she attempts to sync with it.
    Works well...
    Sly

  • AIR Badge - Publisher ID Problem?

    In order to check if an AIR application is installed (using the ProductManager class) I have to use the publisher ID contained in the application's "META-INF/AIR/publisherid" file, not the publisher ID defined in the code signing certificate used to publish the application.air install file.
    Is that expected behaviour or is there a problem with the AIR runtime (1.5.2.8)?

    HI Guys,
    Thanks for holding this discussion.
    I need your help with regards to signing, certificates renewal and publisher id.
    Our team is working on a serious AIR app out there, having a considerable install base. We've now renewed our certificate for the second time, but this time the compiler would generate a different publisher ID. How could that possibly happen, anyone any idea?
    Please note, that we've already done that before, we're completely aware that publisher id is generated based on details in the certificate. We also had to renew the previous certificate a couple of times, because different details was causing a different publisher ID. It is totally confirmed that all the details in the current certificate are exactly the same, all of them. But still, the publisher ID is different and that is a nightmare. I'll can share other more complicated explorations further on in the discussion, but this is the first question that needs to be answered.
    I'm also posting this is another relevant thread:
    http://forums.adobe.com/message/2616039#2616039
    Please reply.
    Kind Regards
    Stefan Yotov

  • AIR Badge + RewriteRule fails - Downloaded file is not an air file

    Hi everyone!
    I'm not entirely sure my problem comes from RewriteRule but I've searched this forum for topics on corrupted AIR files and the Install Badge and tried almost every possible tip with no luck so I thought maybe my special issue comes from it...
    Here we go:
    I have a server-side script that builds AIR apps which are supposed to be installed (via an Install Badge). Those AIR apps are not stored at a public URL (for security reasons) but read (via PHP) when a specific URL is called. Let me give you an example (with fake paths) :
    The server-side built AIR app is store at /srv/data/air/myApp.air
    A RewriteRule redirects calls to http://www.my-server.com/air/999.air to http://www.my-server.com/air.php?id=999
    The air.php uses the GET id to read the AIR file :
    header("Pragma: public");
    header("Expires: 0");
    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    header("Cache-Control: private", false);
    header("Content-Type: $mimeType");
    header("Content-Disposition: attachment; filename=$name;" );
    header("Content-Length: ".filesize($path));
    readfile($path);
    With $mimeType="application/vnd.adobe.air-application-installer-package+zip" and $name="999.air"...
    When accessing the rewritten URL directly with a browser, everything is fine: the AIR file can be downloaded and installed as expected.
    But! When using an Install Badge linking to that URL, I get the nasty "The application could not be installed because the AIR file is damaged" message...
    And here's what's stored in .airappinstall.log:
    Starting app install of http://(...)/9889.air
    UI SWF load is complete
    UI initialized
    Downloading file to C:\Documents and Settings\Quentin\Local Settings\Temp\fla19D.tmp
    Received HTTP Response Status event
    Response URL is http://(...)/9889.air
    Downloaded file is not an air file.
    starting cleanup of temporary files
    application installer exiting
    Hum... And I'm stuck.
    Thoughts?
    I have multiple Install Badges in the same page, do you think this can break things?
    I've try adding the AddType instruction in a .htaccess file but it didn't change a thing...
    Thanks in advance!

    OK, I've got news.
    Bad news.
    In fact I realized the appurl set in the Install badge is (obviously) not called directly but by a script located at http://adobe.com/apollo... So your my session is not available in the script that is called and that reads the actual AIR file. So I can't check wether the user requiring the file has the right to. At least, not the way I intended to do it...
    I will keep you updated if I find something!

Maybe you are looking for