Multicast with Air

Hello

From:

http://forums.Adobe.com/message/2423240#2423240

It was said:

Remember that you'll need FP10.1 beta * and * the playerglobal.swc accompanying to compile with the Flex SDK.

-mike

I've got multicast works with FP 10.1 in accordance with the instructions.

My question is;  What is required to compile multicast AIR?

Flex 4?

AIR 2?

Stratus special airglobal.swc?

See you soon,.

Arnie

I think that you need just to AIR 2 SDK.  that should give you access to all the new APIs.

-mike

Tags: Adobe

Similar Questions

  • apple mouse is bluetoothed with air of the ipad 2

    apple mouse is bluetoothed with air of the ipad 2

    N ° the iPad is not programmed to have a cursor.

  • Cisco WLC 2504 with AIR-AP1131AG-A-K9

    Hello

    Can you help me for some info about AIR-AP1131AG-A-K9.

    I have a wlc 2504, but I don't know if the AIR-AP1131AG-A-K9-supported 2504 wlc.

    Can work this WLC 2504 with AIR-AP1131AG-A-K9 solution?

    If so, guide.

    Thank you very much

    Gezimv

    Check out this link. As long as you have software version 8.0.x 2504 version you can use 1131 AP with it. Nothing beyond software fate is more a series of support 1131.

    http://www.Cisco.com/c/en/us/TD/docs/wireless/compatibility/matrix/compatibility-matrix.html#56735

    HTH

    Rasika

    Pls note all useful responses *.

  • Android: Maintain 2 builds with Air 19 and 22 air

    Hi all

    I want to update our games with a 22 Air version so that all users will be able to play with N installed Android. At the same time, we would continue to support Android 2.x with Air 19.

    I've done that I have created a version of our application with the code with Air 22 x.x.20 version and a version with Air 19 x.x.10. My expectation was that Google would send all users with Android 4 or more recent version Air 22 and all users with the version of Android 2.x 19 Air. However, when I download the version x.x.10 of Google game I get the error message: all configurations that could receive x.x.10 receive x.x.20 instead. Which means that play Google does not identify the accumulation of Air 22 as incompatible on Android 2.x, is that correct?

    What needs to be done to support both versions?

    Thank you in advance.

    rewb0rn wrote:

    I should the minSdkVersion 14 for Android 4 value and more, correct?

    Yes, this should make the build, only available for devices running Android 4 +.

    rewb0rn wrote:

    But more important still, how do I find what targetSdkVersion is supported by the current Air SDK?

    I don't know if this is documented somewhere, however, I remember having seen devs problems AIR when you explicitly set the value of targetSdkVersion at 23. They ended by assigning the value 19. See this link for more information. I don't know if this problem is fixed in AIR SDK 22. You should not need to 23 but in order to make it work on Android 6 +.

  • DONKEY with AIR 22 update no longer works

    Hello

    I have a DONKEY simple that file sharing.

    It was built with AIR 19.0 and Xcode 6.1.

    I want to update AIR 22, but you have successfully updated the iOS SDK, I have installed XCode 7.3, base SDK is 9.3 iOS and iOS deployment target is iOS 9.0.

    I have a platform.xml like that.

    <sdkVersion>9.0.0</sdkVersion>
        <linkerOptions>
            <option>-framework AudioToolbox</option>
            <option>-framework AVFoundation</option>
            <option>-framework CFNetwork</option>
            <option>-framework CoreFoundation</option>
            <option>-framework CoreGraphics</option>
            <option>-framework CoreLocation</option>
            <option>-framework CoreMedia</option>
            <option>-framework CoreVideo</option>
            <option>-framework Foundation</option>
            <option>-framework MobileCoreServices</option>
            <option>-framework OpenGLES</option>
            <option>-framework QuartzCore</option>
            <option>-framework Security</option>
            <option>-framework SystemConfiguration</option>
            <option>-framework UIKit</option>
            <option>-framework ImageIO</option>
            <option>-framework CoreTelephony</option>
        </linkerOptions>
    

    My code to share a file is, in objective-C, where the variable URL is a URL, the path to a local file

    @try {
       
                UIViewController * controler = [[[[UIApplication sharedApplication] windows] objectAtIndex:0] rootViewController];
               
                UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:@[URL] applicationActivities:nil];
                //activityVC.excludedActivityTypes = @[UIActivityTypePrint, UIActivityTypeCopyToPasteboard, UIActivityTypeAssignToContact, UIActivityTypeSaveToCameraRoll]; //or whichever you don't need
               
               
                UIPopoverController *popup = [[UIPopoverController alloc] initWithContentViewController:activityVC];
                [popup presentPopoverFromRect:CGRectMake(0,0,0,0) inView:controler.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
            }
            @catch (NSException *exception) {
                DISPATCH_STATUS_EVENT(context,"DEBUG_TRACE", (const uint8_t*) [exception.reason UTF8String]);
            }
    

    I have this error in execution: *-[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil objects [0] object

    UIPopoverController is obsolete now, I triied to update my code, as a result of this http://www.goxuni.com/672368-adding-a-share-button-to-an-objective-c-ios-app/

    And the result is:

    @try {
                UIViewController * controler = [[[[UIApplication sharedApplication] windows] objectAtIndex:0] rootViewController];
                
                
                NSArray *activityItems = @[URL];
                UIActivityViewController *activityViewControntroller = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil];
                activityViewControntroller.excludedActivityTypes = @[];
                
                activityViewControntroller.modalPresentationStyle = UIModalPresentationFullScreen;
                if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
                {
                    activityViewControntroller.popoverPresentationController.sourceView = controler.view;
                    activityViewControntroller.popoverPresentationController.sourceRect = CGRectMake(controler.view.bounds.size.width/2, controler.view.bounds.size.height/4, 0, 0);
                }
                [controler.self presentViewController:activityViewControntroller animated:true completion:nil];
                
            }
            @catch (NSException *exception) {
                DISPATCH_STATUS_EVENT(context,"DEBUG_TRACE", (const uint8_t*) [exception.reason UTF8String]);
            }
    

    The error is the same: *-[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil objects [0] object

    I really don't understand why it worked before, and now with new AIR SDK, Xcode new and new iOS SDK, it does not work.

    That's Ok with the last AIR 22 SDK

    Bug #4146925 - ANE compiled with AIR 22 no longer works

  • portrait iPad with AIR problems

    Hello

    I need to develop an app for ipad, with portrait orientation. I set the resolution 768 x 1024 BUT publishing for AIR, I can't resize the stage, I can't see the bottom of the screen on my Mac book pro 13 "RETINA!

    Schermata 2015-10-12 alle 07.59.44.png

    usually, when I develop for SWF, I can stretch and resize the window, but I can't do it with AIR.

    ANY HELP?

    Massimo

    Select "full screen" in the air from the ios settings panel.

  • How can I replace my app on iTunes Connect with a new version with air for iOS and app Loader?, how do I replace my app on iTunes Connect with a new version with AIR for iOS and the Application Loader?

    How can I replace my app on iTunes Connect with a new version with air for iOS and app Loader?, how do I replace my app on iTunes Connect with a new version with AIR for iOS and the Application Loader? I got an error that the version number needs to be updated. I created a new record in iTunes Connect with version 1.1 and I took ownership of my current app 1.1 in air for iOS section in Flash.

    Check your descriptor file to make sure that it shows the updated version, too.

  • Very strange bug with AIR and native process (Windows 7, EXE)

    Hi all!

    The situation is:

    I did an Application AIR, inside which a native process - running EXE file.

    I use Flash CC as IDE and tried to use the compilation as EXE with AIR 2.6 and 3.6 - results are the same.

    So I insert inside a control if the nativeprocess is supported or not and the native process is supported all the time.

    When I come to install the application and run it - the first attempt is good - everything works as a must: internal EXE is called by my Application with the necessary parameters so long I need.

    However if I close the application, then if it run not new - internal EXE is not starting at all, depends on number of attempts to restart the application.

    Then only is to uninstall, install back and then you'll be a session more successful EXE-internal requests, until the forthcoming resumption of the application.

    That's all.

    I tried to "google it" but without success. The bug is probably very rare.

    Help me please?

    Update: compiling with the Flash IDE of CC, he works all the time with no problems.

    Update-2: when I run EXE installator, there will be a notification "same version is installed, etc.', then choose 'Run Now' - he also works without any problem.

    Well, I found the solution and the answer by myself and it is here please:

    In the case with the same situation above, you will need to add a single line in your AS3 code

    nativeProcessStartupInfo.workingDirectory = File.applicationDirectory;

    And you will be so happy

  • With Air 3.4 for IOS, how iPhone 5 are they treated?

    I've developed an application with Air 3.4 for IOS and it seems that the iPhone 5 automatically centers the application using the settings of the iPhone 4 960 x 640, rather than 1136 x 640. Is this correct? I have full-screen enabled in the settings of my 3.4 Air.

    If you include the splash [email protected] image, which would be a 640 x 1136 (your boot of landscape image rotates 90 degrees), it is enough for the iPhone 5 knowledge to fill the entire screen.

    However, if you have downloaded the app to iTunesConnect then, it would probably fail. This is because the standard AIR 3.4 ADT.jar file does not use iOS SDK 6.0. You can move using AIR 3.5 (http://www.adobe.com/devnet/air/air-sdk-download.html), or by getting the patched the ADT.jar file version (see this thread: http://forums.adobe.com/thread/1073656, in particular the "correct" answer upward).

    Once you have built with either 3.5 air, or used the ADT.jar of AIR 3.4 patched version, and you have the picture of [email protected] included, everything should be good.

  • Compatible devices with air?

    Hello

    I saw a table of supported devices in the center of development, with air, but it does not any iOS device, just Android, apple is not on the list. ALL iOS devices are compatible? or just some versions?

    Thank you!

    The requirements for AIR on iOS are

    iPod Touch 4th generation, iPhone 3GS or 4, iPad

    OS 4 or later version

  • Large (or really good... or even just good) games developed with air?

    Someone at - it links, articles or video clips, games, or applications developed in the AIR? Apps only I was able to find coverage of

    are those created by Bowler Hat games. They are perfectly respectable, but I'm curious to see what others have managed to do with air.

    This thread has some http://forums.adobe.com/thread/894327?tstart=30 examples

    Maybe the guys at Adobe should put a gallery or something together?

  • Writing xml config with AIR

    Greetings!

    I know that this is possible. I can't think of a way to do that is very smooth, however. For the application, the user will enter data that will be stored in a config file to another Java application that is waiting for the file to be created (both on the same machine with air). Can someone tell me a simple example?

    The config itself is big enough and I'll probably use several viewstats to get all the information. Any help or advice are appricated!

    Build your user interface XML object and then write with the AIR API file wrigin.

  • IPencil works with air more old Ipad?

    I have and older IPad and I wanted to get the pencil. He says he and the apps like 53 Studio and Notes?

    Because its designed to work with the iPad Pro only because its something to do with the new technology of touch screen on the iPad Pro, no it can't be used with iPad Air sorry

  • Should libraries created for use with AIR I sign?

    Do libraries created with the NDK to use for AIR through the Native extension need to sign?

    You can use the current tools and FB 4.5.1 to create some ANEs.  We don't have yet any documentation or tutorials available for it.

  • Newbie: faced with AIR-LAP1242

    I bought an AIR-LAP1242AG-E-K9 cisco and I can't do a thing with it. I have an another cisco AP which is an AIR-AP1242AG-E-K9 and who has a web interface and the CLI commands work. What does the 'L' in real terms? I know it is a synonym of light but I put an ip address in the LAP1242 but I can't no matter what web interface to the top and I just want to use the device as a wireless access point network have I bought a lemon?

    Tony,

    the 'L' does indeed stand for light; This means that, in order for this access point to the function must be connected to a Cisco of Lan controller (WLC) wireless. In light mode all the configuration is done on the WLC, AP is a bit like a dumb terminal. If your AP behaves exactly as it should be, as there is no web interface.  If you want to use this AP as your existing one, you need to convert to IOS and put an autonomous access point.

    To do this you will need and IOS Image for this AP, a TFTP server and follow the instructions in this link

    http://www.Cisco.com/en/us/docs/wireless/access_point/1240/installation/guide/124h_c3.html#wp1038660

    I hope this helps... Feel free to write it down.

    Thank you

    Kayle

Maybe you are looking for

  • HP LaserJet M1536dnf MFP stores the faxes to be sent the

    The company that I work has two HP LaserJet M1536dnf MFP Copier/printers-faxes. They are configured as basically the same that each related to its own line of ananlog fax. One of the machines is a continuous problem where it starts to store faxes ins

  • What does 'sync' in WIndows Mail?

    Why is Windows 8 so totally devoid of definitions of words and completely opposite of the user friendly?

  • How to save custom presets formats to export for the screens?

    After that I made "to export to the screen" (Alt + Ctrl + E), in the tab of the artboard, I add a few formats customized to the list, with the right scale, suffix and the Format.Can I save this new list somewhere / somehow to use in other projects of

  • Disable the shortcut of layers of Cycle?

    I have been using Photoshop for a while now with my Wacom Intuos 5 and ask If there is a way to disable the shortcut for the layers of cycling (Opt + []).I have my pen put in place for where the front button Opt for quick color sampling and I use the

  • Local primary key on reference partitioned Table

    Oracle running on Red Hat Linux Rel6 11.2.0.3.I'm on a closed network, so the following must be typed manually.I have a table of documents which is essentially the following:(entire annual <-primary key)whole Source_ID,load_dt date,date of doc_dt,doc