How to use Air 3.2 in Flash pro CS5

Hi all,
Is is possible to target Air 3.2 in the authoring tool Flash Pro CS5 ?
If yes, how can it be done ?
Thanks
Raphaël

Joe_suchta, you can follow these steps http://www.youtube.com/watch?v=pwVkK27Nors
Lucky

Similar Messages

  • Utilizing AIR Native Extensions in Flash Pro CS5.5

    I'm trying to integrate Adobe's "Gyroscope" example of ANE to work from Flash Professional CS 5.5.
    http://www.adobe.com/devnet/air/native-extensions-for-air/extensions/g yroscope.html
    Apparently, one has to use the somewhat crude "ADT" command-line tool to build an app that uses Native Extensions.
    Unfortunately, I cannot get past the numerous errors ADT is throwing at me.  The latest is:
    unexpected failure: inputs not set
    java.lang.IllegalStateException: inputs not set
              at com.adobe.air.ApplicationPackager.createPackage(ApplicationPackager.j ava:62)
              at com.adobe.air.ADT.parseArgsAndGo(ADT.java:556)
              at com.adobe.air.ADT.run(ADT.java:413)
              at com.adobe.air.ADT.main(ADT.java:463)
    Unfortunately, I'm not an advanced developer, so I really don't know what any of that means. (But I'm sure if I can just get this one example to compile and run, I'll be better able to perform the necessary tasks in the future.)
    Can someone PLEASE help me?
    Thanks.
    Mike

    Joe_suchta, you can follow these steps http://www.youtube.com/watch?v=pwVkK27Nors
    Lucky

  • Rejected amazon appstore due to air url - published from flash pro with amazon selected

    We were just rejected from the amazon appstore due to the AIR url:
    The link to Adobe AIR in your app needs to be updated so that customers are taken directly to the Adobe AIR app page on the Amazon Appstore. -- The Download URL is http://www.amazon.com/gp/mas/dl/android?p=com.adobe.air
    We published via Flash Pro CS5.5 with Amazon selected, and when you install that APK on the device without AIR installed you get prompted to get AIR.  The 'Install' button gives you the intent menu for Web or Amazon, clicking amazon just takes you to the amazon appstore home page rather than directly to the AIR page..  How do we fix this?

    Could you please check the URL for AIR in: "C:\Program Files\Adobe\Adobe Flash CS5.5\en_US\Configuration\Android\Markets.xml" and confirm that it is set to the following:
    <market name="Amazon Appstore" url="http://www.amazon.com/gp/mas/dl/android?p=com.adobe.air"/>
    Or, if you're willing to generate the .apk by hand, you can use the "adt" command line mentioned at: http://forums.adobe.com/thread/903573

  • I would like to inquire how to use air 2.7 sdk in flash cs5.5.

    I would like to inquire how to use air 2.7 sdk in flash cs5.5.
    I have searched some solutions online and tried to copy air2.7 content in air2.6 folder(replaced the old one). I then did some efficiency tests but I don't see any improvements at all. Did I miss anything?
    Besides that, There's a display ratio problem if I publish the ipa in landscape mode. I can't interact with the program either. But it is not a problem if the ipa is published in portrait mode.

    http://forums.adobe.com/thread/864964?tstart=0

  • Using Air 2.6 with Flash CS5

    hey there all,
    here is what i am doing so far to use Air 2.6 with Flash CS5. i counts seem to find any help online with this, hope this helps someone...
    Setting Up Flash CS5
    1. replace Program FIles\Adobe\Adobe Flash CS5\Common\Configuration\ActionScript 3.0\AIR2.0\airglobal.swc with the airglobal.swc in the AdobeAIRSDK\frameworks\libs\air folder of the AIR 2.6 SDK zip file (AdobeAIRSDK.zip)
    This lets you compile with the new SDK and use all the new API for camera roll, microphone, etc.
    2. replace Program Files\Adobe\Adobe Flash CS5\AIK2.0 with the AdobeAIRSDK folder in the zip file (AdobeAIRSDK.zip) you downloaded from Adobe.
    now you can do a test movie in Flash CS5 and it will use the new ADL for testing in Flash (finally works with landscape!).
    Publishing
    for publishing, unfortunately you cant use the built-in publish for iOS. i wrote this batch file and use it (also you can write an ant task if you use FDT/Flash Builder). This is for windows 64bit...
    "C:\Program Files (x86)\Java\jre6\bin\java" -jar C:\AdobeAIRSDK\lib\adt.jar -package -target ipa-ad-hoc -storetype pkcs12 -keystore [KEYFILE].p12 -storepass [KEY PASSWORD] -provisioning-profile [MOBILE PROVISION FILE].mobileprovision [IPA NAME].ipa [XML FILE NAME].xml [SWF FILE NAME].swf Icon_29.png Icon_48.png Icon_57.png Icon_72.png Icon_512.png Default-Landscape.png Default-Portrait.png Default-PortraitUpsideDown.png Default-PortraitLandscapeLeft.png Default-PortraitLandscapeRight.png
    i have a 64bit system so i had to specify the 32 bit JRE and use the ADT jar for packaging. now i just double-click the batch file and it compiles for iOS.
    Adjusting the app.xml File
    the yourapp-app.xml file needs some tweaks from the CS5 packager to work in 2.6:
    1. namespace has to change from
    <application xmlns="http://ns.adobe.com/air/application/2.0">
    to
    <application xmlns="http://ns.adobe.com/air/application/2.6">
    2. the version node needs to be renamed versionNumber
    from
    <version>.5.572<</version>
    to
    <versionNumber>0.5.572</versionNumber>
    notice you need to include the leading zero if you arent using a whole number version
    ok, thats what i have so far, hope this helps...

    hey there all, for those on Windows,
    here is a compile script i put together for iOS using AIR 2.6. Copy and past this into a file named "compile ios.wsf". All you have to do is double-click and it will compile and paclage your app.
    the script assumes you have a versionNumber like: 0.4.123 it takes and incrememnts the build number (the last 3 numbers only) by one. i will imrpove this later.
    <?xml version="1.0" ?>
    <job>
    <script language="JScript">
         This file assumes you are using a 3-segment version system.
         It is not very inteligent, it just increments the last set of numbers in the
         versionNumber in the XML file by 1. !!be aware that it is not yet smart enough
         to update the second number!!
         // these properties change depending on your project
         var XML_FILE = "YourApp-app.xml";
         var SWF_FILE = "YourApp.swf";
         var IPA_FILE = "YourApp.ipa";
         var TARGET = "ipa-ad-hoc";
         var KEY_FILE = "dist.p12";
         var KEY_PASSWORD = "PASSWORD";
         var PROVISIONING_PROFILE = "YourApp.mobileprovision";
         var ICONS = "Icon_29.png Icon_48.png Icon_57.png Icon_72.png Icon_512.png";
         var SPLASH_SCREENS = "Default-Landscape.png Default-Portrait.png Default-PortraitUpsideDown.png Default-PortraitLandscapeLeft.png Default-PortraitLandscapeRight.png";
         // the location of your JRE/JDK and Air SDK files
         var JRE_BIN = "C:\\Progra~2\\Java\\jre6\\bin\\java";
         var ADT_JAR = "C:\\AdobeAIRSDK\\lib\\adt.jar";
         // this stuff shouldnt need to change
         var objXML = new ActiveXObject( "Microsoft.XMLDOM" );
         objXML.async = false;
         objXML.load(XML_FILE);
         var root = objXML.documentElement;
         var versionNumberNode = root.selectSingleNode("versionNumber");
         var versionNumberArray = versionNumberNode.text.split(".");
         var buildNumber = parseInt(versionNumberArray[2]) + 1;
         versionNumberNode.text = versionNumberArray[0] + "." + versionNumberArray[1] + "." + buildNumber;
         objXML.save(XML_FILE);
         var cShell = WScript.CreateObject("WScript.Shell");
         var compileCommand = '"' + cShell.CurrentDirectory + '\\compile ios.bat"';
         compileCommand = JRE_BIN + " -jar " + ADT_JAR + " -package -target " + TARGET + " -storetype pkcs12 -keystore " + KEY_FILE + " -storepass " + KEY_PASSWORD + " -provisioning-profile " + PROVISIONING_PROFILE + " " + IPA_FILE + " " + XML_FILE + " " + SWF_FILE + " " + ICONS + " " + SPLASH_SCREENS;
         //WScript.Echo(compileCommand);
         var runVal = cShell.run(compileCommand, 1, true);
    </script>
    </job>
    i will see if there's time to do a shell script of OSX and an ANT script for Eclipse...

  • Developing iOS application using Adobe Flash Pro CS5

    Hi,
    I have Adobe Flash Pro CS5.
    Is it possible to develop iPhone (iOS) application using this product (I have an iPhone iOS option in the New Document dialog)?
    If it is possible, how do I start a new iPhone project? How do I continue from there?
    Thanks,
    Janiv.

    This question needs to be posted in the Flash forum. This forum is only for the player.

  • HT201335 can i use air play with my macbook pro and apple tv

    can i use air play with my macbook pro and apple tv

    AirPlay Mirroring requires a second-generation Apple TV or later, OS X 10.8 or better and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer). It also requires the computer to be using wi-fi.

  • HT1338 how to use a webcam in a mac pro?

    How to use a webcam on a mac pro?

    Generally, plug it in.
    The OS should notice most major webcams, although you might need to install some software from the vendor to make it work. You'll need to check specific make/models for compatibility.
    Once it's connected it should be available in any application that supports video input.

  • Currently using Flash Pro CS5,  getting error when trying to open CS4 file.  Error is "Slides and Forms documents are not supported in this version of Flash. Please open in previous version.

    Currently using Flash Pro CS5,  getting error when trying to open CS4 file.  Error is "Slides and Forms documents are not supported in this version of Flash. Please open in previous version.  Has there been a fix or patch to this issue or do I have to convert back to CS4 to open the file?

    Having the same problem in CS6.  I can tell you that converting back to CS4 will NOT solve the problem.  It seems when support for backward compatibility is discontinued, there's just no way to get
    any help at all?  Absolute failure to provide any user support so far...

  • Can't Open Flash Pro CS5

    I just installed the 30-day trial version of Adobe Flash Pro CS5 on my HP laptop (I'm using Windows XP Professional) and every time I try to open it it says that "Adobe Flash CS5 has encountered a problem and needs to close."
    I need this for my job and I'm unsure as to why this is happening. Has anyone else encountered this problem? And if so, how did you go about fixing it?

    I am facing the same problem. My OS is Win7 and Hardware is Dell Inspiron laptop.
    I have installed CS5 Premium 30-day trial. All app work fine except Flash CS5. Can someone help?

  • Need Help testing iOS app created in Flash Pro Cs5.5

    I've followed several instructions on how to develop a simple iOS app. I've managed to go all the way through and Publish + create the .ipa. I'm able to then add the file to my iTunes library, but when I then try to add it to my iPod Touch (2nd Generation) I get the following error:
    The app "XXXXXX" was not installed on the iPod "XXXXX's Ipod" because it is not compatible with this iPod.
    I've even tried it with a simple "Hello World!" app but I get the same error.
    I'm using Flash Pro Cs5.5 on a Windows PC.
    Any suggestions?

    I'm having the exact same problem with my iphone 3G. I tried publishing the exact same simple flash app to my iphone, which I already previously tested succesfully, after having downloaded flash 5.5, and now I get the following message (which, I believe, is identical to yours kinant87) :
    "The app "Main" was not installed on the iPhone "Norgaard" because it is not compatible with this iPhone."
    I was trying to make another small app, when I got this problem, which is why I went back to re-test the app I knew was working!
    I've reinstalled all my apple certificates, and also tried using flash builder 4.5, with the same result.
    I also have not jail broken my phone, and was starting to think perhaps the iPhone 3G was no longer supported?

  • Need help with languages issue in iOS app created in Flash Pro CS5.5

    Hello all,
    I'm using Flash Pro CS5.5 on a Mac running Snow Leopard to create an iOS app by publishing with 'AIR for iOS' from inside Flash Pro. Everything works great except after I submit my app to the Apple App Store and it is approved, the App Store listing claims that the app is available in a ton of different languages including English, German, Chinese, Italian, Spanish, etc. Since this app is a word game and all the words are in English, this is a pretty significant issue.
    If I view the binary details for the app in iTunes Connect, it shows that localizations are active for all of the different languages. This information is read from the .ipa file that is submitted.
    If I unzip the .ipa file, I can see that folders have been created for all of the localizations (i.e. en.lproj, es.lproj, fr.lproj, etc.). If I delete any of those folders, the .ipa will give me a 'resources modified' error at install.
    I have also tried setting the plist attribute 'CFBundleLocalizations' to 'English' by editing the 'app.xml'. I have verified that the attribute has been changed correctly but it does not solve the issue. All of the localizations are still active.
    Any help would be greatly appreciated.

    Can you try workaround given at http://forums.adobe.com/message/3976641 and post back your findings.

  • Adding Flash Player 11 support to Flash Pro CS5 and CS5.5

    http://blogs.adobe.com/rgalvan/2011/11/adding-fp11-support-to-flash-pro-cs5-and-cs5-5.html
    by Rich Galvan @Adobe
    MXP has been released. I tested on CS5 and seems to work
    Kenneth Kawamoto
    http://www.materiaprima.co.uk/

    Yes you could but that also displays the debug movie console which is uneccessary if you just want to quickly test your movie.
    I find myself using Test Movie hundreds of times a day and I just want a clean, quick, uncluttered view of how my work will look.
    I do use Debug Movie but only occasionally.
    More importantly though is that I'm not sure FP11 is ready yet. Its got a pretty horrible bug that really affects my work:
    http://forums.adobe.com/message/3993046#3993046
    Just my opinion!

  • Can't launch or reinstall Flash Pro CS5 after Flash Pro CC installation

    I'm on a newly installed hard drive with a fresh install of Mac OS X 10.7.5. I installed Flash Pro CS5 and it opened fine. Then I installed Flash Pro CC and now I cannot open the CS5 version. It says there is a configuration error and I need to uninstall and reinstall the application. So I tried reinstalling and I get a message that I must either cancel the installation or eject the disk image. I have tried all the workarounds suggested for bypassing Mac OS Gatekeeper and still no luck. An Adobe rep from another forum suggested I post this issue here to see if anyone has any suggestions. Here is what I have tried so far:
    Control-click on the installer and choose open to run it.
    Disabled Gatekeeper in Security and Privacy settings of System Preferences.
    Disabled Gatekeeper manually in Terminal.
    Tried to uninstall the original installation of Flash CS5, but it says the uninstaller file can't be found.
    Ran the Adobe Cleaner tool to remove CS5 applications.
    Ran the spctl -a command on the installer and it said CSSMERR_TP_CERT_REVOKED. Assuming this means the certificate has been revoked?
    Any help is appreciated. Thanks!

    Bernst did you also run the uninstaller located in the Applications/Utilities/Adobe Installers folder?  This is meant to be ran prior to utilizing the CC Cleaner Tool.  You can find more details at Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 - http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html.
    Also what specific configuration error are you receiving?

  • Problem error with Adobe flash pro CS5 / Problème d'erreur avec Adobe flash pro CS5

    Hello !
    I use Adobe flash pro CS5 to edit a flash template for my website.(the free test version 30 days)
    Today, I want open Adobe flash pro CS5 when a error message appears : "adobe has stopped working".
    So, I can't open Adobe flash pro CS5, I've try 10 times, and I've again the same message.... I can't continue my website !
    Please, help me
    Thank, Jérôme. (sorry for the faults, I'm french...)
    Bonjour !
    J'utilise Adobe flash pro CS5 pour éditer un site web flash. (version gratuite 30 jours)
    Aujourd'hui, j'ouvre Adobe flash pro CS5 quand un message d'érreur apparait : "Adobe à céssé de fonctionner".
    Donc, je ne peux plus ouvrir Adobe flash pro CS5, j'ai déjà essayé 10 fois, et j'ai toujours le même message... Je ne peux plus continuer mon site !
    SVP, aidez moi
    Merci beaucoup, jérôme.

    No reply... Up
    Thank you !

Maybe you are looking for

  • How do I install applications to classic in os 10.4.11

    How do install applications to classic in os 10.4.11.  Specifically Microsoft Works 4.0. I am trying to get a customers old g4s upgraded in increments so they can  get away from os 9.2.2.  They have book keeping records that need to be converted from

  • Urgently .. import invoice to AP

    Dear guys, I Need your expertise to import invoices from other application into Oracle AP, beside this two tables (AP_INVOICES_INTERFACE, AP_INVOICE_LINES_INTERFACE) any other table i have to take a note? and also which one are the mandatory columns

  • How To Get Refund Non-functioning App

    The I Swipe Ruler is not accurate and does not repeat at all (that is everything a measuring device needs to do). Below is the response from the developer, but I don't know who to contact at Apple to get a refund to my account. It is only $0.99 but a

  • ERROR WHEN PURCHASING

    I have an itunes gift card and i have used it already. today i went to buy three songs and an error occured with itunes and it had to exit the page while i was in the middle of purchasing songs. i reopened the page and checked my purchase playlist an

  • Gaming X20 mouse - Right button issue

    Hello, i'm having a problem with a Gaming X20 mouse and I can't find it anywhere on the web, as well as new drivers for the mouse. The problem is when, in some games, i press the right mouse button, the view goes crazy, in some games it's subtle, but