Join a global community of Adobe Air users and developers.
Recently active
I am developing a touch screen kiosk installation in AIR to run on a Windows computer, and it needs to send emails with an image attachment. I know this is possible using PHP, but are there any simpler ways, perhaps a Windows native extension?
My app crashed on audio initialization when compiled with ARI SDK 15 and MAC OSX 10.7. It works on Mac 10.9. I reverted to AIR SDK 13 and it worked. Must be a bug with SDK 15 and Mac 10.7. I did not test on AIR SDK 14
Hello,I did an update on my previous approved app in the app store.But when i try the upload it through Application Loader i get the following errors:What does tis mean? Is this a air error? (I use the latest AIR15 Beta) Or are these errors coming from the ANE's i use (all milkmangames)?tnx!
Hi all,I'm making a desktop based program where I will need to save a lot of user information, and I am trying to figure out if SharedObjects is the answer. I do not plan on moving the application once it is installed on the user's computer either. I have a few questions:Does a shared object file get deleted when you uninstall the Adobe Air program from the computer? If not, when does the file get deleted?Is there a size limit for the shared object file that you create? I know for web applications, the adobe player prompts the user if more space is needed (I think default is 100K).
How to detect AIR for Android closing app event (remove app from dock "Recent Apps")?In AndroidActivityWrapper.StateChangeCallback exist method onActivityStateChanged. But he have only DESTROYED state, which it seems received where app finish exiting. Activity.onDestroy() called if app start exiting.
I'm using FlashDevelop for compile and i upgraded the AIR SDK with compiler to 4.0, i edit the name space with <application xmlns="http://ns.adobe.com/air/application/4.0"> and compiler option with -swf-version=23 whereaver when i go to compile tu iOS i have the error:invalid application descriptor: Unknown namespace: http://ns.adobe.com/air/application/4.0how can i fix?
Hi, I developed Air mobile application for Android. I need to change softKeyboardType, returnKeyLabel and provide paste option for text input. For that reason I use stageText, but I want to completely disable selection feature of stageText. Or to change style of the tool bar that shows when I select text, between Holo Dark and Holo Light.Thanks!
Hi! I´m trying to develope an app by miself. A hello world kind for now. All fine, but when i put the code (snippet) to zoom in and out, I run the app and, yeah, it zooms in and out but DISTORT de image. It doesn´t scale it "in scale". What should I do? Thanks a lot!
Hi,I developed an app that opens up new native windows and adds loaded SWFs to it's stage once opened. When I set the displayState of the new windows to FULL_SCREEN_INTERACTIVE the app crashes upon closing the new window.I'm pretty sure the the display state is causing this bug because when I set it to NORMAL, the app works fine.The problem report from MacOS gives me :Exception Type: EXC_BAD_ACCESS (SIGSEGV)Exception Codes: KERN_INVALID_ADDRESS at 0x000000003f800001I'm using AIR 14.Has anyone had issues with this before.Thanks.
I try to load an external xml-file from a server, but until now, I didn't manage.Locally it loads, but when on a server, it doesn't.In the root of the domain I placed a crossdomain.xml containing: <?xml version="1.0"?> <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"> <cross-domain-policy> <site-control permitted-cross-domain-policies="all" /> <allow-access-from domain="*" /> <allow-http-request-headers-from domain="*" headers="*"/> </cross-domain-policy> And in Flash I use this (most simplified) code: import flash.display.Sprite; import flash.errors.*; import flash.events.*; import flash.net.URLLoader; import flash.net.URLRequest; var request: URLRequest = new URLRequest("http://www.zinder.nl/nivoContentLive.xml"); var loader: URLLoader = new URLLoader(); loader.addEventListener(Event.COMPLETE, completeHandler); try { loader.load(request); } catch (error: ArgumentError) { &nb
Hello,I'm developping a mobile application with AIR, using a ANE for some functionnalities.I'm able to create a localNotification, firing it on my device.When the notification is fired it shows a slider on the top of the device, and a badge on the icon of my app.When I click on the slider, throught the event FRPE_ApplicationDidReceiveLocalNotification in the AIR SDK (in FlashRuntimeExtensions+Private.h) I can catch which notification is fired (by getting it's ID), but when I click on the badge it doesn't seem the fire this event.Do I have to listen to another event or should it be fired as with the click on the slider ?Thank you.
Hi, Adobe members.this is jonghwan lee.Actually I found texture load issue on a game(names samkukjangtu on korean) which is using Adobe gaming sdk.the game uses the ATF file for the textures on the game(actually it's related in Air SDK, I think).Of course, it is not problem for others GPU. but the newly launched IMG GPU( PowerVR rgx version ) makes this problem.I guess the SDK is using GPU information for the control some configuration is that right? please let me know about this issue ASAP.thank you.
I'm having a strange issue, and I am sure it's due to my lack of knowledge about how classes fully work in Adobe AIR (Flash CC). I've created a login button that is connected to a function, and based on a set of conditions it will take you to a different frame with the GoToAndStop function. I've created a logout button that is suppose to take you "back" to the login frame (that has the login button) if you click the logout button using the GoToAndStop function. Up to this point, everything works until I try to click the Login button again, it does not do anything. It's like it does not even try to execute my class file anymore. Does the class file only run at startup and never runs again, and if so, how can I create a section of code that is constantly monitoring what the user is doing no matter what frame you are on and no matter if I use the GoToAndStop function or not?Thanks
Hello!I'm trying to pack Adobe Air app to an iOS. The problem is that I always get this error:unexpected failure: Functionality not supported on : Darwinjava.lang.UnsupportedOperationException: Functionality not supported on : Darwin at com.adobe.air.ipa.AOTCompiler.<init>(AOTCompiler.java:220) at com.adobe.air.ipa.GOAOTCompiler.<init>(GOAOTCompiler.java:55) at com.adobe.air.ipa.IPAOutputStream.createIosBinary(IPAOutputStream.java:447) at com.adobe.air.ipa.IPAOutputStream.finalizeSig(IPAOutputStream.java:860) at com.adobe.air.ApplicationPackager.createPackage(ApplicationPackager.java:91) at com.adobe.air.ipa.IPAPackager.createPackage(IPAPackager.java:273) at com.adobe.air.ADT.parseArgsAndGo(ADT.java:591) at com.adobe.air.ADT.run(ADT.java:435) at com.adobe.air.ADT.main(ADT.java:485)(Couldn't find the button for mark
Getting Error -24 when I try to download adobe air on Samsung Galaxy tab 3 10" is there a solution for this
I have the following preloader,package { import flash.display.Loader; import flash.display.Sprite; import flash.events.Event; import flash.events.ProgressEvent; import flash.net.URLRequest; public class Main extends Sprite { private var l:Loader = new Loader(); public function Main():void { l.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,loop); l.contentLoaderInfo.addEventListener(Event.COMPLETE, done); trace("loading ..."); l.load(new URLRequest("./myapp.swf")); } private function loop(e:ProgressEvent):void { trace("loaded " + e.bytesLoaded + " bytes"); } private function done(e:Event):void { trace("done"); addChild(l); } }}I expect it to load myapp.swf and display it when done. But it seems to load it again and again, as I have the following output. It goes on like that endlessly and never displays myapp.swf. What is going on?loading .
Hello,Secunia PSI finds the automatic update of Adobe Air from 14.0.0.110 to 14.0.0.178 delayed.I tried to update it but I can't find the correct source.I downloaded and installed AIRSDK_Compiler.zip. This was a mistake on my part.How do I undo this? Where is the update for 14.0.0.178?ThanksFrank C
We have an application that is launching an AIR application, and it's waiting for that AIR application to close. Is there an exit code that AIR can return to this other application? I know about exit(0), and exit(1) tries to restart the AIR application, and doesn't seem like an exit code that is returned to the other calling application...Thanks!
Here is the bugbase ticket: Bug#3802933 - [iOS] StageText color returns to previous value after focus outStageText color returns to previous value after focus out if color changed by code while editing by softkeyboard.This bug ticket was marked as duplicate to another my ticket. But it's different problem and another platform.So I'd like to ask someone from Adobe to continue investigation and reopen bugbase ticket.Also I'd like to ask everyone affected by this issue to take a minute and vote for the following bug.Thanks.
Can I get the used Keyboard language from Android device for external keyboard?
Hello,I have to create a desktop Adobe Air Javascript application to connect to the SQL Server and fetch the data based on the user input. Say when the user enters a customer code all the customer details would show up on the screen (Adobe Air window). Can sombody please help me with this? I'm stuck with this issue for long time.Thanks,Amol
I have several Adobe Air Apps on my Mac OSX (10.9.4) MackBook Pro. They won't update due to the following Install Error."The application cannot be installed due to a certificate problem. The certificate does not match the installed application certificate, does not support application upgrades, or is invalid. Please contact the application author."Following the above instructions, I've been contacting the authors of my Adobe Air Apps and they are telling me that it is not their problem. The Apps should simply update without difficulty.I searched the "Google" and found no fix other than uninstall and reinstall Adobe Air. Did this and the problem persists.If you can help me get beyond this issue and back to productivity, I'd be very appreciative.Thanks!David
Hello All,I'm new to Adobe Flash Builder. I want to create a desktop Adobe Air Javascript application to connect to the SQL Server and fetch the data depending on the user input. Say user enters a customer code then all the customer details will show up in the Adobe Air window. Can somebody please help me? I'm stuck with this issue for long time. Thanks.Amol
Hi!My previous version of Adobe AIR was 4.0 and was working fine. However, a recent app needed a later version but I cannot seem to be able to install it. Every time I run the installer, it seems to work just fine, no error is reported. However, the AIR is not installed and crashes with following report:Process: Adobe AIR Installer [1726]Path: /Volumes/VOLUME/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR InstallerIdentifier: Adobe AIR InstallerVersion: 14.0 (14.0.0.178)Code Type: X86 (Native)Parent Process: Adobe AIR Installer [1720]Responsible: Adobe AIR Installer [1720]User ID: 0Date/Time: 2014-09-03 17:17:45.637 +0200OS Version: &nbs
Getting error message after downloading app on tablet through google play?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.