Join a global community of Adobe Air users and developers.
Recently active
I am dealing with a client that wants a guarantee that an Air app packaged using CS5.5 will be compatible with iOS 5.I can't think of any reason why it wouldn't be but likewise I can't find any official comment from Adobe about the issue.Can anyone direct me to an official Adobe comment that I can point the client to?
Hi!Like everyone here, I saw that Air 2.7 is now out, very exciting stuff!So to test that, I just take an old .fla (a game) who work very well with Air 2.6. I copy-past the .swf / . xml / .provision / .p12, and when I export... It's like the game is in high resolution (the image is in 960x480). So I thought maybe I have something wrong in my file, maybe in the .xml I forgot the "high" instead of "standard"... I check everything, nothing wrong... I try to change the display mode in CPU and surprise, it's working! Fullscreen mode / Standard display it's cool. I change for GPU mode and again, the screen is in high resolution and reduce by half my app!Does anyone else have this weird bug? Or maybe in GPU it's in High Resoution by default?CPU mode is cool by the way, but I NEED GPU (my game is built around that for better performance).Thanks!
I have a problem. My install.log:[2011-09-16:14:57:19] Runtime Installer begin with version 2.7.1.19610 on Windows XP x86[2011-09-16:14:57:19] Commandline is:[2011-09-16:14:57:19] No installed runtime detected[2011-09-16:14:57:23] Starting runtime install. Installing runtime version 2.7.1.19610[2011-09-16:14:57:23] Reinstalling c:\docume~1\bastion\ustawi~1\temp\air2d0.tmp\setup.msi[2011-09-16:14:57:27] Got an unexpected fatal error while quitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009][2011-09-16:14:57:27] Runtime Installer end with exit code 5
Hi Adobe,Riddle me this. I already have my app on the Amazon app store, so I got submit an update and a lite version here is what I get back.Your recent submission of Pop Goes The Bubble is pending due to the following reason(s): The link to Adobe AIR in your app needs to be updated so that customers are taken directly to the Adobe AIR app page on the Amazon Appstore. -- The Download URL is http://www.amazon.com/gp/mas/dl/android?p=com.adobe.airI don't understand this. When I publish out the app for Android the part where I get to choose where the plug in is downloaded from I check off Amazon App store instead of Android market, I thought they meant I need to put the link in my description and I did and resubmitted, still the same rejection message. Please help me out I don't understand how version 1.0 was submitted and approved and this update is submitted the same way is now getting pushed back. Am I missing something?
I'm using the adobe Camera class the camera on xoom. However i'm running into two issues that i've listed below. Thanks in advance.1. I want to be able to use the front facing camera but the only the back camera is accessible. I tried to set the android manifest in my app xml to but it doesn't seem to work. <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera"/> <uses-feature android:name="android.hardware.camera.front"/>2. When i pipe the video image from the camera to a Video control the image white balance is all out of whack. everything looks washed out in office lighting and anthing that white. Is there a camera setting to adjust this?
I am in the process of doing some research on different platforms for the mobile space. The two main contenders at this point in time for us are Flex 4.5 and phonegap. The problem I am running in to with Flex is the lack of a side by side comparison, or a list of features support by flex 4.5 and air.When I go on to the phonegap site they have a nice table with all features supported by phone gap (by features I mean what can be accessed on the device) but when I try and find the same info on the adobe site I seem to get stuck in a loop of vague explanations and tutorials. So I guess the question is, are there any comparison charts, white papers specs etc that can just give me the facts without the fluff? Sorry if that comes off bad I'm just trying to get the facts.Thanks!
I had downloaded "AdobeAIRSDK.tbz2"and what the next? any steps will help me!
[2011-09-20:13:13:58] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86[2011-09-20:13:13:58] Commandline is: [2011-09-20:13:13:58] No installed runtime detected[2011-09-20:13:14:01] Runtime Installer end with exit code 6[2011-09-20:13:14:25] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86[2011-09-20:13:14:25] Commandline is: [2011-09-20:13:14:25] No installed runtime detected[2011-09-20:13:14:28] Relaunching with elevation[2011-09-20:13:14:28] Launching subprocess with commandline c:\users\ernie\appdata\local\temp\air1c5b.tmp\adobe air installer.exe -ei[2011-09-20:13:14:34] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0][2011-09-20:13:14:35] Runtime Installer end with exit code 7[2011-09-20:13:20:44] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86[2011-09-20:13:20:44] Commandline is: [2011-09-20:13:20:44] No installed runtime detected[2011-09-20:13:20:51] Re
Hi,I have included the file 'Default@2x.png' (960w x 640h) when exporting from flash cs5.5My app is in landscape, but the splash screen shows in portrait, and stretched on my ipod4.How can i correct this?Also, is it possible to specify how long the splash screen is shown, but at the same time have the app loading in the background running code? With GPU rendering I addChildren to the display list while its hidden by a black square at first. This allows smoother use of the images when i finally do show them.I would like to add Children to the display list while the splash screen is still showing.Thanks
Hello, I am running some tests with Air for ios with Flash Professional CS5.5, I added the UIFileSharingEnabled tag in the app xml and this worked to allow me to add files to the app via iTunes as it is supposed to. However, now I want to disable it but whenever I publish the app in Flash Professional CS5.5 the tag is automatically added back in. Does this mean there is no way to disable this functionality once it is enabled or is there something I am missing? Thanks
Hi,I am using both touchEvent and mouseEvent in my application.TouchEvent for scrolling the screen and MouseEvent for link.its working well on Galaxy series but not working on HTC phones.here is the part of code:img1.addEventListener(MouseEvent.CLICK, gzt1);img2.addEventListener(MouseEvent.CLICK, gzt2);img3.addEventListener(MouseEvent.CLICK, gzt3);img4.addEventListener(MouseEvent.CLICK, gzt4);img5.addEventListener(MouseEvent.CLICK, gzt5);img6.addEventListener(MouseEvent.CLICK, gzt6);stage.addEventListener(TouchEvent.TOUCH_BEGIN, onTouchBegin); stage.addEventListener(TouchEvent.TOUCH_MOVE, onTouchMove); stage.addEventListener(TouchEvent.TOUCH_END, onTouchEnd); function onTouchBegin(event:TouchEvent) { // mySprite.mouseEnabled= false; //mySprite.mouseChildren= false; currenty = event.stageY;} function onTouchMove(event:TouchEvent) { mySprite.mouseEnabled= false; mySprite.mouseChildren= false;  
Hello,I'm trying to debug a application from Flash Builder 4.5 in my Android Phone, but can't install Air Runtime. Here's the ADB logcat:D/AndroidRuntime(10653): >>>>>>>>>>>>>> AndroidRuntime START <<<<<<<<<<<<<<D/AndroidRuntime(10653): CheckJNI is OND/AndroidRuntime(10653): --- registering native functions ---W/PackageManager( 2021): Package named 'com.adobe.air' doesn't exist.D/dalvikvm( 2021): GC_EXPLICIT freed 10965 objects / 610696 bytes in 188msD/AndroidRuntime(10653): Shutting down VMD/jdwp (10653): adbd disconnectedI/AndroidRuntime(10653): NOTE: attach of thread 'Binder Thread #3' failedD/AndroidRuntime(10663):D/AndroidRuntime(10663): >>>>>>>>>>>>>> AndroidRuntime START <<<<<<<<<<<<<<D/AndroidRuntime(10663): CheckJNI is OND/AndroidRuntime(10663): --- registering native functions ---I/ActivityMan
hi friendsi make simple air application(air2.6 sdk)<?xml version="1.0" encoding="utf-8"?><mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" title="Hello World" ><mx:Label text="Hello World! this is Iphone Application" horizontalCenter="0" verticalCenter="0" fontSize="30"/> </mx:WindowedApplication>and make a IPA file from adt command from commandline and install it on iphone and iphone display blank screen only no message display on screen which is on mx:Label />and then i make another one package{ import flash.display.Sprite; import flash.text.TextField; import flash.text.TextFormat; import flash.text.TextFieldAutoSize; public class HelloWorld extends Sprite { public function HelloWorld():void  
A program developed in Flash and running in AIR allows a user to choose videos and images to display on screen. Videos run fine but text in images greeks (deforms). I suspect it is because the size of image is getting changed and therefore text gets trashed. Any ideas on fixing, avoiding, working around problem?
Is there an official list of the AIR native installer exit codes?
Well the question almost tells it all.Is it somehow possible to make in-app-purchases built in in apps created with flash cs5 or 5.5 ?I am affraid that I think the answer will be no but prefer to ask here in case its very well possible.Kind regards,Bart Libert
Hello,I face some problem, i am using jquery as my framework, and i got an issue with the iframe content.What i want to do is the load external website into my iframe (random website url from my database), and to insert my script into header (i want to do something like greasemonkey does on firefox).Here's my code:$('iframe').contents().find('header').append('<script>My user script</script>');The problem is that this doesn't work, when i tried to do $('iframe').contents().find('header').html() returns nothing...I knew this was a limitation in html because of cross domain, but adobe air isn't restricted to that, so what am i doing wrong here?
Whenever I attempt to install AIR, I get an error stating that I may not have administrator privileges, which I do. Here are the log files:[2011-09-18:08:35:47] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86[2011-09-18:08:35:47] Commandline is: [2011-09-18:08:35:47] No installed runtime detected[2011-09-18:08:35:52] Relaunching with elevation[2011-09-18:08:35:52] Launching subprocess with commandline c:\users\admini~1\appdata\local\temp\airf834.tmp\adobe air installer.exe -ei[2011-09-18:08:35:52] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86[2011-09-18:08:35:52] Commandline is: -stdio \\.\pipe\AIR_5000_0 -ei[2011-09-18:08:35:52] No installed runtime detected[2011-09-18:08:35:52] Starting silent runtime install. Installing runtime version 2.7.1.19610[2011-09-18:08:35:52] Installing msi at c:\users\admini~1\appdata\local\temp\airf834.tmp\setup.msi with guid {FDB3B167-F4FA-461D-976F-286304A57B2A}[2011-09-18:08:35:53] Error occurred duri
Hi,I would like to link from within my application to another application on the apple appstore.Here on the forum I found the following codenavigateToURL(new URLRequest(http://itunes.com/apps/appname));This works nicely, but when you execute it, you get some window onscreen and that switches a couple of times before you get to the actual appstore screen.On the net I found also that you could eliminate that flickering/redirecting/whatever... by not using http:// , but itms:// or itms-apps://Like belownavigateToURL(new URLRequest("itms://itunes.com/apps/appname"));navigateToURL(new URLRequest("itms-apps://itunes.com/apps/appname"));But if I use any of the 2 lines below, then there happens absolutely nothing.Does anyone know a solution for this ?Kind regards,Bart
I'm using Flash Professional CS5.5, publishing as AIR for iOS. I want to be able to open .ppt, .doc, .xls etc files that are in the app's documents folder using the default installed viewer. Works fine as a Windows desktop app but not on ipad. Does anyone know if there is any access to Apple's Document Interchange feature from Flash/AIR?Thanks.
I have an Air/Android app and I would like to make sure the user gets prompted to install the latest AIR runtime, in case he/she haven't updated in a while.I understand that setting the minimumPatchLevel in the manifest will do the trick, but how do I find out the one that corresponds to Air 2.7.1 ?
Is it the same way as on regular Flash or on AIR I should do it in other way?
Hello developer community!I have a couple of questions:Is Adobe Flash stable enough for use on the iPad?Is it an alternative compared to native apps?What are your experiences?Cheers Christian
When sending email using navigateToURL mailto, the built in email application opens up and when I send email or discard it, it stays in email client. In native applications it comes back to an app that invoked sending email, but with AIR the user has to exit email app and tap on app icon again. Is there any way to have native behaviour?
Hey,I'm working on an iPhone game using AS3 and I've got it working pretty well on the iPhone 3G. I intend to compile it with AIR 2.7 (or 3.0 when it drops), but for testing purposes, I do everything on my 3G. Here's the problem, I get a solid consistant 24fps until one of my objects moves offscreen - even partially. If my "character" even goes a few pixels past the edge, frame rates drop tp 9-10 fps. I've had a few people already suggest not allowing anything to move offscreen, but that's not feasible. I've gone through my code to make sure there isn't a programmatic reason this happens, and I've created a seperate project specifically to test this - with no game logic, simply moving an image across the screen, frame rates bottom out once content goes over the screen edge. I've tried using masks, I've tried using scrollRect, I'm using cacheAsBitmap, and there is no scaling, only x,y translation. Any help or suggestions (except for telling me t
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.