Join a global community of Adobe Air users and developers.
Recently active
Is there any way to include a Adobe AIR in apk and app file (Android and iOS), that the user dont have to download it and install separtely?Is it possible to be done in Flash Builder 4.5 (ActionScript Mobile Project)?
My app descriptor for an app made for android has auto orient set to true. Compiled in 3.2, it rotates and works great. Compiled in 3.3, the screen never rotates to landscape (start up is portrait) although does do a 180 flip to portrait upside down.
Wondering if anyone has tried this yet and can confirm if there is better AIR performance on an iPad3 ??
I have a picture of an apple tree on (iOS/Kindle device) and lines are appearing on the tree that should not be there. On the left is the correct way the picture should look. On the right is where the lines are appearing. Why does this occurr and how can I prevent this from happening. This happens on the iPad, iPad2 and the Kindle device.
So, the Flash Builder SDK comes with a version of AIR, which it uses when you package a mobile app for iOS (Android mobile apps are run with the AIR that's downloaded from the Marketplace)... On my Windows machine, this "built-in" copy of AIR is located in "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\runtimes\" unless I'm mistaken.I'm pretty sure that it does not automatically update itself -- and I'm equally certain that it's a pretty old version of AIR, because it's the one that was included with the 4.6 SDK which was released 8 months ago...So how do I update this version of AIR that's built into the Flash Builder SDK?Thanks,Laurence MacNeillMableton, Georgia, USA
Hello every one. iam new to flash as developing. i develop one scrooll thumb xml image gallery.now iam try to convert Touch application .in this i have one problam Regarding swipeing .please any body help me. Here is XML data ("Images.xml")<?xml version="1.0" encoding="utf-8"?><PLAYLIST THUMB_WIDTH="125" THUMB_HEIGHT="70" THUMBS_X="10" THUMBS_Y="295" VIDEO_X="10" VIDEO_Y="10" ><VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb1.jpg" big_img="big_imgs/11.jpg"/><VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb2.jpg" big_img="big_imgs/22.jpg"/><VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb3.jpg" big_img="big_imgs/33.jpg"/><VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb4.jpg" big_img="big_imgs/44.jpg"/><VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb5.jpg" big_img="big_imgs/55.jpg"/><VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb1.jpg" big_img="big_imgs/11.jpg"/><VIDEO TITL
Hello guys. This forum has helped me a lot in terms of lurking, searching and browsing. Yet I haven’t had anything to contribute with yet, as I am still learning to develop mobile applications.I am here today, to inform you about my first “game”, which has just been released into the iOS App Store. It was built using Flash CS5.5, and all of the coding are done in the timeline. Performance is enhanced dramatically in v. 1.1 which is awaiting approval from Apple.What The Game? v. 1.0 - v. 1.1 is on the way.Link: http://itunes.apple.com/us/app/what-the-game/id515951974?l=nb&ls=1&mt=8This game is simple. Find out what you have to do, in order to complete each level. Lots of fun levels, and more coming, for FREE! Features include: * Several, challenging levels! * Mind boggling puzzles! * Great fun for the whole family! * Highscore! * Music and sound effects! * Great relief and satisfaction upon completion!Facebook: http://www.facebook.com/wtgMobileHere is a couple o
I have noticed a drastic frame rate drop when using Air 3.3, the same App compiled with Air 3.2 goes 60 FPS, with Air 3.3 it is 12 FPS O.OAnybody having same issue?
Ok so I have been able to use the native extensions to make use of the in app purchase and got that working well, however, my app got rejected because I didn't have a way for a user to restore their purchase if they delete the app from their device and re-add it at a later date.Here's my question though. How do I detect whether a user has actually already purchased the in-app purchase when they reinstall the app to show the restore purchase button.Right now the way it works is that when they buy my in app purchase the app stores a variable in a SharedObject so that whenever the app loads it sees the vairable as true and reveals the feature. Once they delete the app from the device the shared object has been deleted also so there is no way for the app to know it was already purchased.Do I just put a button on the purchase screen that says "restore purchase" that will fire the StoreKit.storeKit.restoreTransactions()event if that user had already purchased something, but return an error i
I have a flex mobile app with 4 tabs. On one of them I am using the stagewebview. When I first visit the tab it is shows the webview, but then if I go to any of the other tabs it is still there obscurring my other components.Why is it persisting across the tabs?Thanks
So I've overlayed AIR3.3 with Flash Pro 5.5 .. but now when I compile (COMMAND + ENTER) .. the flash player doesnt open up.Anyone know why this is ?
According to this post (below), all we need in order to allow native inline video for the iPhone is a simple Obj-C property webview.allowsInlineMediaPlayback = YES;in conjunction with adding "allowsInlineMediaPlayback" to the html5 video tag.http://stackoverflow.com/questions/3699552/html5-inline-video-on-iphone-vs-ipad-browserAnyone know how to do this in AIR? Is there a native extension which would help me accomplish this easily????PS. Inline functionality works great on the iPad. However, on iPhone without the above property setting, the video.play() javascript call will trigger the fullscreen player, isolating the video and any javascript eventListeners completely from AIR. Message was edited by: gtr
Hi, Friends I type from BrazilI need one textField type currency.it is possible?Thanks.
Does anyone on here have experience with this ? Can anyone outline how to troubleshoot a LOW_MEMORY crash using this tool ? The instruments tool looks very promising
I am current running AIR 3.1 with Flash Builder 4.6, creating an application that would make remoting calls to BlazeDS. For some reason, the emulator and the browser version of the application works, but as soon as it is deployed to iPad, the remoting stops working, and returns an error "Send Failed".I wonder if anyone who may have experienced something similar, any help would be greatly appreciated.
Hello EveryoneHow do I create a button in action script 3 and handle the click event?Thanks
Hello,I'm trying to include some text to speech function into my flash, the code above works perfectly fine when i open my class in AS3, however it fails when I uses adobe air to run my class:var channel:SoundChannel = new SoundChannel(); var snd:Sound = new Sound();var req:URLRequest = new URLRequest("http://translate.google.com/translate_tts?tl=en&q=hello"); snd.load(req);channel =snd.play();
Hello EveryoneI am using following code to display an external swf file on iPad.var request:URLRequest = new URLRequest("http://<server ip>/test.swf");loader = new Loader();loader.load(request);The file loads and goes through every frame and closes the app.Is there a way to stop at 1st frame after the file is loaded and move between frames at will?Thanks
Hello,I am working on a Flex mobile project that requires me to play mp4 videos stored locally within the ipa file. I'm trying to use a simple class that utilizes NetStream, basically it's the same as the example posted in the docs: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/NetStream.html#play()Those docs imply that the NetStream class will play mp4 videos, but so far I can only get it to play flv videos on my iPad 2. I've read where many people are using StageVideo for this, but I have to get that to work either. Can anyone make a suggestion on the best approach for this, or at least confirm that this will work?I've also read about others using StageWebView, but I don't see it listed anywhere in the offical AS3 documentation.thanks
Hello,First time posting here. I've got an app that I run in just landscape mode. I force landscape mode by doing the following in the app.xml file: <initialWindow> <autoOrients>false</autoOrients> <fullScreen>false</fullScreen> <visible>true</visible> <aspectRatio>landscape</aspectRatio> <softKeyboardBehavior>none</softKeyboardBehavior> </initialWindow>This has been working perfectly. However, I recently got a Galaxy Nexus (with ICS) and when I run the app on there, if I lock the screen with the app open, when I unlock it, the screen is in portrait and I cannot change it back to landscape without restarting the app.&nb
Hello everyone, thanks for reading this and I hope you could help me with this issue.I'll cut to the chase. I am currently working on a Flex mobile app for both Android and iOS and the app needs to make make some HTTP requests and retrieve some information from a server, that some teammate is developing.Everything had being working fine until we decided a couple of days before when we integrated a self-signed SSL certificate in order to make the connections more secure, etc.On the app side, this change, just ment to change the url from http to https and it seemed to work just fine, or that's what we thought.Testing on the simulator or on an Android device worked ok, it just showed the expected warning about accessing a server that had an untrusted certificate that could be ignored with no problems. But when we tried to test a release build on an iPhone device, it just wouldn't work anymore. Everytime a connection is tried to be establish with the server a flash 2032 error is raised and
Thera are some details in the article below, except I think it should be Adreno200 not 220...http://askhideki.com/lg-optimus-l3-android-2-3-at-p5990/I'm confused because this phone has required ARMv7 porcessor but I'm not sure if Adreno 200 GPU would be enough.Please help me with this
HiI am working on an App for iPad in Flash CS5.5.In the app the user will be writing poetry and saving text on the iPad locally.I need them to be able to decide which poem they load back into the app.It seems to me this will qualify ofr saving to the /Documents folder.I have looked at shared objetcs and dont think it will do that job.Can I use FileReference on an iPad?Will the user be able to browse the different files he/she has saved?Can someone point me to some example code for saving to and loading from /Documents?BestTommy Banana
I am not able to install the latest version of Adobe AIR. I am running Windows 7 Ultimate 32 bit SP1. Adobe AIR shows up as a program on the programs list in Windows control panel, however I get the following message when I try to run a program that requires Adobe AIR):"This application requires a version of Adobe AIR which cannot be found"I could remove it with the help of the Microsoft FixIt Utility but I am not able to install it correctly. I tried running it in XP SP2 Compatibility Mode with no luck.The installation log is set forth below. Please help. Thanks.[2012-06-04:20:50:08] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86[2012-06-04:20:50:08] Commandline is: -silent -eulaAccepted[2012-06-04:20:50:08] No installed runtime detected[2012-06-04:20:50:08] Starting silent runtime install. Installing runtime version 3.2.0.2070[2012-06-04:20:50:08] Installing msi at c:\users\peter\appdata\local\temp\airc5cd.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA484
Hi all,My mobile application makes simply an HTTPService call to retrieve an XML file (contains arabic text) and displayed in a list component. When I test this application using an emulator, everything works fine and text has been rendered probably. But, when I test the same application in a mobile device, the arabic text has disappeard without getting any runtime error. Any solutions?Development Environment:OS: Windows 7, 32 BitFlex SDK: 4.6Java SE: 1.7.0_04Device: Google Galaxy Nexus, ICSYour prompt reply would be greatly appreciated.-Khaled
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.