Windows AIR application hang

Hi.
We've been testeing out our app on a few machines.  It uses some native code, so it was exported as an exe installer from flash builder.  We've installed it on a handful of machines successfully, but ran into a problem today.  The installer hangs and doesn't come back.  Below is the Install.log from the hang:
[2011-05-31:19:49:56] Bootstrapper begin (Win:version 2.0.2.12610)
[2011-05-31:19:49:57] Installed runtime located (2.6.0.19140)
[2011-05-31:19:49:57] Launching application installer: "Adobe AIR Application Installer.exe" "C:\Users\SUDHIR~1\LOCALS~1\Temp\AIR637.tmp\Secure Documents"
[2011-05-31:19:49:58] Application Installer begin with version 2.6.0.19140 on Windows 7 x86
[2011-05-31:19:49:58] Commandline is: "C:\Users\SUDHIR~1\LOCALS~1\Temp\AIR637.tmp\Secure Documents"
[2011-05-31:19:49:58] Installed runtime (2.6.0.19140) located at C:\Program Files\Common Files\Adobe AIR
[2011-05-31:19:49:59] Validating app in folder C:\Users\SUDHIR~1\LOCALS~1\Temp\AIR637.tmp\Secure Documents
[2011-05-31:19:50:01] Application signature verified [2011-05-31:19:50:01] Unpackaging/validation complete
[2011-05-31:19:50:01] No app located for appID 'SecureDocuments' and pubID ''
and it stays here forever.
Here is the next line that should happen (taken from a machine where the installer completed successfully)
[2011-05-31:09:15:30] Starting app installation to C:\Program Files. Installing app SecureDocuments version 0.80 using the source file at file:///C:/Users/TYSONG~1/AppData/Local/Temp/AIRCCB4.tmp/Secure%20Documents
So it appears that the installer isn't really even starting.  We also tried installing and uninstalling air 2.6 before running the installer.  No go.
Any ideas?
Thanks much.

Forgot to mention that when running in win 2000, it seems that there are many exceptions caught by ODP (probably) and are not propagated to my code.
I know this because we are using perfmon to monitor the number of exceptions.

Similar Messages

  • Multi Window AIR Application - How to Call

    Hi All,
    I am new to Adobe AIR so please forgive my ignorance. I want
    to create a multi-window air flex application. The scenario is like
    I have a window with menu options. When user selects a menu option,
    I have to open another window with corresponding application in it.
    I have created two applications inside a flex project. Each
    application has <mx:WindowedApplication> as its root
    component. My question is how to call the 2nd application from the
    1st one? I tried SWFLoader but does not seem to work. Any help is
    creatly appreciated.

    You only want a single WindowedApplication component in an
    AIR application. For the other windows, use the Window component.
    You can then create this window object in response to the user's
    menu selection. See
    http://www.adobe.com/devnet/air/flex/quickstart/launching_windows.html
    for examples of opening windows.

  • How to Add Input Values into a XML in Flex AIR Application

    I need a help, now I am developing a flex windows AIR application, in this I am displaying data using a xml file,
    I have some input fields in my application,if the application user filled the input field and press submit button, the inputs
    Should be stored in that xml. How can I do this using flex, can you  anyone please provide me a sample file with tutorial.
    Thanks in advance
    Vasanth,
    Chennai

    You can use the "+" operator which is both the addition (number) and concatenation (string) operator. JavaScript makes the decision about how this operator will work by the type of the value of being processed. Two numbers JavaScript performs addition, character string and number, number and character string, or 2 character strings then concatenation.
    If you just use the '+' operator and spaces, you will get extra spaces unless you add code to allow for null fields and adjusting the spacing or other punctuation as needed. You may also need to force numeric values to character stings or you might end up with an addition and not concatenation.
    Adobe provided a example of a funciton to properly join 3 fields with full versions of Acrobat:
    function fillin(s1, s2, s3, sep) {
      // Concatenate 3 strings with separators where needed
      // convert passed strings to a string value
      s1 = s1.toString();
      s2 = s2.toString();
      s3 = s3.toString();
      // assign a numeric value for presence of a given string(s)
      var test = 0; // no passed strings
      if (s1 != "") test += 1; // s1 has a value
      if (s2 != "") test += 2; // s2 has a value
      if (s3 != "") test += 4; // s3 has a value
      // return appropriate combination based on passed strings
      if (test == 0) return ""; // no stings passed
      if (test == 1) return s1; // s1 only
      if (test == 2) return s2; // s2 only
      if (test == 3) return s1 + sep + s2; // s1 and s2
      if (test == 4) return s3; // s3 only
      if (test == 5) return s1 + sep + s3; // s1 and s3
      if (test == 6) return s2 + sep + s3; // s2 and s3
      if (test == 7) return s1 + sep + s2 + sep + s3; // s1, s2, and s3

  • FLV Playback and Seekbar on different native windows in one Air application

    Hello Everyone.  I'm trying to make a simple video playback AIR application that utilizes the initial native window to house a transport control with a seekbar on it.  Once the application launches, it creates a second (new) window on my second screen and places a FLVPlayback instance on that new window.  Everything works just like it want it to except for one thing.  When the seekbar and FLVplayback instance are not located on the same window stage, the seekbar handle sticks to the mouse when trying to scrub through the video.
    I've added both the transport control and the FLVPlayback instance to the original native window as children and I have also added both of them to the new window as children and everything works just fine.  It's only when they are separated and located on different stages that the seekbar acts up.  When they are on the same stage, I can click on a point on the seekbar and the video jumps to that spot and continues to play and I can also scrub the seekbar, the video updates as I scrub, and when I release the mouse, the seekbar handle stays where I released the mouse.  When they on separate stages, the seekbar handle continues to follow the mouse movement without releasing it.  The video updates as the seekbar handle is moved due to it sticking to the mouse, but if I release the mouse, the handle is still moving with the mouse and the video is still being scrubbed.  Like I said, everything works great except for this and I have reached my limit with time spent on this issue.  Does anyone have any insight into this?
    Here's my code for the project.  This is my first AIR application, so I am coding it as I am learning, please be kind.
    import fl.video.*;
    import flash.display.*;
    import flash.desktop.*;
    import flash.events.*;
    import fl.video.MetadataEvent;
    import flash.geom.*;
    import flash.ui.Mouse;
    import flash.text.*;
    GLOBAL SETUP
    var flvControl:FLVPlayback;
    var MasterWindow = stage.nativeWindow;
    var screen1:Screen = Screen.screens[0];
    var screen2:Screen = Screen.screens[1];
    MASTER WINDOW SETUP
    this.loaderInfo.addEventListener(Event.COMPLETE,maximize);
    transControl.playPauseButt2.addEventListener(MouseEvent.CLICK, PlayButton);
    if (Screen.screens.length > 1){
              createVideoBKG();
              createVideoPlayer();
    GENERAL FUNCTIONS
    //Maximize the initial screen
    function maximize(e:Event) {
              MasterWindow.x = screen1.bounds.left
              MasterWindow.maximize();
              MasterWindow.stage.scaleMode = StageScaleMode.EXACT_FIT;
    //Hide Mouse Behind Video Window On Roll-Over
    function MouseRollOver(e:MouseEvent):void
              {          Mouse.hide()          }
    function MouseRollOut(e:MouseEvent):void
              {          Mouse.show()          }
    //Play-Pause Button Control
    function PlayButton(event:MouseEvent):void
                        if(transControl.playPauseButt2.currentFrame==1 ){
                                  transControl.playPauseButt2.gotoAndPlay(2);
                                  flvControl.play();
                        else {
                                  transControl.playPauseButt2.gotoAndPlay(1);
                                  flvControl.pause();
    function CloseWindow(e:MouseEvent):void
                        NativeApplication.nativeApplication.openedWindows[2].close();
    VIDEO BKG SETUP
    function createVideoBKG(e:Event = null):void{
              var newOptions:NativeWindowInitOptions = new NativeWindowInitOptions();
              newOptions.type = NativeWindowType.LIGHTWEIGHT;
              newOptions.systemChrome = NativeWindowSystemChrome.NONE;
              newOptions.transparent = true;
              var videoBKG:NativeWindow = new NativeWindow(newOptions);
              if (Screen.screens.length > 1){
                        videoBKG.x = screen2.bounds.left;
              videoBKG.maximize();
              chromeSetup(videoBKG);
              videoBKG.activate();
    //Video BKG Chrome Setup
    function chromeSetup(currentWindow):void {
              var vidBKG = new video_bkg();
              vidBKG.name = "video_bkg2";
              vidBKG.addEventListener(MouseEvent.ROLL_OVER, MouseRollOver);
              vidBKG.addEventListener(MouseEvent.ROLL_OUT, MouseRollOut);
              currentWindow.stage.addChild(vidBKG);
    VIDEO Player SETUP
    function createVideoPlayer(e:Event = null):void{
              var newOptions:NativeWindowInitOptions = new NativeWindowInitOptions();
              newOptions.type = NativeWindowType.LIGHTWEIGHT;
              newOptions.systemChrome = NativeWindowSystemChrome.NONE;
              newOptions.transparent = true;
              var videoPlayer:NativeWindow = new NativeWindow(newOptions);
              if (Screen.screens.length > 1){
                        videoPlayer.x = screen2.bounds.left;
                        videoPlayer.y = screen2.bounds.top;
                        videoPlayer.width = screen2.bounds.width;
                        videoPlayer.height = screen2.bounds.height;
                        videoPlayer.stage.scaleMode = StageScaleMode.NO_SCALE;
              videoPlayer.alwaysInFront = true;
              var DVR = new DVR_Player();
              DVR.name = "DVR";
              DVR.x = 0;
              DVR.y = 0;
              DVR.addEventListener(MouseEvent.ROLL_OVER, MouseRollOver);
              DVR.addEventListener(MouseEvent.ROLL_OUT, MouseRollOut);
              videoPlayer.stage.addChild(DVR);
                flvControl = DVR.display2;
              flvControl.width = 1280;
              flvControl.height = 720;
              flvControl.skin = null;
              flvControl.autoPlay=false;   
              flvControl.isLive=false;
              flvControl.fullScreenTakeOver = false;
              flvControl.align = VideoAlign.CENTER;
              flvControl.scaleMode = VideoScaleMode.NO_SCALE;
              flvControl.source = "olympics.f4v";
              flvControl.seekBar = transControl.seekbarContainer2.seeker;
              videoPlayer.activate();

    Does anyone have any ideas about this?

  • Incorrect functionality of Embedded tag in html page, displaying object on top of all layers of Adobe air application native window

    Title
    Incorrect functionality of embed tag in html loader for adobe air development
    Description
    Problem Description: If we had loaded youtube.com video url in a view stack and navigate to other index of stack or away from we UI screen within the same native window video or embeded tag of flash player or any other embed object will be displayed on top of all screens layer in same position of where the object should be placed in side of html loader only.
    Steps to Reproduce:
    1) go to http://get.straweb.com/StraWebBrowser/StraWebBrowser.air download and install
    2) load 2 tabs and in the 3 tab load video player of youtube.com which will a sample video
    before completing the load of 3 tab which trying to load video from youtube.com, navigate to other tabs 1 or 2 in few second once the flash player of youtube.com video player is load it will display in the current tab or UI screen.
    3) Try navigating to other tabs than youtube.com loaded tab you see the flash player is on top it stable.
    4) navigate to 3 tab and try to navigate to other tab you can observe that so how it will not show that flash player and only visible in that 3 tab which is fine.
    Actual Result: Embedded tag of html page displaying on top of all layers of Adobe air application native window
    Expected Result: Embedded tag of html page should only displayed in side htmlloader
    This you can replicate in any adobe air plugin update and on any Hardware and Environment.
    Applicable to all sdk versions of adobe air.

    Adobe Bugbase: Bug 3823839 Incorrect functionality of embed tag in html loader for adobe air development

  • AIR application crashes at certain point in windows vista

    Hi Dudes,
    I am facing a problem in Window vista. It always crash when we open the window component using Adobe AIR. I am creating the Dynamic window and adding the child component as window.rawChildren.addChild(object) like this.. we made the setup , it is running perfect in all OS except Windows vista 32/64 bit.
    When we work with our AIR application in conjunction with our own h/w product(Tablet Driver).[without connection of Tablet slate with PC it works fine but with it not].
    S/w Details:- AIR Installer above 2 and SDK above 2.
    OS- Win-Vista 32/64 bit.
    AIR application crashes at certain point and shows the error like:-
    Problem signature:
      Problem Event Name:                        APPCRASH
      Application Name:                             GTMP.exe
      Application Version:                           0.0.0.0
      Application Timestamp:                     4bde2f02
      Fault Module Name:                          Adobe AIR.dll
      Fault Module Version:                        3.1.0.4880
      Fault Module Timestamp:                  4eb760e8
      Exception Code:                                  c0000005
      Exception Offset:                                003ca9be
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             2057
      Additional Information 1:                  0a9e
      Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:                  0a9e
      Additional Information 4:                  0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
    I found one more error in debugging mode..the Alert message is
    Microsoft Visual C++ Runtime Library
    R6025 -
    pure virtual function Call.
    As per my view it is about some .dll and .CPL file makes some issues with AIR Frameworks is it? !!!!..
    Please give some ideas to resolve it.
    by
    Beerahamedkhan

    Could you try this against the released 3.2 version of AIR and our 3.3 beta to see if it still occurs?  If so, please open a new bug report on this over at bugbase.adobe.com?  Include any sample code or application to help us easily reproduce the problem.  If you'd like to keep your code private, please feel free to send it to me directly at [email protected]  In addition, if you can give us a .dmp of this crash it could be very helpful. 
    Please post back with the URL so that others affected can add their comments and votes.

  • Is there a pratical size limit for an Air application window?

    I'm brand new to creating Air applications. I started to design a utility in Flash CS4 for my own use. I had originally intended for it to be a simple SWF, but decided to make an Air app as an experiment, and to perhaps share it with others in the future.
    Basically, the application allows the use to drag-resize a box to measure the pixel dimensions of an area onscreen (photo, Windows window, etc.) I wanted to allow it to be resized to any dimensions up to the size of the screen. The chrome is custom and mostly transparent with some alpha for the box to overlay on whatever you're measuring. However, I've run into a few problems, the primary one being that I cannot set the app to run maximized to the screen size and allow any graphics to extend beyond the dimensions of the stage in the source FLA (it all gets clipped at the edges of the stage). I decided to forget about this and just set a maximum size of the stage. So, what was originally a box that you could stretch out to any dimensions, can now only be resized to the upper limit I set (preferrably 1600px X 900px).
    Annoyingly, I've found that any stage size in the source FLA beyond 1500px X 850px causes the Air app to respond very slowly. At sizes below that, the app responds very quickly, as if it were a windowed SWF. My question is, is there a practical upper limit to the size of an Air app window? I mean, if I have an Air app with a window size of 1500px X 850px that can be resized without any perceived lag, why does the window resizing slow down so dramatically by just increasing those dimensions by 1px?

    These factors that determine the minimum and maximum width and height of a window:
    The minimum and maximum operating system limits, which are the values of the systemMinSize and systemMaxSize properties of the        NativeWindow object
    The maximum width and height of a window in Adobe AIR, which are each 2880 pixels
    The minimum width and height required by any displayed system chrome
    The minSize and maxSize properties of the NativeWindow object
    I cannot address the performance problems you are experiencing. I hope someone else can comment.

  • How to create a popup window to load HTML page in AIR application without using any mx or spark?

    How to create a popup window to load HTML page in AIR application without using any mx or spark components?
    I need to load the HTML page in popup in AIR application without using any of the <mx> or <spark> components. I need to open in the application itself not in the browser.(If we use navigateToURL() it will open in th browser)

    Can we achieve this? can somebody help me on this scenario..

  • Adobe Air Application only works using Super Administrator account on Windows XP

    Good day
    i really need some help. I developed air application that uses remote service, sql lite etc. It is working on my computer WIndows XP sp2. To test, i even created a guest account and it works fine. But when i deployed it to our client, the application doest work. Only the login page appears. I ask the it personnel there and ask if there are any restriction on the account of the user and said there is none because they are using Domain account. But when the super administrator is logged in, it works
    Your help will greatly apprciated

    Your help me, I iwill greatly apprciated
    HELP MALAYSIA
    Date: Thu, 21 Oct 2010 20:54:19 -0600
    From: [email protected]
    To: [email protected]
    Subject: Adobe Air Application only works using Super Administrator account on Windows XP
    Good day
    i really need some help. I developed air application that uses remote service, sql lite etc. It is working on my computer WIndows XP sp2. To test, i even created a guest account and it works fine. But when i deployed it to our client, the application doest work. Only the login page appears. I ask the it personnel there and ask if there are any restriction on the account of the user and said there is none because they are using Domain account. But when the super administrator is logged in, it works
    Your help will greatly apprciated
    >

  • Windows 7: air application doesn't installing

    Windows 7 Home Premium
    Install log:
    [2014-01-26:13:56:19] Bootstrapper begin with version 3.8.0.870 on Win x86
    [2014-01-26:13:56:19] Installed runtime (3.9.0.1380) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2014-01-26:13:56:19] Launching subprocess with commandline "Adobe AIR Application Installer.exe" "C:\Users\4CFA~1\AppData\Local\Temp\AIR550B.tmp\DirectCommander"
    [2014-01-26:13:56:19] Subprocess Application Installer succeeded
    [2014-01-26:13:56:19] Bootstrapper end with exit code 0
    [2014-01-26:14:08:37] Bootstrapper begin with version 3.8.0.870 on Win x86
    [2014-01-26:14:08:37] Installed runtime (3.9.0.1380) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2014-01-26:14:08:37] Launching subprocess with commandline "Adobe AIR Application Installer.exe" "C:\Users\4CFA~1\AppData\Local\Temp\AIR9C86.tmp\DirectCommander"
    [2014-01-26:14:08:37] Subprocess Application Installer succeeded
    [2014-01-26:14:08:37] Bootstrapper end with exit code 0
    Installer started and nothing is going.

    Same problem...
    Log from most computer's:
    [2014-05-29:13:45:24] Bootstrapper begin with version 2.6.0.19120 on Win x86
    [2014-05-29:13:45:24] Installed runtime (3.3.0.3670) located at c:\Program Files\Common Files\Adobe AIR
    [2014-05-29:13:45:24] Launching subprocess with commandline "Adobe AIR Application Installer.exe" -silent -eulaAccepted -desktopShortcut -location "C:\MyApp" "C:\Windows\TEMP\AIR48D6.tmp\myapp"
    [2014-05-29:13:45:24] Application Installer begin with version 3.3.0.3670 on Windows 7 x86
    [2014-05-29:13:45:24] Commandline is: -silent -eulaAccepted -desktopShortcut -location C:\MyApp C:\Windows\TEMP\AIR48D6.tmp\myapp
    [2014-05-29:13:45:24] Installed runtime (3.3.0.3670) located at c:\Program Files\Common Files\Adobe AIR
    [2014-05-29:13:45:25] Validating app in folder C:\Windows\TEMP\AIR48D6.tmp\myapp
    [2014-05-29:13:45:28] Application signature verified
    [2014-05-29:13:45:28] Unpackaging/validation complete
    [2014-05-29:13:45:28] No app located for appID 'mobapp' and pubID ''
    [2014-05-29:13:45:28] Starting silent app installation to C:\MyApp. Installing app mobapp version 2.1.4 using the source file at file:///C:/Windows/TEMP/AIR48D6.tmp/myapp
    [2014-05-29:13:45:28] Installing msi at C:\Windows\TEMP\AIR48D6.tmp\myapp\setup.msi with guid {79333743-2BE9-36A4-1218-1C63018CB7B4}
    [2014-05-29:13:45:30] Application Installer end with exit code 0
    [2014-05-29:13:45:30] Subprocess Application Installer succeeded
    [2014-05-29:13:45:30] Bootstrapper end with exit code 0
    Log from computer with problem:
    [2014-05-29:12:19:44] Bootstrapper begin with version 2.6.0.19120 on Win x86
    [2014-05-29:12:19:44] Installed runtime (13.0.0.111) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-05-29:12:19:44] Launching subprocess with commandline "Adobe AIR Application Installer.exe" -silent -eulaAccepted -desktopShortcut -location "C:\Program Files (x86)\MyApp" "D:\Temp\AIR1C4C.tmp\myapp"
    [2014-05-29:12:19:44] Subprocess Application Installer succeeded
    [2014-05-29:12:19:44] Bootstrapper end with exit code 0
    Where is problem? Help please!

  • AIR application installation error (Windows)

    Hi,
    We’ve bumped into troubles while developing AIR
    application. The problem is in installation AIR application under
    Windows by a user without administrator privileges. When installing
    application user selects installation folder he has permission to
    write to. And after installation begins it ends with error #0: Some
    error occurred...
    In the installation troubleshooting it is written that
    installation of AIR application *may* require administrator
    privileges when installing to a location user has no rights to
    write to but we do.
    Is there any way to install AIR application by an
    unprivileged user?

    My understanding is you can do elevated installation on
    Vista, but not on XP.
    -ted

  • How to embed icon MAc dmg file in air application while in windows its working fine

    how to embed icon in mac os dmg file ..while in windows i ha set in air application .xml file in <icon> tag and its working..so to embed icon for MAc OS

    solution ::
    add this code in windows app of AIR
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication 
    xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" creationComplete="init()" layout="absolute" xmlns:local="*">
    <mx:VBox>
    <mx:Label text="Jay Mahadev" fontSize="32" />
    </mx:VBox>
    <mx:Script>
    <![CDATA[
    private function init():void
    if(NativeApplication.supportsDockIcon){ 
    var dockIcon:DockIcon = NativeApplication.nativeApplication.icon as DockIcon;NativeApplication.nativeApplication.addEventListener(InvokeEvent.INVOKE,undock);
    //dockIcon.menu = createIconMenu();
    else if (NativeApplication.supportsSystemTrayIcon){ 
    var sysTrayIcon:SystemTrayIcon = NativeApplication.nativeApplication.icon as SystemTrayIcon;sysTrayIcon.tooltip =
    "Stopwatch";sysTrayIcon.addEventListener(MouseEvent.CLICK,undock);
    //sysTrayIcon.menu = createIconMenu();
    public function undock(event:Event = null):void{stage.nativeWindow.visible =
    true;NativeApplication.nativeApplication.icon.bitmaps = [];
    ]]>
    </mx:Script>
    </mx:WindowedApplication>
    and also in windowapplication.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://ns.adobe.com/air/application/1.0">
     <icon>
    <image128x128>/icons/128x128.png</image128x128>
    <image48x48>/icons/48x48.png</image48x48>
    <image32x32>/icons/32x32.png</image32x32>
    <image16x16>/icons/16x16.png</image16x16>
    </icon>
    </application>
    Reference Link :::
    http://www.adobe.com/devnet/air/flash/quickstart/articles/stopwatch_dock_system_tray.html

  • Running windows xp applications on a macbook air

    I need to run some legacy windows xp applications in my new macbook air.  What version of windows 7 I need to use?

    Welcome to the Apple Support Communities
    First, check that those applications are supported. Then, if you have to run apps that don't need all the performance of the Mac, just download Parallels, VMware Fusion or VirtualBox, and install Windows on a virtual machine. In this case, you can choose the Windows version and edition you want to install, but I recommend Windows 7.
    If you have to run apps that requires the maximum performance, you have to use Boot Camp. In this case, you can only install Windows 7 Home Premium, Professional or Ultimate (it's better to run a 64-bit edition). To install Windows on Boot Camp, just open "Boot Camp Assistant" and follow these steps to install Windows > http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.7.pdf
    If you are going to use Boot Camp, please follow carefully the steps, because you can delete OS X by mistake and lose everything. Apart from that, you need an external optical drive to install Windows. Any will work with the MacBook

  • Run Adobe AIR application as frame in other windows app.

    Is there possibility to intagrate Adobe AIR application to the windows application as ActiveX, or another way, and will be such functionality provided in future?

    Not AIR, but you can, I believe, integrate the Flash Player itself in this way.

  • Windows 7 Manifest file embedded in native AIR application exe created by ADT

    i have executed string utility to extract all the strings in an AIR application exe and found windows 7 manifest file is embedded with level set to invoker (standard user). We want to change the level to "require administrator" so that exe will automatically launched with administrative privileges but we are unable to find how the manifest file get embedded.
    Help appreciated
    Thanks

    Found out the manifest file get embedded when building native installer. Still don't how the manifest file is added and how to change level to "require administrator" in manifest file.
    Help Appreciated
    Thanks

Maybe you are looking for