『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Join a global community of Adobe Air users and developers.
新着順
We are facing performance issues when we try access files from the shared drives containing a large number of files (size in TB). Any ideas to improve the performance in such cases?
Is there any difference in an android .apk file developed with flash compared to one developed with flex?I just made a test application and the textinput reaction time is way too slow. I used Flash to build it.
Is there any way to let the user select multiple images from the device media gallery?The CameraRoll only selects one image. And the FileRefernceList doesn't show thumbnails (so you have no idea what you are selecting).Is there a way, or maybe some sort of workaround, for this? Is there a way to maybe "read" the users gallery on the SD-card and output your own gallery that the user can select from? I'm developing towards both Android and iOS so cross-plattform is a must.Thank you guys
I can clearly remember that I was able to set the stage quality to "low" developing with IDE in the past. And that greatly helped in boosting performance... However, it seems with Flash Builder your only choices are "high" or "best", "medium" and "low" simply doesn't work. Anyone had the same issue or just me?
Hi, I need a code to allow my application to link users to my developer channel on the App Store... just tapping a button.What's the procedure in Flash CS 5.5 with AIR 2,6 ????Please help me!Thank youBrandon
I've got an app that uses the usual Sound and SoundChannel classes to load an mp3 and play it. It works fine in the mobile emulator and it works fine on Android devices. But I cannot get any sound on an iPad.I can confirm that the mp3 loaded, by listening for that event. I tried a local mp3 and loading one from the web, with no difference.What am I overlooking?Many thanks -
Hi all,I had downloaded the Application Loader already, when I tried to upload my ipa file, it gives me this error application failed codesign verification. the signature was invalid, or it was not signed with an Apple Submission CertificateCan anyone solve this problem?Bruce
Hi everybody,I've been working on an iPad app in Flash and all went well but at the end I discovered a problem. I'm making a childrens book with a page on each frame. And a can move between the pages. On the pages things are happening. Things can be touched and make sounds or can be moved.The problem is that the app seems to be instable. After a while it crashes and I have to start over again.I did a lot of optimizing as told at different blogs made sure all events are closed when I don't need them anymore but it still crashes. What am I doing wrong? Is there a better way to build something like this. Forexample is it better to load external SWF's instead of moving between frames...??I'm working in Flash 5.5 with the AIR 2.7 SDK. And am testig on a iPad 3G.Hope for some good tips or suggestions,Thanks in advance.Joost
http://english.sandrostudio.com/a-strange-problem-with-adobe-air.htmlAbove is the error I get: This application requires a version of Adobe AIr which cannot be found. Please download the latest version of the runtime from http://www.adobe.com/go/getair or contact the application author for an updated version"I could run Adobe AIR previously without any problem. i checked for a solution online, in this forum, It seems it's a problem not so uncommon. I receive the same error when trying to uninstall Adobe AIR (?!). So I am basically stuck. Any help here? Any advice? Is there an upcoming new version of the installer?I need Adobe air for many important applications I use.Thanks!
Hi,I am using Flash Professional CS5.5 on Windows.I am looking to convert an existing set of published SWF files and MP3 files and wrap them up in a small Air app to work on mobile devices. I took those SWFs and MP3s and created a new Air app project for Android and published it and it seems to work just fine. For your reference, I just had the Air app start up the first SWF by using Loader and URLRequest to load in the SWF that was bundled into the app. The code I used to do this is:var swfLoader:Loader = new Loader();addChild(swfLoader);var bgURL:URLRequest = new URLRequest("0001/myswf.swf");swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadProdComplete);swfLoader.load(bgURL);function loadProdComplete(e:Event):void { trace("file loaded");} Next, I tried the exact same thing for an iPad: I created a new Air app for iOS, loaded my certificate and mobile provisioning profile, copied the same 8 lines of code as above and included my SWFs and M
Hello,I am trying to install Adobe AIR in an enterprise environment on numerous clients.Unfortunately the installation procedure always tries to open an internet connection during installation.As all users in our company require proxy authentification for internet access, the authentification dialog of our proxy always shows up when installing Adobe AIR. So the installation can not be processed without any user interaction.We would like to install Adobe AIR silently in the backround. So we are looking for an opportunity to disable the internet access during AIR installation.Thanks for any help,Alex
I seem to be running into a problem where on TOUCH_BEGIN may intermittently read the data of a different existing touch point.This does not happen on my droidX or ipod4, but it does happen on Motorola droid2 running Air2.7.below is an example, if anyone has a droid2 please try and confirm this for me:-press and hold clircle1, then press and hold circle2-while still holding circle2 start to tap circle1on touch Begin, you will see event.stageX is intermittently reporting the value for the other touch point your still holding.Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;//draw stuffvar circle1:Sprite= new Sprite();circle1.graphics.beginFill(0x000000);circle1.graphics.drawCircle(100,500,70);circle1.graphics.endFill();addChild(circle1);var circle2:Sprite= new Sprite();circle2.graphics.beginFill(0x000000);circle2.graphics.drawCircle(400,500,70);circle2.graphics.endFill();addChild(circle2);var txt1:TextField= new TextField();addChild(txt1);var format:TextFormat = new TextFormat();fo
Does anyone know if it's possible to set the input view for a softKeyboard (i'm publishing to iOS for iPad but assume it will be the same for touch screen devices in general) Basically i have built an app which has a series of input text fields - all of them are limited to numeric input, however the default view on a soft keyboard is the alphabet characters, and each time data is entered the user has to press the numeric view toggle first.Is there a way to bypass this and force the keyboard to its numeric state programatically?I've looked through the SDK references but couldn't seem to find anything....ThanksSean
I have a very simple, local HTML page embedded in a StageWebView, and the HTML page embeds a local video file using the video tag. When capturing the SWV to a bitmap either via drawViewPortToBitmapData() or using ImageSnapshot, the video content is not included in what is captured. The resulting bitmap consists of the native video controls on top of a black area where the video was.It has been suggested that this could be a security sandbox issue or a hardware rendering issue, but neither of those seem right given the circumstances. Is this a bug or am I missing something?Thanks,Ben
I'm having a problem with StageWebView on iOS (in Android it works fine). More exactly, It's an iPad app.I'm loading a dynamic PHP URL with StageWebView's loadURL method, and then I start building Flash interface elements in a left column (the StageWebView browser is in the right column), which works fine, then I wait a couple of seconds for the page to load (with a Timer), and then I finally show the browser to the user with:this.webView.stage = this.stage;The moment I run that line, the whole iOS application crashes and the iPad goes back to its desktop (I suppose that should never happen in Adobe AIR no matter what you do).But the process is still in memory, since if I double click the iPad physical button, I can see my application icon in the running apps bar (though if I click the icon, the app starts from the beginning, instead of resuming).Using AIR 2.6. Any ideas on how to solve this crash?Thanks.
I've got the FLV Playback component working on my iPad and it looks great. I'm playing an FLV published out with AIR for iOS 2.7 (CPU) from Flash CS5.5.The video looks great and runs without any lag.The problem I face is when I include a skin, such as one included with Flash, then the video doesn't play on my iPad. For example:flvPlayback.skin = "SkinUnderPlaySeekMute.swf";My guess is because it's a SWF file that it won't play? But I'm not sure.Does anyone know how I can get controls for my FLV Playback on the iPad using FLV component?Thanks
Hey people.Is a possible get udid (read). I need a create a app for some ones.And I like compare a list of udid come to a server side.TanksBruno Brustoloni e Oliveira
I am trying to get the BROWSER_INVOKE event to fire in my air application. I have followed the instruction on the adobe site and use the example install app badge code. However the event never get fired. I was wondering if it is because the example app uses the installApplication as opposed to launchApplication api. If so is there a way to install then use launchApplication so the BROWSER_INVOKE Event will get fired?Thanks for the help.
Hi, I want to know how much is the license to develop AIR Apps for Blackberry Playbook and to publish them on the Blackberry Store.For example... for iOS Apps the fee is of 99$ by year.... and for the Blackberry store?Bye and thanksBrandon
I'm using the "stageWebView" to display a checkout page in my App. If you load the page on Android using stageWebView it works. If you load it in Safari (iOS/iPhone) it works. But if you load it in "stageWebView" on iOS/iPhone it doesn't work.Is there some difference in how stageWebView works on the same plattform? I thought it was just "re-using" the in-mobile browser (or webkit?).Thank you
I have a simple web page with a link for a phone number and a link for email. When I view that page in the browser of my smartphone (Android/HTC/Evo) a click on the telephone link launches the native dialer with the number already entered. and when I click the email link the phone launches the default email client with the email address already populated.BUT, when I access that very same web page inside an Adobe Air app using stageWebView, clicking on either link causes a page not found message!!!How do I get stageWebView to properly handle these links as the default browser does?
I'm trying to develop a service application on ios. I know that I could use custom url schema to communicate between applications and I can get handleUrl event , in case of using objective c. But I don't know if I can do that or how to do that in flash builder 4.5.1.I found an article which said I can regist my custom url schema in app.xml but I found nothing about how I can handle the custom url call. Is there an event or what? Does anybody know that?Thanks!
Hello,I created a simple AIR application (just a rectangle on stage) in Flash and used the export settings for Android OS to package into an apk file. When I choose deployment for "emulator" the resulting apk works perfectly on the Android emulator. When I want to deploy for a "device", however, I always get "The application .... has stopped unexpectedly. Please try again.". My device is an LG-GT540 with Android 2.3.3 and has the Adobe AIR runtime 2.7.1953 installed.Has anybody experienced similar problems and can help me out here? There must be something foundational wrong when the app does not even start?!Thank you for your time reading this.David
Hi,I have an Air app that works fine in the Flash Professional CS5.5 debugger, but hangs when I put it on the iPad. I can use xcode to bring up the iPad console in the "Organizer" window.My question is how can my Air app send debug messages to the iPad console?Thanks,Bob
Hello!I would like print a html document, that is inside the phone memory, from my AIR for Android Application.My question is, is it possible?I have read about Google Cloud Print and GCP Intent to print documents form Android. But If you want print usingGoogle Could Print, you need Internet.Is possible print without Internet? Can I print using AIR functionality or Google Could Print is always necesary? Are there any workarround to print without GCP Intent?Thanks!
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.