How to enable sampler in telemetry options at AIR for iOS Settings?

Hi,
I'm just trying the new Flash CC, and a very good feature is to monitor an iOS app using adobe scout.
But when I export an app, in the AIR for iOS Settings, I always see "Enable sampler" option disabled. How can I enable the option?
Thanks.

Hi ,
To enable the sampler option you need to set it in the Publish Settings dialog. Open the Publish Settings Dialog and select the "Enable detailed telemetry" option under the advanced section for the Flash(.swf) option.Now you will find the Telemetry option for enable sampler enabled in the AIR for iOS dialog.
Thanks and Regards,
Sudeshna Sarkar
Adobe Flash Professional Team

Similar Messages

  • How do you include extra files with an AIR for iOS Publish?

    I've seen people mention they can include .html, .js, etc files with their iOS for AIR publish when making an iOS application from flash.
    What I haven't seen is how these people include extra files (html, css, images, videos, etc) to be packaged into the IPA during publish.
    How is this accomplished?

    --deleted--
    Sorry, figured it out.

  • How to make external SWFs garbage collected in Air for iOS?

    My app uses lots of external SWFs( well they are actually included in the app with a folder but they aren't embeded ) and they do not contain any bitmapdata, only vector graphics. The problem I'm having is that they seem to be never garbage collected and System.privateMemory keeps increasing as the app loads more SWFs.
    Since those SWFs only contain vector graphics, I simply nullify all the variables that are holding reference to SWF file and call System.gc().. But it doesn't seem to be working. What would I need to do for the garbage collector to clean the SWFs?
    I'm using Air for iOS 3.5.0.1060 and ActionScript3.0.

    Yes I'm calling System.gc() twice. I tried using loader.unloadAndStop(true) and it seems SWFs are being garbage collected but another problem has surfaced. When repeatedly loading and unloading SWF in a short period, the air garbage collector sometimes fails to work.
    I've tested loading and unloading same SWF 50k times and checked trace.  Occasionally, garbage collector misses to collect garbage like below( swf #45119 is not being garbage collected).
    [UnloadSWF] main.swf/[[DYNAMIC]]/45115
    [UnloadSWF] main.swf/[[DYNAMIC]]/45116
    [UnloadSWF] main.swf/[[DYNAMIC]]/45117
    [UnloadSWF] main.swf/[[DYNAMIC]]/45118
    [UnloadSWF] main.swf/[[DYNAMIC]]/45120
    [UnloadSWF] main.swf/[[DYNAMIC]]/45121

  • AIR for iOS: How can I distribute for only Retina Displays?

    I am nearing completion of an app I have designed for iOS and tested on my iPhone 4. I bought a 2nd gen iPhone so I could test on both screen resolutions (320x480 and 640x960) before discovering AIR for iOS does not support very old iOS devices (I believe the rule is it must be iOS 4+).
    My question is how is distribution handled if the app will not run on these older models? Wouldn't people with a 2nd gen iPhone still have access to an app that I publish via AIR for iOS and then be angry when it is not supported on their device? Has anyone run into this issue?

    AIR 2.5+ requires iPhone 3GS+ to run. It's based on the CPU inside that
    device and newer which includes a NEON SIMD coprocessor - a requirement
    of newer AIR builds on all platforms (newer than PFI/AIR 2.0, which
    shipped with Flash Pro CS5.0).
    There should be a "resolution" drop down in the AIR for iOS Settings
    dialog, if you updated your PFI in CS5.0 or upgraded to CS5.5. You can
    select "High" to get iPhone retina display support. This will not enable
    iPad 3 retina support though.
    Kevin N.
    Edit: I didn't make it clear that the device requirements are set in your app, and enforced by the App Store - users on old devices will never see your AIR apps in their app store, and if they link into the App Store, they'll get an explaination of why they can't install the app (it'll be either the OpenGL ES 2.0 requirement, or the CPU requirement - it's similar to if you try to install an iPad only app on an iPhone). Android actually works the same way - old/cheap ARMv6 device users will not see your ARMv7 requiring app in their Google Play/Marketplace app.

  • How to Enable Auto Update functionality in  adobe AIR application?

    Hi All,
         How to Enable Auto Update functionality in  adobe AIR application and ask for new version to install to user.
         Please provide some informarion regarding above topic.
    Thanks,
    Sunil Rana

    Hi All,,
    Got solution. call checkUpdate() function in application level initialize event.
    private function checkUpdate() : void
                    appUpdater.updateURL = "http://www.aa.com/flex/aa/NativeUpdater.xml";
                    appUpdater.addEventListener(UpdateEvent.INITIALIZED, updater_initializedHandler);
                    //we can hide the dialog asking for permission for checking for a new update;
                    //if you want to see it just leave the default value (or set true).
                    appUpdater.isCheckForUpdateVisible = false;               
                    //we initialize the updater
                    appUpdater.initialize();   
                 * Handler function for updater_initializedHandler events triggered by the ApplicationUpdater.INITIALIZED
                 * @param updater_initializedHandler
                protected function updater_initializedHandler(event:UpdateEvent):void
                    //initializeHandler();
                    appUpdater.checkNow();
    In NativeUpdater.xml
    <?xml version="1.0" encoding="utf-8" ?>
    <update xmlns="http://ns.adobe.com/air/framework/update/description/1.0">
         <version>2.0</version>
          <url>http://www.aa.com/flex/aa/AutoUpdate.air</url>
         <description>
         <![CDATA[                 * This a Win update
          ]]>
          </description>
    </update>
    Upload NativeUpdater.xml file on your Server. When you open your old .air file it will ask for replace with new version.
    Thanks,
    Sunil Rana

  • How to record a time-limited video with Adobe AIR for iOS

    I am trying to record a time-limited video with Adobe AIR for iOS.
    For example, I want to implement the following function. Start a one-minute timer before launching CameraUI to record video. When the timeout event happens after one minute, stop recording video, close the CameraUI view and obtain the video data so far.
      I have several questions related to that.
      1. How to stop recording video from outside the CameraUI view(in this case, from the timeout event handler) and then close the CemeraUI view? As far as I know, to close the CameraUI view, the only way is to press the [Use Video] button or the [Cancel] button from inside the CameraUI view. Is it possible to close it from outside?
      2. Even if the first problem mentioned above is solved, then how can I get the video data so far(in this case, the video data before the timeout). I know that normally we can get a MediaPromise object from MediaEvent parameter of the  complete handler, and read the video data from the MediaPromise object. But obviously in this case, we can not access the MediaPromise object just because the complete handler itself will not be executed since the [Use Video] button is not pressed.
      3. Is it possible to add a stopwatch to show possible remaining recording time when CameraUI view is open? It seems that the CameraUI automatically uses the full screen of iOS device(in my case, iPad) and there is no extra space to show the stopwatch.
      Are there any solutions or workarounds about the three problem above? I really appreciate it if anyone has any idea about this. Thanks in advance.

    You'd have more control by using the Camera object, showing the camera on a video object inside a Sprite, and capturing that. Then you could put whatever graphics alongside it on the stage.. I've used FlashyWrappers in a test to capture the video to the library.  It took some work, but the test worked well...
    Flash/AIR record videos of your apps and games: Rainbow Creatures

  • How to make an air for ios enterprise distribution Flash CS5.5?

    Hi, There seems to be only:
    Quick publishing for device testing
    Quick publishing for device debugging
    Deployment - Ad hoc
    Deploymnet - Apple App Store
    How does one do Deployment for in-house Enterprise Apps from Flash CS5.5 with AIR for iOS?
    Thanks!

    maweibezahn,
    The plist in step 2 is created so you can download the app onto the device.  This file stands alone, and does NOT need to be included in the app package, but it does need to reside in the same spot on the web server.  Below is an example plist file for an app.  You then access the following link from mobile safari to install:
    <a href="itms-services://?action=download-manifest&url=http://www.myserver.com/myAppPlist.plist">Tap Here to Install myApp On Your iPhone</a>
    ----------myAppPlist.plist------------------------------
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>items</key>
              <array>
                                  <dict>
                                            <key>assets</key>
                                            <array>
                                                      <dict>
                                                                <key>kind</key>
                                                                <string>software-package</string>
                                                                <key>url</key>
                                                                <string>http://www.myserver.com/myApp.ipa</string>
                                                      </dict>
                                            </array>
                                            <key>metadata</key>
                                                      <dict>
                                                                <key>bundle-identifier</key>
                                                                <string>com.myServer.myApp</string>
                                                                <key>bundle-version</key>
                                                                <string>1.0.0</string>
                                                                <key>kind</key>
                                                                <string>software</string>
                                                                <key>title</key>
                                                                <string>My App Name</string>
                                                      </dict>
                                  </dict>
              </array>
    </dict>
    </plist>

  • How to embed and launch ipa file from another ipa package created using Air for iOS

    Hi Guys,
    Anybody out there knowing how to embed and launch ipa file from another ipa package created using Air for iOS ?
    I am having 1 ipa file created using Xcode, Now i need to include that file in my ipa Package which is created using Flash CS 5.5 and Air for iOS. Also i need to know how to open my 1st ipa file from AS3 ?
    Thanks,

    Hi Sir,
    Thanks for your reply.
    But in that case user need to download 2 applications right. I need user to download my parent application created using Flash and that package contain one more ipa created using Xcode, so from my parent app only user should able to open my 2nd app. Is there any way to do that?
    Ps:  I am not talking about in-app but 2 individual apps inside one package.

  • How many of the apps on the app store are based on AIR for iOS? raw numbers? as a percentage?

    wondering how apps based on the AIR for iOS platform are doing out there in the "real world"
    thanks

    ur restrictions might have been turned on. how? no clue. but that is normally the only reason default apps are not showing on the homescreen.
    u can reset ur home screen layout and see if that helps, turn off restrictions first of course.
    my suggestion... however, is to just reset all settings to get everything at once so to speak. there might have been other settings that were changed on ur ipad that u havnt noticed yet. the reset all settings would get those back to factory default as well.
    to get to those settings
    restrictions: settings>general>restrictions
    reset home screen layout: settings>general>reset>reset homescreen layout
    reset all settings: settings>general>reset>reset all settings

  • How to enable send e-mail option through browser window

    Hi all,
    i need to configure browser enabled e-mail sending option in my sharepoint 2013 site , here is my requirements.....
    From Address  : Default do not reply e-mail address
    To Address : Default my E-mail address
    Subject Line - Here is subject line
    Body  - here i need to enter my message
    want to add attachments if possible ,
    i have all this options using infopath form , but i need this in browser window ...
    am using below code for send through outlook , but i need this with browser enabled and adding default from and to address ...
    please help me with this ASAP.
    Thanks,
    Mani L
    Mani L

    Hi Mani,
    The A tag using the MailTo: can only work with a client mail program. There's no way to send an e-mail from the server using it.
    You can specify Subject and Body texts within the A tag, but you cannot specify the from and to addresses.
    In order to send e-mail from the server, you'd need to use either an app-part or custom web part. I don't think you can do it through CSOM.
    Paul.
    EDIT: It looks like you can do it through C# CSOM, but that would require an AppPart. I can't see SendEmail in any of the JavaScript based CSOM files.
    http://msdn.microsoft.com/en-us/library/office/microsoft.sharepoint.client.utilities.utility.sendemail(v=office.15).aspx
    Please ensure that you mark a question as Answered once you receive a satisfactory response. This helps people in future when searching and helps prevent the same questions being asked multiple times.

  • How to - enable - multi touch - in windows 7 ultimate - for my G560 touchpad

         I and my friend have the lenovo G560 laptops. I am running windows 7 ultimate and my friend is running ubuntu 11.04 OS in our laptops.
    In Ubuntu: The multi touch is enabled by default for the laptop touch-pad. For vertical scrolling, we can use two fingers to navigate.
    In Windows 7 Ultimate: I don't know how to enable this multi-touch feature.
    Your help is very much appreciated.
    Thanks in advance.

    control panel > hardware and sound > mouse > mouse properties > device settings > settings ( if you have synaptic mouse )
    if you don't synaptic, check the mouse properties to enable/disable the features you'd like to.

  • How to enable the multitasking gestures on ipod touch 4g ios 5..

    how to enable the multitasking gestures on ipod touch 4g and i already running on ios 5.. i search the settings but still i cant find it... they say that the multitasking gesture is in the ios 5.. help plz......

    The multitasking gestures for iOS 5 are oly for the iPad 2 and maybe the iPhone 4S.

  • How to add Google Ads or similar in "AIR for Android" application?

    Hello,
    I have developed my android application (AIR for Android) in Flash Professional CS5.5. It's completed and fully tested on multiple android phones. Now I want to add Google Ads in my application to make some money.
    What I already know:
    I know that Adobe provides AdMob native extension API which allows you to add Google Ads in your app. But unfortunately, it's not free.
    What I want:
    I want a free resource through which I can add ads in my application.
    Please guide me how can I achieve this?
    Thanks in advance,
    momersaleem

    Yes, its for me broken, too.
    I found the link in this thread:
    http://forums.adobe.com/message/4036804
    Maybe try to contact the author or one of the thread participants for an unbroken version?

  • How to change font size and style in keynote for ios

    How to change font size and style in keynote for ios

    Same situation for report parameter input value font. What ever we do , it is still Arial and size 10.

  • How do I find and older version of instagram for iOS 6.1.6

    How do I find and older version of instagram for 4th generation touch iOS 6.1.6?

    In iTunes on your computer, download the App you want a compatible version for using the same Apple Id that the iPod has for the App Store. For Paid Apps its best to consult with the App maker to make sure there is a compatible App. With the App Downloaded to iTunes on a computer you can go into The App Store App on your iPod, Tap on Purchased, and Look for the App there. Tap on it to begin the download. It will likely say its not compatible, but if there is a compatible version it will offer to download it.
    Install the latest compatible version of an app on an earlier version of iOS or OS X - Apple Support

Maybe you are looking for

  • Two Hard Drives, One Machine ...?

    Along the same lines as this topic ... http://discussions.apple.com/thread.jspa?threadID=1304890 ... If I were to do this on the new MacBook Pros, what would one suggest to use for a hard drive? Also, if there is no firewire on the new MacBook Pros,

  • Help. Upgraded to CC from CS6 and need to upgrade all my droplets. Mac OSX Mavericks

    Hi All, I have just upgraded to CC and now my droplets do not work. Any Ideas how to upgrade them? I have tried to drag them onto the CC icon but the file is deemed unrecognisable? Cheers Simon

  • Problem with customers reading .pdf e-book

    Hello, I've been sending out test versions of my ebook and a lot of people can't read them. It seems that they need the most recent version of Adobe Reader.      I have Adobe Reader 9. Has anyone else come across this problem? Do you include a link f

  • Problem with new subcontracting code

    Hi, We are trying to create a logistics order for new material code.  I have created a BoM for the code at plant 3237 which is the dummy plant we use to manage the basesheet.  However, the logistics order does not pull in the basesheet as a material

  • Reg. Control indicators for controlling area NCCP do not exist

    Dear Experts I want to create purchase requisition (ME51N) then the following error occured. Pls help me. Control indicators for controlling area NCCP do not exist Message no. KI102 Diagnosis No control indicators exist in fiscal year 2008 for contro