I have an HTML AIR app, the app contains a SWF.
Within the test environment, everything works as desired.
However, when I package the AIR app, and install it, the flash player is unclickable, as in you cannot interact with it.
For reference, when I say 'test environment', I am launching it from my development folder with a batch file as follows:
@echo off
set ADLBIN="E:\Apps\Development\Adobe\flex\bin\adl"
%ADLBIN% mp3loop-app.xml
When used like this, the flash player is clickable, and you can interact with it.
When I package the AIR app using the following batch file:
@echo off
set ADTBIN="E:\Apps\Development\Adobe\flex\bin\adt"
%ADTBIN% -package -tsa none -storetype pkcs12 -keystore mp3loop-cert.pfx mp3loop_v%1%.air mp3loop-app.xml mp3loop.html res
and install the resulting .air package, the program works as intended, besides the issue mentioned, where the flash player cannot be interacted with directly (the player still runs, and can be interacted with via JavaScript, but not via mouse clicks).
This did not occur until the latest AIR client update.
Does anyone have any ideas as to what is causing this?
Other possibly useful info:
Host OS: Win7 x64
Host CPU: Intel i7
Host RAM: 8gB DDR3
AIR Client Version: 3.8.0.870 (determined via instructions found on http://helpx.adobe.com/air/kb/determine-version-air-runtime.html)