Debug Air iOS app on device with Flash CS6?

Hi,
Is it possible to debug an Air iOS app on device to get all the trace() messages?
I'm using Flash CS6 with the AIR SDK 16.
Thanks

Go to publish settings:
- Select Quick publishing for device debugging and select your LAN/WIFI adapter IP from the list
- Install IPA to your device
- In Flash CS6 go to Debug panel -> Begin Remote Debug Session > ActionScript 3.0
You will see:
Waiting for Player to connect...
in the output panel
Now launch your application on your device. Be sure that you in the same WiFi network with your desktop. If Flash CS6 can't connect to the device and still waiting for it - try to disable firewall.

Similar Messages

  • Unable to test iOS app on iPad with Flash Builder 4.7 OSX Yosemite

    After upgrading to OSX Yosemite, i'm unable to test my iOS app on my device.
    Compilation and packaging works as expected but app is never installed on my device connected trough USB.
    Anyone having the same problem?
    Thanks

    I've found the solution on another post (Re: Run/Debug on a device with Flash Builder 4.7 on OSX 10.9 (Mavericks) and iOS7) having app installation problem on Mavericks.
    Disable your device WiFi and install your application from Flash Builder. Then enable your device wifi. It work for me.
    Thanks

  • Publishing air apps with native extension with Flash CS6 on Windows

    Hi all,
    is there any trick to publish air apps with Flash CS6 on Windows?
    I tried all native extensions from devnet, but nothing work to me.
    I read on Mac is possibility to specify the iOS SDK folder in publish
    settings, but on Windows it´s missing. 
    Is there anybody who has some experiences with publishing apps
    with native extensions for iOS and Android with windows Flash CS6?
    Thanks for all advices.

    I sympathize. I recently found a native alert for iOS and Android that's working with Flash CS6 on Windows with AIR 3.2.0.2070 but not AIR 3.2.0.2060. You can get the ANE here:
    http://www.jampot.ie/ane/
    Haven't tried the other ones. Let us know if you decide to try them.
    The sample code they have on the page doesn't work with the native alert. Here's the code I created - it's a document class for a .fla that has one dynamic TextField and one Button component on the stage :
    http://pastebin.com/DsxR9nJ4

  • Publish iOS app with Flash CS6?

    Hi,
    Is it possible to publish an iOS with the new icons sizes (120px..) with Flash CS6?
    Flash removes the new icon sizes from the app.xml every time I publish my app.
    Is it possible to prevent this?
    I tried to set the app.xml to read-only but then the app will not publish.
    Thanks

    I was getting this intermittently.   Not a super problem.   A remove and install in iTunes gets it loaded (after you tell ITunes where it is).

  • AIR SDK 17 (BETA) is not working with Flash CS6

    Hi,
    The latest AIR SDK 17 is not working with Flash CS6.
    I tried to publish and install an iOS app to my connected device via USB but I always get an error "Check if iTunes is installed".
    The latest stable AIR SDK 16 is working fine, and yes, iTunes is installed on my PC.
    DETAILS:
    - Flash CS6
    - AIR SDK 17
    - System: Windows 8,1
    - iPodTouch with iOS 8.1
    REPRODUCE:
    Open new AIR iOS template and publish/install it to a USB connected iOS 8.1 device.
    Anyone else got that error?

    I was getting this intermittently.   Not a super problem.   A remove and install in iTunes gets it loaded (after you tell ITunes where it is).

  • Reduce publishing time for Air iOS apps?

    Hi,
    Currently it's taking my machine up to  4 minutes to publish an Air iOS app.
    Are there any settings or hacks I could try to reduce the time?
    I'm using Flash CS 6 + AIR SDK 16 on a Windows 8.1 laptop.
    Stats:
    - Intel Pentium Prozessor (1,5 GHz, Intel HD Graphics, Microsoft Windows 8, 64-bit)
    - 4 GB DDR3-RAM
    - 500 GB Hybrid-SSHD-Festplatte with 8 GB SSD
    Thanks for any tips.

    Hi,
    I'm really interested in this feature as well. Have spent a bit of time attempting to get one running through a native extension but it doesn't appear to work. I believe something in the AIR build process is blocking the components required. I've tried several methods so far:
    packaging the appex with an ANE
    packaging the appex with the AIR container app
    using a class instead of a storyboard
    But nothing seems to be working. This is even before the app extension is doing anything. My guess is that the plist file specifying the app extension isn't correctly being included in the application but I have no idea how to update it to test.

  • Is anybody else having their Adobe AIR iOS app crash within the first second of opening it?

    Is anybody else having their Adobe AIR iOS app crash within the first second of opening it?
    I am using iPhone 6, iOS 8.1.3, with a development certificate.
    With Adobe AIR SDK 16.0.0.283 and now with 17.0.0.93, after compiling the app (whether in release mode or debug mode), before the app getTimer() can ever reach 999 milliseconds the app will crash. No matter what code I have, it is just crashing before the runtime can ever reach the first second.
    Anybody else having this kind of behavior?

    Chris,
    Thanks for your prompt reply. I have found the way to reproduce. It is about interfaces, and when I try to call a method through an interface the app crashes. I think that it is related to having an interface with many parameters. I have logged the bug here:
    Bug#3935199 - iOS App crashes when calling an objects method through interface

  • Load an interactive slide into an AIR iOS app. Is it possible?

    HI,
    Imagine having a Flash app which could dynamically load an external interactiveSlide.swf with which you could interact with. You could then unload/remove the interactiveSlide.swf.
    I'm wanting to create a similar model for iOS.
    So I create my AIR iOS app that can dynamically load external content. My question is does anyone have any ideas how I could package the interactiveSlide so it could be loaded by the AIR/iOS app?
    .swf obviously wouldn't work.
    Thanks,
    Mark

    HI Chris,
    Thanks for taking the time to reply.
    Could you expand on your answer, which bit is very doubtful?
    Also in your knowledge would Apple work with a company and license it if the software they were developing was desired by consumer demand?
    Thanks
    Gary

  • Sending Tweets via Adobe AIR iOS Apps

    Heya everyone.
    Is there a way that I can implement a tweet function into an AIR iOS app? I'm currently developing it in Flash Professional Actionscript 3. I understand that there's a method of doing it in Flex, but I have no knowledge in that area.
    Thanks .

    hey kglad, thanks for your help. things are a little clearer now.
    I had a look at the REST API Resources, and dug out the "POST statuses/update_with_media" which requires authentication. So I shall proceed with using tweetr's oAuth class.
    I've chosen to make the authentication a PINless one, since I'm currently dealin with an iPhone app, and I do not wish to disturb the user with a browser opening up everytime whenever an authentication is needed.
    I had a look through tweetr's pinless authentication tutorial and found this piece of code:
    oauth = new OAuth();
    oauth.consumerKey = "YOUR_CONSUMER_KEY";
    oauth.consumerSecret = "YOUR_CONSUMER_SECRET";
    oauth.callbackURL = "http://your.callback.url";
    oauth.pinlessAuth = true;
    oauth.addEventListener(OAuthEvent.COMPLETE, handleOAuthEvent);
    oauth.addEventListener(OAuthEvent.ERROR, handleOAuthEvent);
    var rect:Rectangle = new Rectangle(50,50, 780, 500);
    htmlLoader = HTMLLoader.createRootWindow(true, null, true, rect);
    oauth.htmlLoader = htmlLoader;
    oauth.getAuthorizationRequest();
    I'm guessing the above code goes into the constructor? Or into a private function itself where it'll be called when a button is pressed or something.
    Another question is, what is a request URL? It seems like the default address (according to my application details in dev.twitter.com) is http://api.twitter.com/1/. But that doesn't seem right at all.
    Cheers

  • Open local PDF inside Air iOS app

    I am developing an AIR for iOS app for the iPad. My client would like the app to open a local PDF file within the app, rather than launching an external app (such as Adobe Reader). This is to give a seamless experience when using the app. I've seen that distriqt.com produce the 'PDF Reader' Native Extension based on www.vfr.org. VFR appears to have a series of interface controls that open along with the PDF, which I don't require. I emailed Distriqt a week ago to clarify, and have had no response.
    Does anyone know of any other solutions to open a PDF inside an AIR iOS app?

    I've managed to load a PDF successfully inside my AIR iOS app, using the code from http://thatsthaway.wordpress.com/201...1/#comment-102.
    However, I've just come across a weird feature / bug when viewing a PDF using stagewebview. I have a PDF that contains several internal hyperlinks, each navigating to a page within the same PDF document. If I select any of the hyperlinks, they do jump to the intended pages. However, if I reselect the same hyperlink again, it no longer works. If I select a different hyperlink, and then reselect a previous link, it will then work, but if I select the same hyperlink twice in a row, without selecting a different hyperlink in between, the link fails to work. The PDF hyperlinks all work ok outside of my app, on both Windows desktop and an iPad, just not inside of the AIR app.
    Any ideas?

  • AIR iOS app as Remote controller

    Hi,
    Is it possible to build an AIR iOS app as a remote controller for an html based website?
    If it is what will be the direction to take?. I have been looking at the SocketServer API but is not clear to me that this is the answer.
    Any help or advise will be appreciated
    Thanks

    Solved!  ..."Full Screen Displays your application in fullscreen mode on the device. When this setting is enabled, the device’s status bar does not appear above your application. Your application fills the entire screen."

  • App created with Flash CS6 doesn't work on iOS6

    Hi, I developed an iOS app with Flash CS6 and it works perfectly on iOS 5.1, but today I've upgraded my iPhone 4 to iOS 6 Beta for developers and my App doesn't work!! Apps developed with CS5.5 work well on iOS 6. How to fix it?! I tried to save in flash cs5.5 format and open it with CS5.5 to export it, but it doesn't export anything! Please give me a solution.

    update:
    - i'm still using cs5.5, but now have air3.3 overlayed
    - i changed the render mode in the app.xml file to "direct" instead of "gpu" and republished
    the app seems to display the graphics and dynamic text ok, but the stageVideos are not showing up.
    suggestions greatly appreciated, thanks...

  • Launch image for iPhone 5 with Flash CS6

    How do I add the required iPhone 5, 4 inch screen launch images to my build using Flash CS6. I have targeted Air 3.8 beta and there is no support for bundling the necessary images. Do I need to edit the plist or app descriptor xml file or something? Do Adobe plan to accommodate these new Apple requirments in a future version of CS6 or AIR SDK?
    Up until now I have had no problems submitting binaries to the Appstore, but as of May 1st Apple reject any binaries that are not optimized for the 4 inch screen of the iPhone 5.
    Thanks.

    Hi,
    Thanks for your effort!!!Did exactly the same, but no result.I changed the version number in Flash in the airsettings to 2.1, and also tried (1.1, 2.1. 1.0.1)After that, put another version ready to upload. Select this version in the apploader.And than it tells me: This bundle is invalid. The value for key cfkbunleversion in the info.plist file must contain a higher version than that of the previously uploaded version.
    I do not want to update my app, but only the screens you see when buying the app in de store.And also the name of the developer. I changed my apple id from [email protected] into [email protected] thought if I run an update, the apple-id of the app will change.
    (I am not sure).
    Hope to hear from you.
    Newspaper want a interview because it's a creative app from the city, now I hope it will work in time...App name is: jabenjibbe
    Kind regards,Christa.
    Date: Sun, 4 Aug 2013 20:56:45 -0700
    From: [email protected]
    To: [email protected]
    Subject: Launch image for iPhone 5 with Flash CS6
        Re: Launch image for iPhone 5 with Flash CS6
        created by gdfsdrghdhdfhrthfghgfhgth in Flash Pro CC - General - View the full discussion
    Hey Christa,
    I'm not entirely sure what process you've gone through, but as far as uploading an update goes, it's much like uploading your original app.  You need to go to iTunes Connect first and log in, go to "Manage Your Apps" and then click on the app you want to upload an update for.  There'll be an option on the next page that says "Add a version".  You then enter the information that you need to for the updated app and click on "Save".  You'll then have the button you need to click on that says something like "Ready to Upload Binary" or something similar.
    Once you click on that, you need to open up Application Loader and then upload your updated app through that.  If you've entered the correct information in the steps above, you should be able to choose the new version number for your app from a list.  You then just submit it like you did originally.
    After that, you simply have to wait.  It's not instantaneous.  Submitting an update is much the same as when you submit an app for the first time.  It has to go through the whole review and approval process all over again.  So when you go back to iTunes Connect, you'll see for the app you've updated, there'll be a green light for the older version that's approved and currently on the App Store and an orange light for the update that's waiting approval.  Once the update has been successful, it will automatically replace the older version (if you chose that option earlier) and then you will only have the one green light, for the most recent version, on iTunes Connect and then people who have downloaded the app previously will get the Update alert in the App Store on their phone/device letting them know that there are updates available. 
    For me, the update process was reasonably quick.  It took anywhere between 3 and 5 days before the update became active on the App Store.  Hope this helps.
    Cheers,
    Hally
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5566190#5566190
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5566190#5566190
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5566190#5566190. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Flash Pro CC - General by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Detect if iOS app is made with AIR?

    Is there an easy way to find air apps on the iOS app store? OR an easy way to detect if someones app is made with Air? I do not see the App ID in the itunes link like you do on google play

    The need was to find out apps in the App Store that were made as AIR apps. You would have to actually buy apps to figure it out from the files. In Google Play you can see in the URL. For example, I did this app with Flash Pro:
    https://play.google.com/store/apps/details?id=air.com.oogieloves.milkshakemayhemlite

  • App packaged with Flash CS6 windows installer can't be installed offline because of missing AIR RT

    Hi all
    I've build an Application in Flash CS6 and AIR SDK 3.5 for desktop and packaged it as a windows installer. When i try to install it on a windows 8 pro tablet with no internet connection (in my case an Acer Iconia w5) a window pops up, telling me that i need adobe air and i should download it at www.adobe.com/go/getair_de. I thought the AIR runtime is packaged inside the windows installer, so you don't need AIR preinstalled on your PC. I've added a screenshot of my setting:
    Any help would be great

    I think what you're looking for is the captive runtime.  For that you'll want to select "Application with runtime embedded".  This does however mean that you'll need to use your own "installer".  This could be as simple as zipping the folder up or just copying it over.
    http://help.adobe.com/en_US/air/build/WSfffb011ac560372f709e16db131e43659b9-8000.html

Maybe you are looking for

  • How do I get 2013 holidays added to my calendar?

    How do I add 2013 Holidays to my calendar?

  • Digital media card reader

    hi  when i using digital media crad ,it says very slow response and called not not responding and after 2-3 min its ok  and i if i try to move another picture it say the same . i m very fed up to hp pavillion g6 1159 laptop  ,  pls tell me if any sol

  • How can I to restrict the amount of messages in XI 3.0 ?

    Hi @all, in our company we use sap xi 3.0. Actually, we research a method to restrict huge amount of messages that we process in the integration server (IS). Is there any possibility to restrict the amount of messages int the IS? (e.g.  a parameter (

  • Conversion Agent ?

    Hi experts, Our scenario is EDI-X12 data to XI  to R/3  (both side) For Converison Purpose, We want to use Conversion Agent by Itemfield, but there are some other options also in the market like  Seeburger and Iway adapters. We have approx 50-60 EDI

  • Force scroll bar on JOptionPane?

    Is there a way to force some type of scroll bar in a JOptionPane.INFORMATION_MESSAGE ? I have written a program that figures the first 1000 prime numbers as required by my instructor. However, when the final output box prints it runs off the screen.