『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Join a global community of Adobe Air users and developers.
新着順
Couldn't find anything in the search about this.Are dropshadow filters supported? If I add a dropshadow to a textfield (in code), it doesn't show up on the iPhone.
I have the problem many have been having with not being able to connect to the debugger on my phone (Samsung Galaxy S2). I've read pretty much all threads I've found but can't seem to find what could be wrong.What I want to do is to PUBLISH, INSTALL and LAUNCH my Air2.6 app on my mobile device with the debugger running so I can see any traces from the phone.This is what I've tried so far:Firewall disabled (Both third party and windows)Changed my hosts file to localhost -> 127.0.0.1Tried both IP and hostnameDisabled WiFi on my phone (so it's not interfiering)This is my setup:Windows 7Flash Pro 5.5Air 2.6Samsung Galaxy S2Connected using USB (no WiFi)Drivers and all is working. Everything else is working except the debugger.Does anyone have any other ideas of what I could try? It's hard to try and develop when not being able to debug on the phone, hehe.Thank you so much!
Can Some one explain me why my "TransformGestureEvent.GESTURE_PAN" doesn't get triggered?All the other gesture events are triggered.I find it a bit confusing Oh yeah, i am developing for every platform but testing on a google phone nexus Spackage{ import flash.display.Sprite; import flash.display.StageAlign; import flash.display.StageScaleMode; import flash.events.TransformGestureEvent; import flash.geom.Point; import flash.ui.Multitouch; import flash.ui.MultitouchInputMode; public class PanTest extends Sprite { private var _target:Sprite; public function PanTest() { // support
Crosspost from stackoverflow, I figured this forum might have some insights too!I've been porting a Flex 4 codebase to iOS using the adobe packager, but have run into a snag when trying to package our whole codebase. The packager runs for a while and then throws an OutOfMemoryError - even if I increase the java heap size to 4GB.No single piece of code seems to be causing the problem, as it compiles successfully if I cut out large chunks of code, and I can change which chunks I'm omitting. It might be related to the size of the code itself.I've logged a very detailed bug report with adobe here: http://bugs.adobe.com/jira/browse/FB-32192 . It includes an AIRI file that you can package to reproduce the issue, a ruby script that generates actionscript code to generate that AIRI file, and a summary of all of the things I tried before logging the bug.Has anyone else tried compiling large projects with the iOS packager? Are there any known workarounds?
I've been able to configure both an Android and iOS deployment that define custom URL schemes for my app. Custom URL schemes allow the developer to define a rule that matches a URL which will launch their app. For example, if my app is named TestFoo, I can define a custom URL scheme like testfoo://... that would cause the OS to launch my application. Now here's the question. In a native iOS or Android app, you can capture the URL that was used to launch the app. So if the user clicked on a link like testfoo://?customId=1, the app can use that customId. In iOS the URL is given as a command line argument into launching the executable (or at least it was a while back). I've gone through all of the init, creationComplete and activate events. I can't find a command line arguments, or passed in variables array. Anyone know if the custom URL is available at launch or activation?
hi. After upgrading from Snow Leopard to Lion the iPhone packager does not work. It throws an error concerning the Application Version Number. Is this a Know bug? Is there a work- around? Thanks. Michael.
Is there a way to get a button to dial a telephone number with the packager for IOS. I have tried 2 ways and neither of them work.Attempt 1:button with click event of:navigateToURL("tel:1-555-555-5555");Attempt 2:text box with Link of tel:1-555-555-5555Is there any way to get the phone to dial a number with flash?Thanks for any suggestions.
I download flex 4.5 in order to test developing IPAD applications using Flex & Flash. I have a valid provisioning profile, a developer certificate, an app id and the device is registered with apple. The provisioning profile has been copied to the ipad.I have been able to build the application, which is nothing more than a simple "Hello World" app, but when I attempt to load it onto the Ipad I get an error 0xE8008001What am I missing here?
I have tried a few apps on iPad (e.g. Muni Tracker, Conqu) and the preloading time seems too long (6-10s). Actionscript-only mobile applications are much faster. I am curious to know what is happening during the preloading time, and what can we do to reduce the time.
Hello!I have created a custom ButtonBar with its customized ButtonBarButton, moreover, this used a custom ButtonBarButtonSkin.This skin draw the background with correct color if i use the component at PC.But, if i use this component at mobile application, the color of the buttons are dark.I think that problem is ChromeColor, because the buttons of mobile application are dark.Can i avoid that color of custom button are affected by chromeColor?Thanks!
Hi All, I am a newbie for Adobe AIR SDK and this is my first posting on this forum, I have created an application using Adobe AIR 2.7 SDK and am able to run on Android phones, tablets, iPhone and iPad withot any issues.However on iPad2, the application plays in 1x mode and I can switch to 2x by clicking a button which makes certain images I use (high resoutions) pixalated. But I am aware of iPad apps in HD mode on Apple Stores... How do I acheive the iPad "HD" for Adobe AIR?RegardsNarasimha Baliga
Has anyone loaded a HTML file thru webStageView, and then been able to call javascript functions embeded in the HTML through flash.I've seen references to using webStageViewBRIDGE but I think that has been depreciated.Below is a link to a Adobe tutorial doing this with the htmlLoader class and FLEX.Cross-scripting PDF content in an Adobe AIR applicationhttp://www.adobe.com/devnet/air/flex/quickstart/articles/scripting_pdf.htmlIf anyone has successfully been able to do this on the iPad, could you explain how it's done or provide a link to some documentation.Thanks...
I've seen a question similar to this, but the xml file was local. I need to do a URLRequest on an http address if it's possible.I know the as3 is good as it works when I export to swf and chuck it live somewhere, but exported to ios it doesn't. No errors when compiling, so impossible to debug.I have a crossdomain on the website that generates the xml to allow everything access, and I've both added Security.allowInsecureDomain("*"); and Security.allowDomain("*"); in the flash file. An the url is definitely correct and has http:// at the beginning.I'm at a bit of a loss as to what to try next. So any suggestions are very welcome!ThanksKev
Hello there,What is the best way to follow in order to make a lot of insert on a sqlite db?I ask because I noticed a great and unpredicatable slowdown on my Galaxy S when I make a lot of insert.I use an openAsync connection because I need to monitor what is happening.Everytime a row is created I increment a counter.It starts well, then after a 100 insert it slow down and nearly dies.Any suggestions?Thanks in advance
Has anyone out there recently and successfully managed to deploy an AIR>iOS app using the adhoc distribution method?I've been trying for hours but despite everything I keep getting the following alert:The app "" was not installed on the iPad "" because the entitlements are not valid.help!
I have a program that loads another swf that resides in another directory. In this 2nd swf, I need to create a new file object by calling new File(filename); This throws a Security Error. If both programs are in the same directory, it works fine.Are there any solutions to this?Thanks!
Hello,I see on the list of certified devices that the HTC MyTouch is listed. http://www.adobe.com/flashplatform/certified_devices/smartphones.htmlIt's not clear whether this implies support for the MyTouch 3G Slide. I have the Slide, and I have done the manual upgrade to 2.2.1 (Froyo). My phone can run Flash animations, so I think the 2.2.1 upgrade came with a built in Flash player of sorts.I cannot find the Adobe Air runtime in the Android Market, and I'm not able to install the runtime through adb on the command line either. Moreover, navigating to market.android.com on the phone in the browser and pulling up the AIR runtime displays an error that my device is not supported.I think the Slide has an ARM6 based processor, which could be the issue, but that doesn't explain why the MyTouch is listed in the certified devices. I undersand there are a few different MyTouch models, but I don't think any of them will be higher performance than the 3G Slide -- all of the MyTouch phones are ent
Hi,I am new in export flash to ipad. I tried to export my video as FLV for my ipad apps, it plays but its lagging or jerky.I had tried other formats like mp4, f4v, m4v or mov it just doesn't playWonder if anyone knows what video format to export for my ipad apps?Brucehttp://www.vmw.com.sg
Sorry if this was talked about already. I've tried looking but couldn't find anything on this topic.----------------------------------------------------------------------So I recently updated to the beta 2 iOS from apple.I'm now having issues installing apps on my device. What's happening is after the CS5.5 generates a .ipa file I drag it into iTunes. After iTunes has synced and everything looks good I look on my device and for some reason the app is only half way installed. The Blue loading bar just doesnt wan't to go 100%I using iTunes 10.5 beta 2 (I even tried going back to iTunes 10.5 beta 1). - Windows 7. I know they just released Wifi sync but thats only for Mac OS at the moment.Is anyone else having issues?ThanksTimothy
I'm trying to figure out how to write to a local CSV (or TXT) text file on the iPad. I've got UIFileSharingEnabled working--iTunes sees the app as available for file sharing. However, via FileStreram, I can't find where to save the file to? I've tried all the options I know of;* documentsDirectory* applicationDirectory* desktopDirectory* userDirectory* applicationStorageDirectory...but the file doesn't show up in iTunes. Anyone have any suggestions? You game developers must have this figured out for 'high-score' and preferences.Thanks
Hi guys, is there a way in AS3 how to detect the current song playing, for example I want to get the title of the music that is currently playing?
Hello,I have 2k+ of mp3 files and i need form playlist based on id3 tags. When i create air.Sound object in JS I run load() method and get ID3 tags in COMPLETE event handler. After that i create new Sound object for next file and all looks fine but near 900 file I get Out of memmory error. Whats wrong?Before create new object I set old variable value to NULL.
I'm developing a game with AIR 2.7 and have encountered a very rare and very bizarre issue where if the game is loading while my phone's screen is off (HTC Desire) landscape/GPU fullscreen can break and the game is displayed at 50% of fullscreen scale even though all Stage properties indicate the stage is the correct size.It's possible to recreate an instance of this issue by using the 'Debug Movie on Device via USB' with the phone's screen off and only unlocking it as the game is loading at the point the "[SWF] android_app.swf - 5863962 bytes after decompression" line has appeared in the Output panel.Photo of my phone showing this problem attached:By allowing Auto-orientation in publish settings I found that if this issue had occurred rotating the device instantly corrected it and fullscreen worked. That lead me to find that toggling stage.displayState between "normal" and "fullscreen" also cleared this issue.Here are the code snippets to highlight what I've added to prevent thi
Silent installation of my app works fine when the runtime is installed, as follows:<path>\MyApp.exe -silent -location "\"C:\Program Files\MyApp\"" -desktopShortcut -programMenuHowever, if the runtime is not installed, the invocation does nothing. I've also tried -eulaAccepted.Is it possible to silently install the app, yet if the runtime is not installed, initiate the runtime install automatically from adobe, preferably with a eula prompt for the user?Worst case, if the runtime must be bundled in the package, is a sidecar install supported for native installers?I should note, I cannot package the app as .air. The app uses NativeProcess and bundles an exe.Thanks.
Hi,I need to debug an AIR application from the terminal with adl. I currently have AIR 2.7 SDK and FLEX 4.1 SDK installed. I have double checked and reinstalled the SDK and PATH variables. In FB everything works its only in the terminal I am getting the errorinvalid application descriptor: descriptor version does not match runtime versionI have seen lots of posts about this and usually its some SDK configuration issue. Just to verify my descriptor is<application xmlns="http://ns.adobe.com/air/application/2.7">I have also tried<application xmlns="http://ns.adobe.com/air/application/2.7" minimumPatchLevel="19480">as the runtime installed version is<key>CFBundleVersion</key><string>2.7.0.19480</string>But if I am looking at the right runtime install?This is the same path I have for the SDK in FB where everything works. Anyone has any ideas?best,Jonas
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.