Join a global community of Adobe Air users and developers.
Recently active
Hi,I have a several hyperlinks on a webpage, and I only need to store a few that have a certain pattern in a variable/array.I've discovered you can do this with the match() function. I've loaded the contain on the webpage into a string, so I'm simply using the match function to try to find the pattern. The problem is, I'm not that great with reg expressions. The hyperlinks that I want to catch are written like the following: <a href="/somename/sameForAllFiles/file.sz">Some Link</a>I only need to store the content between the href=" and ">. The "sameForAllFiles" folder is what is common for all the files and what I'm trying to use in the match function, but I just can't get the expression right. Can someone write some basic sample code that I could use?Thanks!
Hello,I'm using URLMonitor to detect the Internet connection for my Adobe Air App. It works perfectly when testing through Flash Builder. But as soon as I test it on a release build, the event doesn't get dispatched!!Had anyone else experienced this?-----[Event(name="networkStatusChanged", type="flash.events.Event")]public class NetworkMonitor extends EventDispatcher{private var urlMonitor:URLMonitor;private var url:String;private var _connected:Boolean;public function NetworkMonitor(url:String = 'http://www.google.com'){super();this.url = url;NativeApplication.nativeApplication.addEventListener(Event.NETWORK_CHANGE, onNetwork_ChangeHandler);}protected function onNetwork_ChangeHandler(event:Event):void{start();} public function start():void{urlMonitor = new URLMonitor(new URLRequest(url));urlMonitor.addEventListener(StatusEvent.STATUS, onNetStatus_ChangeHandler);if(!urlMonitor.running)urlMonitor.start();}public function stop():void{if(urlMonitor.runn
Hello Developers, I am trying to submit an app built with the latest version of AIR (15). I got the following error message.ERROR ITMS-9000 Invalid Segment Alignment. This app does not have proper segment alignment and should be rebuilt with the latest version of Xcode.Any help would be appreciated.Thank you,Justin
Hi,I am facing issue in compiling Adobe AIR application from Adobe Flash Builder 4.6 and 4.7 directly to Android Kitkat 4.4.2 using USB calbe. I am using Samsung Galexy Tab 4 Modal SM-T 231, when I am debugging my application using Samsung Galexy Tab 4 SM-T231 having Android Kitkat 4.4.2, it is showing device offline but my device is on mode and I can transfer file form my pc to Android Tab. But I can compile and debug my application directly to Samsung Tab 2 Modal No. GT-P3100 from Adobe Flash Builder 4.6& 4,7 both without any issue. Please find below snapshot for your reference. Thanks a lot for your kind support.
I was trying to upgrade the flash player, but it stopped at around 50% every time I tried.Please help me.Thanks.
So I've got an app written in AS3 using AIR Mobile. The issue is that the volume of the app seems to be tied to the ringtone volume on my phone, not the media volume. How do I tie my app's volume to media instead of ringtone? If it makes a difference, I'm developing in FlashDevelop. Thanks.
I'm building a mobile app that loads external SWFs, and it works fine when I include the current application domain in the loader context for the Loaders.However, as soon as I include some native extensions I need to use for the app, I start getting this familiar error: Error #3747: Multiple application domains are not supported on this operating system.I've tried switching to the parentDomain, grabbing the application domain from the parent's loaderInfo... no dice.Anybody know a workaround for this?I really need to load the SWFs and I really need the ANEs...
hi,i have a very simple air application that just asks the user to select a file and then opens a dialog to save the file. The problem that I have is that the browseForOpen dialog doesn't start in the directory specified by the File object. Here's the code: protected function button1_clickHandler(event:MouseEvent):void {var siteRoot : String = 'file:///D|/sites/Unnamed Site 45/';var siteFile : File = new File(siteRoot); siteFile.addEventListener(Event.SELECT, function(e:Event) { var selectedFile : File = e.target as File; var dest : File = new File(siteRoot); dest = dest.resolvePath(selectedFile.name); dest.browseForSave('Select where to save the file'); });siteFile.browseForOpen('Open file');}Tested from Flex environment it works fine. When you click the button the OS browse dialog is opened inside the
When using the native engine with StageWebView(true) on Windows it appears it never reloads the page from the server. I can make changes all day long to the website it's displaying and it'll never reflect those changes unless I switch to using AIRs built in engine - which is horrible btw. These issues don't happen on OSX. Combine this with StageWebView functionality inconsistencies between OSX and Windows and the fact nobody ever replies to problems and you have one worthless piece of software backed by nobody. Every time I think I'll tackle a project using AIR I end up regretting I ever made that decision. Never again
Hi there Java is uptodate, sdk 15 of air, and latest flash update. I know I shouldn't be expecting adobe supporting beta build but wondered if there is any light shed on this issue?ThanksPhil
Hi,I am developing an app for Adobe AIR. The app works fine when I compile it on Adobe Flash CC when I run it through the ADL. When I publish the app for Desktop and run it, I get the following error:VerifyError: Error #1014: Class flash.filesystem::File could not be found.This is strange, because it seems that actually, when I run the app outside Adobe Flash, the app is run through Flash Player.Any ideas?Thanks!
I guys,when I use the Download method of the FileReference class, everything works fine on Desktop and Android, but I get an error on iOS.This is the code:var req = new URLRequest(url); var localRef:FileReference = new FileReference(); localRef.download(req);On iOS I'm getting an Alert:Download ErrorFile downloads not supported.I already tried to NavigateToUrl() and it asks save the file in Dropbox or another App.How can I fix this error?Thanks!
Hello,I am building an iOS Application with this code here: Flex Use the camera without cameraUIThe Aim is to render some text in the picture. The picture of the Device Camera is projected onto the Screen with some Text as "Real-Time-Preview". Some Examples are here: http://ilovemyhoodapp.tumblr.com/The Problem is, that i only can access the VIDEO Camera of the Device but not the PHOTO Camera. If you are switching between the default cam Application in iOS there is a noticeable difference between the PHOTO and the VIDEO Camera/Format as you can see. In Video the Objects are kind of bigger/closer, so I like the PHOTO-Mode a lot more and want to use that for my app.Anybody can help here?Thanks in advance, Chris
hi. i dont have that much experience in flash, and none with 3d rotation. my game has sprites rotated in a way that makes it seems like a top down corridor constantly moving. i had setted it to gpu but the game still runs awfully slow. any advice?
Our project has com.sociodox.utils.Base64, as source, included in a SWC project's source paths.Starting with AIR15, the compiler is unable to resolve this Base64 class - I unzipped the SWC in question and looked at the catalog, and I found dependencies on it, but no definition.The compiler is definitely processing the Base64.as file - I can introduce syntax errors into it, and the compiler catches them.Again, this all worked correctly on AIR 14 and previous.By chance, working on an unrelated issue, one of our developers discovered that adding the AIR SDK lib "gamepad.swc" to the project works around the error. Looking at the catalog for gamepad.swc, I see that the Sociodox Base64 class is defined there.In short: the compiler can't resolve our Base64 class, forcing us to provide it from another source.
Hello Chris, okay?Chris, some time ago you started a forum topic on the issue of integrating the physical or not at runtime. It also started a discussion about how people use the Webkit or the native browser for mobile devices.With the feedback from the community was possible to reach any conclusions?It would be very interesting to see integrated into the runtime physical, as would also be interesting to see the size of the smallest Adobe Air if Webkit was removed.Anyway, if the feedback from the community was not large enough, especially in relation to Webkit, it would be interesting to put these issues on the Starling forum where the community is much more active.If you can enlighten us something about these topics, would be fantastic .Hugs.
when i embed air runtime with application, it installs successfully but fail to launch on some devices and if i didnt embed air runtime then the app is working perfectly.My device:Samsung Note 3android version: 4.4.2Status: Not working with embed air runtimeapp name :wheeler verification (Play Store)link: https://play.google.com/store/apps/details?id=air.com.flairoid.wheelervarification
Hi,How to add Norwegian languages to my ipa-file in Adobe Flash Professional and Settings for AIR?The Norwegian users get my apps in english instead of Norweigan. Desperate for help!Regards Ylva
Exactly the same error as pierre.nirphSamsung Tab3 10.1 GT-P5200 running Android 4.2.2 Jellybean.Adobe AIR 15.0.0.252 does not install, get error 'Unknown error code during application install: "-24" 'We have two Identical Samsung units….one of which had Adobe Air installed three weeks ago with NO problems. I can only assume that the issue is with AIR 15.0.0.252.Please advise. Do you have plans to resolve this solutions soon as it is causing major problems for us provisioning content for a device.ThankyouPaul
I've opened a bug for this issue as well. I want to ask if anyone experiencing the same issue and has found a workaround. Basically Air Runtime is picking up the wrong launch image when launching on iPhone 6. It defaults to default@2x.png instead of the Default-375w-667h@2x.png. iOS 8 picks the correct image but Air Runtime does not. Here is the link for the bug. If this is confirmed, this could result in rejection for all the app developers who optimized their apps for iPhone 6 . It is hard to catch this bug in release mode since the Air Runtime loads pretty fast and it occurs when you device is slow or doing something in the background. You can see it easily on iOS simulator or debug mode. We tried everything for a workaround but we failed. Bug#3831747 - Adobe Air Initiates the wrong launch Image on iPhone 6 - Possible App Rejection by Apple Review Team for a…
I can successfully retrieve an attachment in Gmail when I use strictly Android development.However, if I use an ANE, within an AIR app, to pass the data in an InvokeEvent to an Android activity, I no longer have permission... even though it is set in the manifest.Error:W/ActivityManager(167): Permission Denial: opening provider com.google.android.gm.provider.MailProvider from ProcessRecord{41c40fa0 6108:air.com.my.wonderful.app.debug/10089} (pid=6108, uid=10089) requires com.google.android.gm.permission.READ_GMAIL or com.google.android.gm.permission.WRITE_GMAILI have added both permissions in my AIR manifest and ANE manifest. I have also tried it without.Oddly, I do not need to add it to the Android Manifest in my alternate Android Only app, which I use as a test ( no AIR involved ).I have also tried firing up a new Activity in Android from the ANE but it also does not work.In Android, the ContentResolver and Activity are created from the FREContext used for the ANE.Anyone else experie
I am trying to access Microphone for my game.It works fine on desktop debugger.but when package to apk on android,It won't work.I can get the details of microphone.the property muted is false but activity level remains -1.any suggestion?
Hey,We are running into a problem with the Android L developer preview and beta AIR 15.0.0.289. It's an app for Android and iOS with multiple native extension for ads and offerwall.ProblemAfter closing the native overlay displayed by an extension, our application rendering is bugged and displays artifacts. The problem occurs on Android L developer preview (razor-lpv79-preview-d0ddf8ce.tgz Nexus 7 Wifi "razor") with GPU render mode on.Is this a known issue? If so, how can we fix this and will all Android L users be affected?FlowLogcatW/UnimplementedWebViewApi( 4749): Unimplemented WebView method onKeyDown called from: android.webkit.WebView.onKeyDown WebView.java:2282)I/am_finish_activity( 623): [0,900058684,22,air.com.flaregames.wordon/com.tapjoy.TJCOffersWebView,app-request]I/am_pause_activity( 623): [0,900058684,air.com.flaregames.wordon/com.tapjoy.TJCOffersWebView]I/am_on_paused_called( 4749): [0,com.tapjoy.TJCOffersWebView]I/am_resume_activity( 623): [0,379306882,
I am trying to submit a perfectly fine AIR app to apple with Application Loader and I get this error that makes no sense to me. Any ideas???I am using Flash 2014 cc and AIR 15.0ERROR ITMS-9000: "Invalid Segment Alignment. This app does not have the proper segment alignment and should be rebuilt with the latest version of Xcode. Please contact Developer Technical Support if you need further assistance."I DID contact Developer Technical Support and guess what happened? Of course! Nothing.
Hi everyone,We're looking for examples of AIR applications that are available on the Mac OSX app store. Does anyone have their apps up there? Care to share the names?Thanks,Chris
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.