Adobe Air I cannot open up a popup browser

I'm having a problem with adobe air. I cannot open up a popup
browser window from clicking on a button in a adobe air program. I
can only open up browser windows within existing browser windows or
a new window if none is open.

Update:
I can get this to work:
var request:URLRequest = new URLRequest("
http://www.mydomain.com");
navigateToURL(request, "_blank");
but not this:
var request:URLRequest = new
URLRequest("javascript:window.open('
http://www.mydomain.com','NameofWindow','width=800,height
=600,top=0,left=0'); void(0);");
navigateToURL(request);

Similar Messages

  • Cant install or uninstall Adobe Air. Keep getting error message "This application requires a version of Adobe AIR which cannot be found"

    I am running Windows 7 and use Adobe AIR for Flixster.  When I tried to open Flixster I recieved an error message saying i needed to install Adobe AIR.  I looked and saw that according to control panel, Adobe AIR is installed.  I attempted to uninstall but get this EXACT message:
    "This application requires a version of Adobe AIR which cannot be found.  Please download the latest version of the runtime from http://www.adobe.com/go/getair, or contact the application author for an updated version."
    I have tried going to the mentioned website but i get an error message saying installation failed and may need administrative privilages but I AM the administrator! 
    I then tried multiple solutions on the forums including the command prompt uninstall and still no luck.  contacted customer support who told me i can only receive assistance through these forums.
    Very frustrating.  Please Help.

    I have the same issue with a customer of ours:
    Try to uninstall AIR – same message.  (When I reinstall,  the install says it’s successful.) I try to run our app, same message. I downloaded another AIR app, same message – so it’s not our app it’s AIR.  We logged in as Administrator, same message.  It’s a Windows7 machine. I did a system restore to 2 days ago and started over and still the same issues. I tried running the Windows Fixit to uninstall https://support.microsoft.com/en-us/mats/program_install_and_uninstall – didn’t work.

  • Why Adobe Reader XI cannot open a pdf file that can be opened with Reader 9?

    Why Adobe Reader XI cannot open a pdf file within a browser that can be opened with Reader 9?

    Hi Steve,
    Sorry, I cannot post a URL to the file because it is for intenal use only.
    I noticed that the pdf file can be opened outside of IE browser if I disable the Adobe Reader add-on (active-X) in IE browser. If I enable the Reader add-on, the Reader cannot complete the file download. The progress bar goes in a half way, and stays there.
    Just FYI, the pdf file was created by Distiller 7. Do you think it is the issue of Reader add-on? Thanks.

  • I have adobe 9 and cannot open PDF files????

    I have Adobe 9 and cannot open PDF Files.  It gives me an encoding box??

    Back up all data.
    If Adobe Reader or Acrobat is installed, there should be a setting in its preferences such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected. Otherwise do as follows.
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard by pressing the key combination command-C:
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, move to the Trash any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present. The same goes for a plugin called "iGetter," and perhaps others — I don't have a complete list.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • URGENT: Tomcat + Adobe AIR, problem with open .doc

    Hello!
    I've got a web application (Java) in Tomcat.
    I compile using Adobe AIR sdk with this:
    adt -package -storetype pkcs12 -keystore melcos.pfx -target native MELCOS.air
    MELCOS-app.xml MELCOS.html AIRAliases.js icons
    This is my app.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://ns.adobe.com/air/application/2.5">
      <id>project.html.melcos</id>
      <name>
        <text xml:lang="it">Software M.EL.COS. - MME</text>
      </name>
      <versionNumber>1.0.0</versionNumber>
      <filename>Prova</filename>
      <copyright>Copyright</copyright>
      <initialWindow>
        <content>MELCOS.html</content>
        <title>Prova</title>
        <visible>true</visible>
        <width>1024</width>
        <height>768</height>
      </initialWindow>
         <icon>
              <image16x16>icons/logo16.png</image16x16>
              <image32x32>icons/logo32.png</image32x32>
              <image48x48>icons/logo48.png</image48x48>
              <image128x128>icons/logo128.png</image128x128>
         </icon>
         <allowBrowserInvocation>true</allowBrowserInvocation> 
    </application>
    and this is MELCOS.html:
    <html>
    <head>
    <title>M.EL.COS. - MME</title>
      <script type="text/javascript" src="AIRAliases.js"></script>
      <script type="text/javascript">
        function appLoad(){
            window.location="http://localhost:8082/MELCOS";
      </script>
    </head>
    <body onLoad="appLoad()">
    </body>
    </html>
    Now...Tomcat6029 are a Windows service and it start with user SYSTEM.
    In my Java project i build a .doc file and i try to open it directly with default windows application:
    FinalFile = "prova.doc";
    File file = new File("C:\\MELCOS\\run\\web\\tomcat6029\\webapps\\MELCOS\\fronte_quadro\\"+FinalFile);
    Desktop desktop = Desktop.getDesktop();
    desktop.open(file);
    The process start (for example WINWORD.exe) but start with user SYSTEM, and user interface of Microsoft Word don't start.
    (I've try to use getDesktop, ProcessBuilder, getRuntime without results).
    If i try to open directly .doc like browser (stop on url http://localhost:8080/MELCOS/fronte_quadro/prova.doc) Adobe AIR don't open anything.
    I've read that there is a method named openWithDefaultApplication, but i haven't find if it's possible to call this method in java file.
    Can you help me?
    I've got to start Microsoft Word (in this example) and open my files, or i've to open a pop-up like browser's "open - save as - close" window.
    Thanks.
    Morkar88

    Thanks Chris,
    i try to create file "open_document.js":
    import flash.filesystem.File;
    import flash.net.FileFilter;
    var f = air.File.desktopDirectory.resolvePath("preventivo_11.doc");
    f.openWithDefaultApplication();
    when i try to open this file in Adobe AIR (i call http://localhost:8080/MyProject/document/open_document.js"), Adobe Air open new window and with my file .js like a normal text file.
    I try also with "open_document.html":
    <html>
    <head>
    <script language="javascript">
    import flash.filesystem.File;
    import flash.net.FileFilter;
    function opendoc() {
      var f = air.File.desktopDirectory.resolvePath("preventivo_11.doc");
      f.openWithDefaultApplication();
    </script>
    </head>
    <body onLoad="opendoc()">
    </body>
    </html>
    But nothing start....
    (my file "preventivo_11.doc" is in C:\Project\tomcat\webapps\MyProject\document\)
    Why? What i have to do?
    Thanks
    P.S. i've got error with import: flash.ecc... and if i remove import, error with air.File.

  • I have the doc on my screen as an adobe  but I cannot make changes?  The browser does not locate it?

    I have the doc on my screen as an adobe  but I cannot make changes?  The browser does not locate it?

    Hi,
    Are you opening a PDF file in browser and trying to edit the PDF file there?
    Please let me know in more details.
    In general most PDF files cannot be edited in browser and some PDF can be edited with the permission for editing in browsers.
    Thank you.
    Hisami

  • Adobe reader XI cannot open PDF created with distiller version 9.4.2

    Hello everybody
    I need your help with the following problem:
    I created a pdf document once with Adobe disitller Version 10.1.0 and once with Version 9.4.2. With Adobe reader Version XI I can only open the pdf document which was created with distiller Version 10.1.0 but with Adobe reader 9 I can open both documents without any problems.Do you have any idea why?
    Thank you very much and best regards,
    Iskierka

    Hi Steve,
    Sorry, I cannot post a URL to the file because it is for intenal use only.
    I noticed that the pdf file can be opened outside of IE browser if I disable the Adobe Reader add-on (active-X) in IE browser. If I enable the Reader add-on, the Reader cannot complete the file download. The progress bar goes in a half way, and stays there.
    Just FYI, the pdf file was created by Distiller 7. Do you think it is the issue of Reader add-on? Thanks.

  • Adobe reader X cannot open in protected mode

    I am getting the message "Adobe Reader cannot open in Protected Mode due a problem with your system configuration.
    None of the threads or other troubleshooting tips I've found have resolved this.
    Just clicking on the Adobe Reader icon by itself causes the problem. 
    Here's my process explorer output.
    Process PID CPU Private Bytes Working Set Description Company Name
    System Idle Process 0 98.46 0 K 28 K 
    System 4  0 K 236 K 
    Interrupts n/a < 0.01 0 K 0 K Hardware Interrupts and DPCs
    smss.exe 576  172 K 440 K Windows NT Session Manager Microsoft Corporation
      csrss.exe 640  1,680 K 3,652 K Client Server Runtime Process Microsoft Corporation
      winlogon.exe 664  7,948 K 8,200 K Windows NT Logon Application Microsoft Corporation
       services.exe 712  2,240 K 4,556 K Services and Controller app Microsoft Corporation
        vmacthlp.exe 892  964 K 3,248 K VMware Activation Helper VMware, Inc.
        svchost.exe 912  3,204 K 6,352 K Generic Host Process for Win32 Services Microsoft Corporation
         wmiprvse.exe 2160  4,376 K 6,028 K WMI Microsoft Corporation
         wmiprvse.exe 3392  7,644 K 6,916 K WMI Microsoft Corporation
         wmiprvse.exe 1124  2,664 K 6,116 K WMI Microsoft Corporation
        svchost.exe 1000  2,068 K 4,740 K Generic Host Process for Win32 Services Microsoft Corporation
        btservice.exe 1096  11,720 K 22,260 K BeyondTrust Shared Service BeyondTrust Software, Inc.
        MsMpEng.exe 1112  90,952 K 56,476 K Antimalware Service Executable Microsoft Corporation
        svchost.exe 1256  18,404 K 29,452 K Generic Host Process for Win32 Services Microsoft Corporation
        svchost.exe 1284  1,536 K 3,980 K Generic Host Process for Win32 Services Microsoft Corporation
        svchost.exe 1400  1,496 K 3,700 K Generic Host Process for Win32 Services Microsoft Corporation
        spoolsv.exe 1500  4,840 K 7,208 K Spooler SubSystem App Microsoft Corporation
        jqs.exe 1820  2,360 K 1,476 K Java(TM) Quick Starter Service Sun Microsystems, Inc.
        vmamqpd.exe 1892  2,500 K 5,260 K VMware AMQP Service VMware, Inc.
        vmtoolsd.exe 388  7,304 K 9,404 K VMware Tools Core Service VMware, Inc.
        vmware-update-agent.exe 460  7,880 K 12,176 K 
        CcmExec.exe 532  15,296 K 26,724 K CCM Executive Microsoft Corporation
        VMUpgradeHelper.exe 1432  1,408 K 4,896 K VMware virtual hardware upgrade helper application VMware, Inc.
        alg.exe 544  1,364 K 3,944 K Application Layer Gateway Service Microsoft Corporation
       lsass.exe 724  5,068 K 2,028 K LSA Shell (Export Version) Microsoft Corporation
    explorer.exe 3536  22,392 K 30,256 K Windows Explorer Microsoft Corporation
    VMwareTray.exe 3756  5,768 K 8,372 K VMware Tools tray application VMware, Inc.
    VMwareUser.exe 3788  7,564 K 11,000 K VMware Tools Service VMware, Inc.
    msseces.exe 3812  14,640 K 19,180 K Microsoft Security Client User Interface Microsoft Corporation
    acrotray.exe 3904  4,364 K 7,148 K AcroTray Adobe Systems Inc.
    jusched.exe 3948  3,272 K 5,604 K Java(TM) Update Scheduler Sun Microsystems, Inc.
    ctfmon.exe 3976  2,852 K 4,388 K CTF Loader Microsoft Corporation
    procexp.exe 1276 1.54 16,208 K 23,264 K Sysinternals Process Explorer Sysinternals - www.sysinternals.com
    AcroRd32.exe 1152  1,548 K 5,616 K Adobe Reader  Adobe Systems Incorporated
    Process: AcroRd32.exe Pid: 1152
    Name Description Company Name Version
    AcroRd32.exe Adobe Reader  Adobe Systems Incorporated 10.1.0.534
    advapi32.dll Advanced Windows 32 Base API Microsoft Corporation 5.1.2600.5755
    btpload32.dll BeyondTrust Profiler Loader BeyondTrust Software, Inc. 5.1.0.10
    clbcatq.dll  Microsoft Corporation 2001.12.4414.700
    comctl32.dll User Experience Controls Library Microsoft Corporation 6.0.2900.6028
    comdlg32.dll Common Dialogs DLL Microsoft Corporation 6.0.2900.5512
    comres.dll  Microsoft Corporation 2001.12.4414.700
    ctype.nls  
    gdi32.dll GDI Client DLL Microsoft Corporation 5.1.2600.5698
    imm32.dll Windows XP IMM32 API Client DLL Microsoft Corporation 5.1.2600.5512
    kernel32.dll Windows NT BASE API Client DLL Microsoft Corporation 5.1.2600.5781
    locale.nls  
    msctf.dll MSCTF Server DLL Microsoft Corporation 5.1.2600.5512
    msctfime.ime Microsoft Text Frame Work Service IME Microsoft Corporation 5.1.2600.5512
    msvcrt.dll Windows NT CRT DLL Microsoft Corporation 7.0.2600.5512
    ntdll.dll NT Layer DLL Microsoft Corporation 5.1.2600.6055
    ntmarta.dll Windows NT MARTA provider Microsoft Corporation 5.1.2600.5512
    ole32.dll Microsoft OLE for Windows Microsoft Corporation 5.1.2600.6010
    oleaut32.dll  Microsoft Corporation 5.1.2600.6058
    privman32.dll BeyondTrust PowerBroker Desktops DLL BeyondTrust Software, Inc. 5.1.0.42
    psapi.dll Process Status Helper Microsoft Corporation 5.1.2600.5512
    rpcrt4.dll Remote Procedure Call Runtime Microsoft Corporation 5.1.2600.6022
    samlib.dll SAM Library DLL Microsoft Corporation 5.1.2600.5512
    secur32.dll Security Support Provider Interface Microsoft Corporation 5.1.2600.5834
    shell32.dll Windows Shell Common Dll Microsoft Corporation 6.0.2900.6072
    shlwapi.dll Shell Light-weight Utility Library Microsoft Corporation 6.0.2900.5912
    sortkey.nls  
    sorttbls.nls  
    unicode.nls  
    user32.dll Windows XP USER API Client DLL Microsoft Corporation 5.1.2600.5512
    userenv.dll Userenv Microsoft Corporation 5.1.2600.5512
    uxtheme.dll Microsoft UxTheme Library Microsoft Corporation 6.0.2900.5512
    version.dll Version Checking and File Installation Libraries Microsoft Corporation 5.1.2600.5512
    wldap32.dll Win32 LDAP API DLL Microsoft Corporation 5.1.2600.5512

    Your log file shows you to be running v10.1.0.534. Could you please update to the latest version which is v10.1.1 and then try again. You can get it from here: http://get.adobe.com/reader/direct/
    Also, has a rule been created in the BeyondTrust Software application you appear to be using to allow Reader X to open in Protected Mode? That application might be interfering with the way Reader X operates. There's a demo on their site which might help: http://www.beyondtrust.com/Products/PowerBroker-Desktops-Windows-Edition/Product-Demo/

  • Adobe acrobat X cannot open PDF files in Firefox, though IE can. What gives?

    when I download a page that's a PDF file from the Web, Firefox cannot open it, although Internet Explorer can. I just uninstalled Adobe Acrobat Reader 5.0 because I had Adobe Reader X installed.

    When I enter about:preferences#applications <Enter> in the address bar, then for PDF it shows:
    pdf File (application/x-download) ... Use Adobe Acrobat Professional
    pdf File (application/x-pdf) .... Use Adobe Acrobat Professional
    Portable Document Format (PDF) ... Save File'''
    I would like all PDF's to open in Adobe Acrobat 8 Professional.
    Right now none of the PDF's open at all, so opening in Firefox or any other viewer would be preferred over not showing up at all.

  • Adobe reader 11 cannot open in protected mode due to incompatibilty with your system configuration

    I have deployed Adobe reader 11 is our IT Enviorment using SCCM 2012 and the following warning Adobe reader cannot open in protected mode due to incompatibilty with your system configuration. Would you like to open Adobe reader with Protected Mode disabled is being displayed. When tried opening PDF files. Is there any way to isolate the cause without needing to disable the protected mode without needing to disable protected mode from Adobe reader settings.

    To the best of my knowledge: no.

  • Using Adobe Reader, I cannot open any adobe documents, Message indicates missing plug-ins. Please help... Thank you

    Successfully downloaded Reader on to my PC (Windows 7 Home Premium 64 bit).    However, I cannot open any adobe documents,    Message indicates missing plug-ins. Please help... Thank you,
    Theyankfan

    Hey Joseph Curcio,
    You might be viewing the PDFs in your browser only where Adobe Reader plug-in is disabled.
    Please try opening the PDF file using Adobe Reader and then check.
    Let me know in which browser are you trying to view the PDFs so that I can help you out enabling the required plug-ins.
    Regards,
    Anubha

  • Purchase classroom in a book for Adobe pre 12 cannot open lessons

    pruchased Classroom in a book for Adobe premiere elements 12
    I downloaded the lessons but cannot open with Adobe premiere elements 12
    Adobe premiere elements 12 is new to me not sure what needs to be
    done to open lessons.
    Jack

    Jack
    There are known problems with the samples offered in the Classroom in a Book series for Premiere Elements.
    Is your problem extended to all the lesson files or just some.
    Please contact the publisher of the book for lessons files issues correction...there have been many.
    You should see the Publisher contact information in the book somewhere.
    How are you trying to open a file in Premiere Elements 12, Add Media/then what?
    And what is the name of a specific file in those lessons that you are trying to open in Premiere Elements 12?
    Probably, more important and to the point, can you import your own stills or videos without problems into
    Premiere Elements 12?
    Please update 12 to 12.1 Update if you have not already. See an opened project's Help Menu/Update.
    Any questions or need clarification, please do not hesitate to ask.
    Thank you.
    ATR

  • Creating PDF through Adobe PDF print - Cannot open this file?

    Hello!
    I have a user who I recently installed Acrobat X on their machine.  They are in a program called DSS and he when he goes to file --> Print and then selects Adobe PDF he gets errors when converting a map into a pdf.  It shows the Creating Adobe PDF box and has a progress bar.  Then an error box says Acrobat Distiller:
    C:\Program Files\Adobe\Acrobat 10\Acrobat\.......
    Cannot open this file.
    Please check that the correct path and filename are given.
    Magically it converts but the problem is with the errors and sometimes the conversion isnt accurate. What port does this need to be on becuae I notices it defaults to COM1???
    Thanks, any help would be much appreciated.

    Please have the user post, we need much more information. Operating System, Service Package, 32-bit/64-bit. If 64-bit is the program 32-bit or 64-bit native? Version of the program DSS.  What kind of program is DSS and who makes it? Googling DSS doesn't help much since there are several choices.

  • Adobe Customization Wizard cannot open 9.3 MSP file

    I'm trying to employ the Adobe Customization Wizard 9 to push AcrobatUpd930_all_incr.msp but cannot open that file.
    After selecting view All files(*.*) in the Open dialog box and selecting that file I get the error "This file is not available"
    please advise,
    -dave

    see below

  • Adobe air apps cannot be installed

    Hi,
    I have trouble with my PC to install any kind of adobe air app. When I start to install a Adobe air app, I get the UAC request and I confirm it but then the Adobe Air Application Installer.exe *32 is hanging and doing nothing.
    When I repeat the process another Adobe Air Application Installer.exe *32 instance is started.
    Here is my equipment and what I tried:
    Equipment:
    Windows 7 professional SP1 64 -Bit
    - Reinstalling Adobe air with Revo Uninstaller(cleaning registry) and installing it new with Admin rights.
    - Installing Adobe air in Windows XP Sp3 mode
    - Multiple apps were tried and when I start them with the SDK, they are working fine.
    - No information are available in the windows eventlogs
    Any idea  how to solve it or any possibility to start a debug tool to get more information?
    Thank you in advance for any input and help!
    Cheers,
    Dominik

    Hi Chris,
    I appreciate your support!
    Sadly the Microsoft Install and Uninstall Fix It tool does not work, adobe air is still hanging during the app installation.
    This is what I have done:
    1. Uninstall Adobe air with the Microsoft Tool
    2. Install Adobe air new
    3. Try to install the app SmartClient.air -> Did not work
    4. Try to install the app DesktopiPhone.air -> Did not work
    Now I have 4 Adobe air instance in the task manager(see screenshot)
    2* Adobe Air Installer
    2* Adobe Air Application Installer
    Here the install log file:
    [2012-09-25:08:54:39] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-25:08:54:39] Commandline is:
    [2012-09-25:08:54:39] No installed runtime detected
    [2012-09-25:08:54:41] Relaunching with elevation
    [2012-09-25:08:54:41] Launching subprocess with commandline c:\users\sd000037\appdata\local\temp\airb183.tmp\adobe air installer.exe -ei
    [2012-09-25:08:54:43] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-25:08:54:43] Commandline is: -stdio \\.\pipe\AIR_4324_0 -ei
    [2012-09-25:08:54:43] No installed runtime detected
    [2012-09-25:08:54:43] Starting silent runtime install. Installing runtime version 3.4.0.2540
    [2012-09-25:08:54:43] Installing msi at c:\users\sd000037\appdata\local\temp\airb183.tmp\setup.msi with guid {14DC0059-00F1-4F62-BD1A-AB23CD51A95E}
    [2012-09-25:08:54:45] Runtime Installer end with exit code 0
    [2012-09-25:08:54:45] Elevated install completed
    [2012-09-25:08:55:46] Application Installer begin with version 3.4.0.2540 on Windows XP x86
    [2012-09-25:08:55:46] Commandline is: "D:\Arbeit\SmartOffice\0.07.23 MAIN_10082012_001_BETA\SmartClient.air"
    [2012-09-25:08:55:46] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-25:08:57:27] Application Installer begin with version 3.4.0.2540 on Windows XP x86
    [2012-09-25:08:57:27] Commandline is: D:\Arbeit\SmartOffice\DesktopiPhone.air
    [2012-09-25:08:57:27] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Thanks,
    Dominik

Maybe you are looking for

  • Dsee 6.2, idsconfig, vlv index processing problems

    Hey Folks, I ran into a problem where the idsconfig script failed on creating 4 vlvindex entries. I had to modify the script to allow me to troubleshoot the problem. I ended up fixing the problem manually, but I'm still not to sure why it happened to

  • Installing an SSD drive in a Macbook Pro

    Hello All.  Thanks all for detailed replies. I may not have read all your posts properly but today I tried to clone the SSD with my current HD in disk utilities but it wouldn't let me.  Told me to use disk utility in recovery mode -I was able to "clo

  • Can't get any result from Win32_PerfFormattedData_PerfProc_Process

    Hi, i can run this script locally Get-WmiObject-query"select *  from Win32_PerfFormattedData_PerfProc_Process" successfully, but when i trying to run it on remote machine (using Enter-PSSession) I'm received error - Get-WmiObject : invalid request  "

  • Undo tablespace problem

    Hello, I was processing a batch job that commits every 5,000 records. I have the UNDO_RETENTION set to 10,800. UNDO_MANAGEMENT is set to AUTO. at some point the database shut down with the following errors in the alert log: ORA-1654: unable to extend

  • My horizontal bar , between the navigation bar and tabs bar is cluttered how do I delete some of these tabs

    i want to delete some tabs from the bar between the navigation bar and the tab bar. == This happened == Not sure how often == recently