AIR in Flash CS3

I'm having difficulty getting the option for New>Flash File (Adobe AIR). I've installed the Adobe AIR update for Flash CS3 Professional but the AIR file type doesn't appear. The update notes say "Be sure to follow the instructions in Installing Adobe Air 1.1 Update for Flash CS3 Professional to ensure you use the latest update" but if I follow this link the update doesn't download as it says I already have the latest version installed. In fact Adobe AIR reports version 1.5.1.8210 so do I have to uninstall the latest version of AIR and then install AIR 1.1? Rather puzzlingly, if I create a new AS3.0 file in Flash the publish options only allow me to target AIR 1.0.
Any suggestions gratefully received.

Hi David,
Thanks for the feedback. It's never too late because we can
change this in the next release of Flash (that also includes AIR
support). However, I'm unable to reproduce the problem on Vista
with 1024x768 screen resolution. The dialog still fits in the
screen at this resolution. We'll shrink it down for the next
release. Please let me know if you're using the Flash build that is
not English.
Thanks,
San

Similar Messages

  • Error publishing Air in Flash CS3

    Hi All
    On the Adobe Air Flash CS3 wiki page
    http://labs.adobe.com/wiki/index.php/AIR:Flash_CS3_Professional_Update:Getting_Started_wit h_AIR_for_Flash_CS3_Professional)
    I found a simlpe tutorial "Creating an Adobe AIR application
    in Flash"
    I thought well this can't be hard can it?
    However when I use the Publish Air File button in the 'AIR -
    Applications and Installer Settings' window I will get the
    following error:
    "namespace is invalid in the application descriptor file"
    Now I have tried to look into the XML file but I cannot see
    any problems.
    I also tried to use the descriptor-template.xml which came
    with the Air - SDK
    However also that will not work.
    Has anyone got an idea why I get this error?

    Hi FragFood!
    I received the same error "Namespace is invalid in the
    application descriptor file" repeatedly on many computers
    (XP/Vista) and here is how i repeatedly worked around it.
    I made a step-by-step sheet explaining exactly how to install
    Flash CS3 (9.0) with the Latest Flash Player (v9.0.124), and with
    Adobe AIR (1.0) as of today (3/May/2008).
    If you have already installed Flash CS3
    Uninstall Flash CS3
    Goto all the "Program Data" folders, RENAME/DELETE the "en"
    folder
    Goto "Program Files" folder, RENAME/DELETE the "en" folder
    Now to get the latest version of Flash CS3 installed!
    Please follow these steps exactly; each one is extremely
    important.
    Installing Adobe Flash CS3
    #1. Install Flash CS3
    #2. Open Flash, Close it
    Installing Adobe AIR Runtime
    #3. Download & Install "AdobeAIRInstaller.exe"
    --->
    Adobe AIR Download Center
    Installing Adobe Flash Player Update for Flash CS3 Professional
    (9.0.2) -- 12/12/2007
    #4. Download & Install "flash9-en_US_9_0_2_Update.exe"
    --->
    English/Windows,
    English/Macintosh,
    Other
    Languages
    Installing Adobe AIR Update for Flash CS3 Professional --
    2/25/2008
    #5. Download & Install "flash9-en_US_9_0_3_Update.exe"
    --->
    English/Windows,
    English/Macintosh,
    Other
    Languages
    Installing Adobe AIR update beta 3 for Flash CS3 Professional
    – Updated 12/14/07
    #6. Download & Install
    "flashcs3_air_extension_p3_en_121407.exe"
    --->
    Multi-lingual/Windows,
    Multi-lingual/Macintosh,
    Other
    Languages
    #7. Open Flash, Close it
    Installing Adobe AIR Update for Flash CS3 Professional --
    2/25/2008
    #8. Install "flash9-en_US_9_0_3_Update.exe" again
    ---> see #5
    #9. Open Flash, Close it
    Installing Adobe Flash Player Update for Flash CS3 Professional
    -- 04/17/2008
    #10. Browse to "C:\Program Files\Adobe\Adobe Flash CS3",
    DELETE the "Players" folder
    #11. Download "flash_player_update6_flash9.zip"
    --->
    Multi-lingual/Windows/Macintosh
    #12. Copy the "Players" folder from
    "flash_player_update6_flash9.zip"
    #13. Paste into "C:\Program Files\Adobe\Adobe Flash CS3"
    To test your Flash Player installation... (Optional)
    Open Flash
    Create New > Flash File (AS 3)
    File > Publish Settings
    Checkmark "Windows Projector .exe", OK
    File > Save, Save it someplace with any name
    File > Publish
    Now browse to the folder you saved the FLA File
    Look at your EXE File
    You should see a "Red colored square" icon instead of the
    usual "Blue colored circle" one
    To test your AIR installation... (Optional)
    Open Flash
    Create New > Flash File (AIR)
    Click OK on the message that appears
    File > Save, Save it someplace with any name
    Commands > "AIR - Create AIR file"
    Then on the dialog that appears asking you for a Digital
    Certificate:
    Press Create...
    Type some info, and a password, and save it into the same
    folder you saved the FLA File
    Now type the same password again, Press OK
    If you see an error "Unable to contact timestamping server",
    press "Continue without timestamping"
    You should see a message "AIR File has been created" !!!
    Enjoy Flash CS3 with the Latest Flash Player (v9.0.124), and
    with Adobe AIR (1.0) !!
    Faithfully,
    Robin.

  • AIR Intrinsic Classes-Tried and Proven Approach to building AIR applications   in the Flash CS3 IDE

    Hi everyone,
    For all of you out there who would like to develop AIR
    applications
    from the Flash CS3 IDE but aren't sure how to get those pesky
    intrinsic
    classes working, I have a technique that you can work with to
    create
    your classes and make fully functional AIR applications.
    First of all, those solutions out there that list
    "intrinsic" functions
    in their class definitions won't work. That keyword has been
    taken out
    and simply won't work. The "native" keyword also doesn't work
    because
    Flash will reject it. The solution is to do dynamic name
    resolution at
    runtime to get all the classes you need.
    Here's a sample class that returns references to the "File",
    "FileStream", and "FileMode" classes:
    package com.adobe{
    import flash.utils.*;
    import flash.display.*;
    public class AIR extends MovieClip {
    public static function get File():Class {
    try {
    var classRef:*=getDefinitionByName('flash.filesystem.File');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get File
    public static function get FileMode():Class {
    try {
    var
    classRef:*=getDefinitionByName('flash.filesystem.FileMode');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get FileMode
    public static function get FileStream():Class {
    try {
    var
    classRef:*=getDefinitionByName('flash.filesystem.FileStream');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get FileStream
    }//AIR class
    }//com.adobe package
    I've defined the package as com.adobe but you can call it
    whatever you
    like. You do, however, need to import "flash.utils.*" because
    this
    package contains the "getDefinitionByName" method. Here I'm
    also
    extending the MovieClip class so that I can use the extending
    class
    (shown next) as the main Document class in the Flash IDE.
    Again, this is
    entirely up to you. If you have another type of class that
    will extend
    this one, you can have this one extend Sprite, Math, or
    whatever else
    you need (or nothing if it's all the same to you).
    Now, in the extending class, the Document class of the FLA,
    here's the
    class that extends and uses it:
    package {
    import com.adobe.AIR;
    public class airtest extends AIR{
    public function airtest() {
    var field:TextField=new TextField();
    field.autoSize='left';
    this.addChild(field);
    field.text="Fileobject="+File;
    }//constructor
    }//airtest class
    }//package
    Here I'm just showing that the class actually exists but not
    doing much
    with it.
    If you run this in the Flash IDE, the text field will show
    "File
    object=null". This is because in the IDE, there really is no
    File
    object, it only exists when the SWF is running within the
    Integrated
    Runtime. However, when you run the SWF as an AIR application
    (using the
    adl.exe utility that comes with the SDK, for example), the
    text field
    will now show: "File object=[object File]". Using this
    reference, you
    can use all of the File methods directly (have a look here
    for all of
    them:
    http://livedocs.adobe.com/labs/flex/3/langref/flash/filesystem/File.html).
    For example, you can call:
    var appResource:File=File.applicationResourceDirectory;
    This particular method is static so you don't need an
    instance. If you
    do (such as when Flash tells you the property isn't static),
    simply
    create an instance like this:
    var fileInstace:File=new File();
    fileInstance.someMethod('abc'); //just an example...read the
    reference
    for actual function calls
    Because the getter function in the AIR class returns a Class
    reference,
    it allows you to perform all of these actions directly as
    though the
    File class is part of the built in class structure (which in
    the
    runtime, it is!).
    Using this technique, you can create references to literally
    *ALL* of
    the AIR classes and use them to build your AIR application.
    The beauty
    of this technique is its brevity. When you define the class
    reference,
    all of the methods and properties are automatically
    associated with it
    so you don't need reams of code to define each and every
    item.
    There's a bit more that can be done with this AIR class to
    make it
    friendlier and I'll be extending mine until all the AIR
    classes are
    available. If anyone's interested, feel free to drop me a
    line or drop
    by my site at
    http://www.baynewmedia.com
    where I'll be posting the
    completed class. I may also make it into a component if
    there's enough
    interest. To all of you who knew all this already, I hope I
    didn't waste
    your time.
    Happy coding,
    Patrick

    Wow, you're right. The content simply doesn't show up at all.
    No
    JavaScript or HTML parsing errors, apparently. But no IE7
    content.
    I'll definitely have to look into that. In the meantime, try
    FireFox :)
    I'm trying to develop a panel to output AIR applications from
    within the
    Flash IDE. GSkinner has one but I haven't been able to get it
    to work
    successfully. Mine has exported an AIR app already so that's
    a step in
    the right direction but JSFL is a tricky beast, especially
    when trying
    to integrate it using MMExecute strings.
    But, if you can, create AIR applications by hand. I haven't
    yet seen an
    application that allows you to change every single option
    like you can
    when you update the application.xml file yourself. Also, it's
    a great
    fallback skill to have.
    Let me know if you need some assistance with AIR exports.
    Once you've
    done it a couple of times, it becomes pretty straightforward.
    Patrick
    GWD wrote:
    > P.S. I've clicked on your link a few times over the last
    couple of days to
    > check it out but all I get is a black page with a BNM
    flash header and no way
    > to navigate to any content. Using IE7 if that's any
    help.
    >
    >
    >
    http://www.baynewmedia.com
    Faster, easier, better...ActionScript development taken to
    new heights.
    Download the BNMAPI today. You'll wonder how you ever did
    without it!
    Available for ActionScript 2.0/3.0.

  • Adobe AIR update for Flash CS3

    Hi, i'm having some trouble installing the adobe air update
    for flash CS3.
    I've installed it like 5 times, it always says that the
    installation is complete.
    But when i go to flash and try to make an AIR file it's not
    in the list, the only things i see are those:
    image

    ow, totally my bad, i switched the splash screen and that
    screen.
    Problem solved

  • Flash CS3 + Air 1.0 = no test?

    I just installed the new AIR 1.0 plug-in for Flash CS3. I've
    been developing an AIR app in Beta3 and when I open one of my FLAs
    since the update, I can't test or debug my movie from within Flash.
    Is this no longer supported? or have I botched that really
    annoying 4,000 step
    "uninstall/manuallydeleteabunchoffiles/install/butdon'tinstallthisbeforethat/nowyoumayins tall"
    process?
    Any help on how to remedy the problem would be greatly
    appreciated...

    jcedens,
    Please try deleting the application descriptor file
    (swfname-app.xml) that is in the same directory as your swf, then
    test movie again. The problem is because the xml file is of a Beta
    format. Another way to reset it to the release format is to open
    the application and installer settings dialog. Also make sure
    adl.exe is not running in the processes (ctrl alt del, select Task
    Manager > Processes).
    Thanks,
    San

  • Adobe AIR updater applicationupdater_ui.swc with Flash CS3 not working

    Hello AIR geeks,
    I have a project which is running in Flash CS3 with AIR.
    I would like to incorporate the functionalities which are available in applicationupdater_ui.swc
    Can any one please help me to make it available for flash cs3
    got a very nice code sinppet also
    http://www.fmajakovskij.info/air-updater-made-easy-with-scheduling/
    but Its not working with Flash CS3
    Thanks a lot
    Regards,
    Srinivas

    Use the Flex/Flash Component Kit to wrap your symbols for use in Flex
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Problem with AIR Flash CS3 Italian version

    I have installed the Adobe AIR update for Flash CS3 italian
    mac version but in the welcome screen I don't see the Flash File
    (Adobe AIR) preset.I know about the fix that consists in deleting
    the folder HD:/Users/<username>/Libraries/Application
    Support/Adobe/Flash CS3/<language>/Configuration/StartPage
    and I did it, but the problem remains. Now what should I do?

    Hi Alessandro,
    Please try rerunning the Adobe AIR Update for Flash CS3 to
    see if the problem can be solved.
    If after running the updater again and it still doesn't work,
    the workaround is to create a Flash 9 (ActionScript 3.0) fla. Then
    selecting Commands > AIR - Application and Installer Settings
    and Flash will ask if you want convert the publish settings to
    Adobe AIR, click yes.
    Thanks,
    San

  • Any Flash CS3 AS3 Map samples available that work in AIR?

    Any Flash CS3 AS3 Map samples available that work in AIR?
    Like Google or Yahoo.
    The ones that I have tried fail to work when making the final
    AIR app.

    I changed the profile of both to AIR2.0, and it still shows AIR1.0 in the properties panel. I'm able to publish the Panel.swf now but it also generates an unwanted panel-app.xml -- unwanted because panel is not an app, it's merely a SWF to run inside the main app.
    Is there a better way? And why does it still say AIR1.0 in the properties panel?

  • Can I Install Air update for flash CS3 on a cracked Flash CS3 Copy

    hi
    I'm from jordan I tried to buy Flash CS3 from Adobe and they
    said they only sell to US and Canada,
    so I had a cracked version (got it from the internet).
    could I install the Air update for flash CS3 on it
    thanks

    1) I do not say that I'm from jordan to make you care or not,
    I just want to say why I use cracked copy because I can not buy a
    good copy from my country.
    2) I do not steal or crack software I'm a multimedia
    developer and I had to use flash cs3, and if you want to judge me,
    go and judge cracker who put cracked copies on the internet first
    (and by the way in my country that you do not care about it there
    is no cracker we use cracked copies your country do).
    3) This question was for adobe team and not for you.

  • Flash CS3: Getting Started with AIR

    Ok, heres the manual i'm following
    http://livedocs.adobe.com/air/1/devappsflash/help.html?content=FlashHelloWorld_1.html
    1. Start Flash. <-- oke i can figure out how to do that
    :P
    2. In the Welcome Screen, click Flash File (Adobe AIR) to create
    an empty FLA file with Adobe AIR publish settings. <--
    no?..i dont see anything about AIR ?
    soo..what now?..
    apparently this is the way you'do it..according to the manual
    which says:
    Creating an Adobe AIR application in Flash is much like creating
    any other Flash application. The differences are that you begin by
    creating a Flash File (Adobe AIR) from the Welcome screen and
    conclude by creating application and installer settings and
    installing your AIR application. -- great =/
    EDIT: i found i might have to update my version of
    flash.

    AIR Update for Flash CS3 can be downloaded from this link:
    http://www.adobe.com/support/flash/downloads.html

  • Problem openning + setting up Flash cs3 trial

    I get an error when i open ADBEFLPRCS3_WWE.EXE (Flash cs3 )
    this is the picture:
    My
    Error i get when i open the Flash cs3 setup, please click image to
    get a better view.
    And please zoom in to the picture to see the error ( just
    click the image)
    It comes up with an error! Ive already downloaded flash mx
    2004 and flash 8.
    Hopefully you can help!

    The fix: Change the namespace on the second line of <project root>/src/ANESampleTest-app.xml
    FROM:   <application xmlns="http://ns.adobe.com/air/application/3.6">
    TO:   <application xmlns="http://ns.adobe.com/air/application/13.0">
    A brief and incomplete background:
    The file <project root>/src/ANESampleTest-app.xml is the ‘application descriptor file’. When using the project files downloaded with the tutorial (that contained the 3.6 reference), the builder did not find this compatible with the configuration on my computer (a trial version I installed today - 5/3/2014 - and patched according to the tutorial). I never did figure out how to lookup valid namespaces and am still confused about how all the sdk’s relate to each other. I stumbled upon this solution by creating a fresh new project and found that the namespace specified by the new project wizard was “13.0” on this line of this file.

  • Adobe AIR and Flash

    Hello,
    I am pretty new to Adobe AIR.
    I have a problem; I have been reading the Adobe Documentation and it is shown that Flash Media Server supports html packages, via a package flash.html.*
    However, It is mentioned that it is AIR supported.
    I did not understand this.
    And also i couldnt find any package as such while writing the code in Flash CS3.
    Can someone please throw some light on this and how do i get started with it?
    Thanks

    Flash and Java are the two top vectors for malware on any computer. It is imperative that you keep Flash updated to the latest version at all times. As for your concern about problems by updating Air or Flash the prudent thing to do is to create a bootable clone of your working system using a well known cloning app such as Super Duper. Create the bootable clone on a freshly formatted, external hard drive, then boot from that clone, update Flash and Air on that clone to the latest version, then test to see if you have problems with your PoserPro software. If all is well then restart from your normal boot drive and update.
    I note that PoserPro is a product of Smith Micro Software, Inc. This company has a very bad reputation regarding OS X compatibility, timely updates, and responses to customer service issues.

  • Getting Flash CS3/CS4 AIR1.0 app to work in Flash CS5

    This is a question in regards to Flash CS5 but since it's specific to AIR I'm posting here.
    I have a Flash CS3 AIR 1.0 project and I can't get it to compile in Flash CS5. If I recall I installed some extension for Flash CS3 to be able to create AIR apps. It was an Adobe extension.
    The app involves two SWFs. The first is the main app, Main.fla, the second is a window panel template, Panel.fla. The Main app would compile and include the Panel.swf which it would instantiate and load into new windows to create a paneled app.
    I was able to open Main.fla and publish in CS5 with no problems. The profile even says AIR 1.0 in the properties panel, although when I click edit it shows AIR 2.0 selected in the dropdown, and there is no option for another version of AIR -- which version of AIR is actually being created? Not important as long as it work...
    The Panel.fla on the other hand I cannot get to compile. The profile still says AIR 1.0 in properties but the dropdown in the publish settings says Flash Player 9, and when I compile it breaks on any AIR references, for instance:
    1119: Access of possibly undefined property nativeWindow through a reference with static type flash.display:Stage.
    I have this classpath:
    $(AppConfig)/ActionScript 3.0 AIR 1.0/Classes
    But apparently that is no longer good. I've looked in all the Flash CS5 directories I could find and there is no such dir.
    The issue here is that Panel.fla is NOT an AIR app, it's a SWF which runs in an AIR app. How should get this working?

    I changed the profile of both to AIR2.0, and it still shows AIR1.0 in the properties panel. I'm able to publish the Panel.swf now but it also generates an unwanted panel-app.xml -- unwanted because panel is not an app, it's merely a SWF to run inside the main app.
    Is there a better way? And why does it still say AIR1.0 in the properties panel?

  • Air in flash

    dear,
    i am a newbie in air and i need to start use it these days ,
    i have flash cs3 pro. and i downloaded this file (
    flashcs3_air_extension_p3_en_121407.exe ) from adobe air and when
    install i got this error ( the updater is unable to locate the
    product to be updated )

    mkayyali,
    You need to install the Flash Player Update for Flash CS3
    before you can install the AIR Update. You can get the standalone
    updater for Flash Player Update for Flash from this URL:
    http://www.adobe.com/support/flash/downloads.html#902
    Thanks,
    San

  • Flash CS3 9.0.124 Players update not working

    I downloaded and followed the instruction for updating the
    players for Flash CS3 so that it publishes 9.0.124 flavours:
    http://www.adobe.com/go/kb403415
    However, when tracing out the Capabilities.version from
    within the Flash IDE (control+enter) it still shows WIN 9,0,115,0
    rather than WIN 9,0,124,0. I'm presuming that the update hasn;t
    worked. Does anyone know if there is some other players directory
    stashed away somewhere that I need to update, or some preferences
    file I need to delete to force flash to use the newly added
    players?
    tech article link
    I'm using windows XP, Flash CS3 9.0.2 with AIR update

    I can't get past this error message in Leopard 10.5.3 or 10.5.4 either.

Maybe you are looking for

  • How do I copy/duplicate a photoshop layer from one document to another document using AppleScript?

    Most likely I don't have the syntax correct. My task is to copy a layer in an existing Photoshop CC document (with a button, for example) to a new photoshop document. Just a simple working example should get me going on the right track. Do I use "dup

  • IPod won't sync because of podcast

    When syncing, iPod/iTunes is saying that it cannot load library because space is taken by podcast. However, no podcasts are selected or exist. Capacity shows "other" taking 80% of space but cannot find what is causing it. Was not an issue until recen

  • File Dialog not appearing in web form after Note:74140.1

    Hello, I have implemented the source given in Note:74140.1 to replace the get_file_name function that displays the file dialog box. However I still am not able to see the dialog that the JavaBean should display. I am relativly new at linking JavaBean

  • License Sharing -  Non-concurrently  - One License on Two Computers

    Here's my situation.. I do some contracting work for an office on Capitol Hill. I have to work onsite due to security protocols, and because this office has limited resources, they have only been able to purchase two Adobe Web suites. They installed

  • Member of a trial?

    I was just looking at BT Vision and debating whether to buy it or not and it said the product is not availbe to me because I am currently a member of a product trial. The only thing happening with my BT account is an order for ADSL2+ which is going t