Open browser pop up from an exe file

Hi
Can you help me with this?:
I have to open an internet browser pop up from a movie, that
is an exe file...
And I don´t know how to do it... :(
I´ve seen the manuals, but all the instruccions are for
a movie that is into an html file, and this is not my case...
thanks a lot!
Sofia

Hi, LuigiL...
but... with getURL() I can´t restrict the dimensions of
the window....
I need a window of 1008x650 pixels exactly with no scrollbar.
How can I do it?
thanks again

Similar Messages

  • Opening a PDF document from an exe file

    How can I open a PDF document from a executable file??
    A friend has told me to use this:
    fscommand ("exec", "anexo01.bat")
    but it opens a black pop up window before opening the
    program..... and it don´t seems to be a good solution.....
    can someone help me on this?
    thanks!!
    Sofia
    thanks for the help.

    > How can I open a PDF document from a executable file??
    > A friend has told me to use this:
    > -------------------------------------------------
    > fscommand ("exec", "anexo01.bat")
    > -------------------------------------------------
    > but it opens a black pop up window before opening the
    program..... and it
    > don´t seems to be a good solution.....
    > can someone help me on this?
    You can't avoid the echo box, unfortunate but that's the
    compromise if you go with
    the BAT file method.
    For many years I have been using Flash Jester tool call
    JStart. Works like charm
    all the way, no extra pop up windows :)
    http://flashjester.com/?section=tricks_jtools_jstart
    JStart will allow you to not only launch a program, but use
    parameters to make the
    program open files, perform special actions and just about
    anything you can use
    parameters for. You can also choose to launch files with
    their default associated
    program.
    Another solution is provided by by Rick Turoczy, it's pretty
    old but should still
    work. Perhaps give it a try.
    http://www.flashgeek.com/tutorials/07_launchapp_01.asp
    Easy to use tool that allow you to launch basically anything
    from the projector.
    As long as there is system default application supporting
    particle file.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Open a pop up from JJT framework

    Hi
    I have a requirement to open a pop up from JTT framework
    I have made one Order Details page in OA framework
    In this page,when you click on one link, it opens a one popup and it works a modal window.
    There are many ways to come to this page
    When we come from Home page through function, it opens a Order details page,and if you click on link, pop up opens and it works as a modal window.
    Another way to come to this page from Quote details page
    On Quote details page, i have provided one link and if you click on this link,Order details page should open.
    so i have used jtfcrmchrome.jsp&page=<path> and it opens my Order Details page
    but on my order Details page when we click on a link, the pop up is not opening and it does nothing.it does not give any error.
    The code to open a pop up is following.
    public static void registerOpenSearchPage ( OAPageContext pageContext,OAWebBean webBean, String pageName , String imageID , String[] itemListToBeRefreshed , HashMap paramList, String refBaseFlag , String event)
    String url = "/OA_HTML/cabo/jsps/frameRedirect.jsp?redirect=/OA_HTML/OA.jsp&page="+pageName+"&retainAM=Y";
    String paramStr = "";
    if ( paramList != null )
    Set keyList = paramList.keySet();
    Object[] keyArray = keyList.toArray();
    for ( int i = 0 ; i < keyArray.length ; i++ )
    String keyName = (String) keyArray;
    String keyValue = (String) paramList.get(keyName);
    paramStr = paramStr+"&"+keyName+"="+keyValue;
    url = url+paramStr;
    //System.out.println("inside another registerOpenSearchPage url is "+url);
    OAUrl popupUrl = new OAUrl(url, OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    String strUrl = popupUrl.createURL(pageContext);
    imageID = "lineQty1";
    if ( imageID == null ){ imageID = "DetailsLink"; }
    if ( itemListToBeRefreshed == null )
    itemListToBeRefreshed = new String[4];
    itemListToBeRefreshed[0] = "customLOVLineId";
    itemListToBeRefreshed[1] = "customLOVDelID";
    itemListToBeRefreshed[2] = "customLOVTaskID";
    itemListToBeRefreshed[3] = "customLOVObjVersion";
    String refBaseFun = "refreshBaseFor"+imageID;
    String fun = " function openCustomLOVFor"+imageID+"() "+
    " { "+
    // " alert ('opening new window'); "+
    " top.closewin = true; "+
    //" var win = openWindow(window, '"+strUrl+"', 'lovWindow',{width:750, height:550}, true,'dialog','null'); "+
    " var win = openWindow(window, '"+strUrl+"', 'lovWindow',{width:750, height:550}, true,'dialog',"+refBaseFun+"); "+
    " var itemArray = new Array(); ";
    String temp = "";
    for ( int i = 0 ; i < itemListToBeRefreshed.length ; i++ )
    temp = temp + " itemArray["+i+"]='"+ itemListToBeRefreshed[i] +"';";
    fun = fun + temp;
    fun = fun + " top.itemArrayList"+imageID+" = itemArray; "+
    System.out.println("inside another registerOpenSearchPage before putjavascript");
    StringBuffer funName = new StringBuffer("openCustomLOVFor");
    funName.append(imageID);
    pageContext.putJavaScriptFunction(funName.toString(), fun);
    // ********* REGISTERING THE REFRESH BASE FUNCTION **********
    String refBaseFn = "";
    //refBaseFlag = "Yes";
    if ( "Yes".equals(refBaseFlag) )
    if ( event == null )
    event = "GET_FOR_TABLE";
    //refBaseFn = " submitForm('DefaultFormName',0,{'event':'"+event+"'} ); ";
    refBaseFn = " submitForm('DefaultFormName',0,{'event':'"+event+"'} ); ";
    //refBaseFn = " submitForm('DefaultFormName',0,{'lovReturn':'true','event':'"+event+"'} ); ";
    String fun2 = " function "+refBaseFun+"(lovwin , event) { "+
    // " alert ('refresh function'); "+
    " if ( !lovwin.popupSL ){ return false; } "+
    " else { "+
    " var listOfEl = new Array(); "+
    " listOfEl = top.itemArrayList"+imageID+" ; "+
    " var result = lovwin.returnValue; "+
    // " alert ( lovwin.returnValue ); "+
    " for ( var i = 0 ; i < listOfEl.length ; i++ ) { "+
    " id1 = document.getElementById(listOfEl[i]); "+
    " id1.value = result[i]; "+
    " } "+
    " top.closewin = false ; "+
    refBaseFn+
    " }"+
    //System.out.println("before javascriptfunction refBaseFun");
    pageContext.putJavaScriptFunction(refBaseFun, fun2);
    //System.out.println("after javascriptfunction refBaseFun");
    OABodyBean bodyBean = (OABodyBean)pageContext.getRootWebBean();
    //System.out.println("before onload javascriptfunction");
    bodyBean.setOnLoad("javascript: "+funName.toString()+"()");
    //System.out.println("after onload javascriptfunction");
    Could anyboy throw some points on this?
    Regards
    Hitesh

    Hitesh, the javascript Api you are using for opening Modal window, is specially for oa framework, as framework uses the same method to open a LOV.While in JTT there is no such available API, for that you have to use normal
    window. open.... (in javascript)
    that you use in any web tech like jsp etc, and attach it to button or link click.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to open or install fonts from a .suit file under Lion?

    How to open or install fonts from a .suit file under Lion? Thanks!

    although I believe I *have* used the .suit extension when I was creating suitcase files for TrueType fonts.
    You can get away with that because you haven't really changed anything. It's already a suitcase file, with a Type code of FFIL (the Creator code is mostly irrelevant). Adding .suit still tells the OS it's a suitcase.
    However, if you do something silly like change the Type code to LWFN (the outline portion of a PST1 set), then neither Font Book, or any other font manager knows what to do with it. It's recognizing the LWFN code, but the data structure of course doesn't match. The file is still a Mac legacy TrueType font. Suitcase Fusion 5 tosses this on the screen when I change the Type code to the wrong one:
    Changing the extension to something obviously wrong, like .otf produces the same message. It's trying to parse the data according to what the extension says it is, and nothing lines up.
    Trying to use .ttf or .ttc also doesn't work. A Mac legacy suitcase TrueType font is not built the same as a .ttf or .ttc font. Either is technically correct (it is a TrueType font), but that's the only similarity. What's happening in that case is Mac legacy TT fonts have all of the data in the resource fork. When you add .ttf or .ttc to the name, the OS and any font manager then tries to find the data in the data fork. Nothing there.

  • I've installed elements 12 but it won't open it's asking for the exe file but all it does when located is install again.  I can't uninstall as it isn't present in control panel

    I've installed elements 12 but it won't open it's asking for the exe file but all it does when located is install again.  I can't uninstall as it isn't present in control panel.  When I open properties it asks to locate the exe or the other options don't work the target is invalid

    Hi sambanyc,
    What version of Adobe Reader have you installed on your Mac?
    Please try installing on a different Admin user account and check if that makes a difference.
    Regards,
    Rave

  • Photoshop 10 can't open image CD's from another Photoshop file.

    My Windows 7 and Photoshop Elements 10 will not open image CD's downloaded from another Photoshop file. Could open them in a previosu Windows XP and older Photoshop. Now get message: &quot;This file does not have a program associated with it for performing action. Please install a program or, if one is already installed, create an association in the Default Program default control panel.&quot;
    There are hundreds of asscociation  files listed.  WHICH ONE DO I CHOOSE????

    Right-click on file and choose properties.
    To the right of “Opens With” click on the change button.
    In the Open With dialog click on the Browse button
    Navigate to:
    Program Files (X86)\Adobe\Photoshop Elements 10
    Select (highlight) PhotoshopElementsEditor.exe
    Click Apply
    Click OK

  • How do I install Photoshop from the .exe files I got from Adobe?

    I downloaded Photoshop CS2 from Adobe's site.  That download gave me 5 .exe files, including CreativeSuiteCS2Disc1.exe, CreativeSuiteCS2Disc2.exe, and CreativeSuiteCS2Disc3.exe. 
    When I clicked on CreativeSuiteCS2Disc1.exe, files were extracted and installation began.  I put in my serial number and other information, and things seemed to be going fine.  Then a window popped up with the message "Please insert Disk 2."  Well, I don't have a Disk 2.
    My download included a file "CS2_install_Win.pdf."  In those instructions, it says "the InstallShield wizard may return an error, "Please insert disk [ number ]." If this error occurs, click OK in the dialog box and then double-click the disk image to which the installer refers to manually extract the disk and complete the installation."  So, I clicked on CreativeSuiteCS2Disc2.exe, which overwrote the extracted files from CreativeSuiteCS2Disc1.exe.  But the box saying "Please insert Disk 2" didn't go away. No matter how many times I clicked "OK" it just stayed there.  
    Still, CreativeSuiteCS2Disc2.exe ran, and when it was done I got a message that installation was complete.  But, when I tried to run CS2, I got an error that my serial number and organization were invalid or not installed properly.  I know they were installed because I put them in when I ran CreativeSuiteCS2Disc2.exe
    So, given that following the pdf instructions that came from the download don't seem to work, can anyone out there offer me better instructions on how to do this installation?  I was thinking of extracting each .exe file to a CD, then just inserting those CDs one at a time.  Will that work?

    Missing personalization infopoints to permissions/ user privileges issues which are to be expected with such old versions on contemporary operating systems. Run as admin, turn off security stuff, try compatibility modes. Actualyl burning the discs will of course work, but you might look into simply mounting folders/ disc images as virtual drives e.g. using Daemon Tools Lite or your disc burning software's own disc mounter.
    Mylenium

  • Process Class:How to give and get data from an exe file continuously???

    hi,,,
    I am trying to run an executable file from my program to give it input and read its output....
    And i am having problems...
    The exe file takes one input and appends to it "1235" (ITS A TEST CASE).
    When it is only for a single input , the program rums perfectly.. but when it is within a loop it does not
    Pls help
    Here is the code for that EXE file. (its in C)
    #include<stdio.h>
    int main()
    char a[10];
    int i;
    int k=1235;
    while(1){
    scanf("%s",a);
    if(a[0]=='s')
    break;
    printf("%s%d\n",a,k);
    }Note that when i remove the loop here, my code is able to get and give it data.
    My JAVA program::
    import java.io.*;
    public class Main {
      public static void main(String[] args) throws IOException {
            try {
          String line;
          Process p = Runtime.getRuntime().exec
            ("C:\\users\\Untitled3.exe");
           BufferedWriter   out=new BufferedWriter(new OutputStreamWriter(p.getOutputStream()));
              out.write("dfgsfs\n");
              time= java.lang.System.nanoTime();
              out.flush();
          BufferedReader input =new BufferedReader(new InputStreamReader(p.getInputStream()));
         while ((line = input.readLine()) != null) {
            System.out.println(input.readLine());
          input.close();
        catch (Exception err) {
          err.printStackTrace();
    }PLS HELP

    I see a problem in your C code. You're not flushing stdout after you printf and that usually means java is not seeing whats your C program is printing.
    removing the loop probably works because stdout is being flushed right before exit.
    I used a perl script to test your stuff and found that flushing made the trick
    #!/usr/bin/perl
    open(OUTFILE,">>./output.txt");
    $| = 1;
    while (<STDIN>) {
        if (m/.*error.*/) {
            print STDERR  $_;
        } else {
            print STDOUT  $_;
        print OUTFILE $_;
        if (m/exit/) {
            last;
    close(OUTFILE);
    exit;notice "$| =1;" that autoflushes in perl (just in case you were wondering where my flush call went)
    Enjoy!

  • Writing xml from an .exe file

    Hi,
    So, is it possible to post to php in an .exe file instead of a .swf displayed inside a browser?
    If so, how? I figured if you just created the .exe on the server with the .php file in the same folder
    it would read it and work fine.
    This doesn't seem to be the case... any ideas? Does it always have to go through a browser page?
    thanks

    It is possible to call a PHP file from an EXE. Make sure that you have th PHP file in the webroot of your webserver (IIS or Apache). Also, make sure that you use the server path..for example: http://localhost/myapp/myphpfile.php. It should work!

  • Open a pop-up from a chart

    Hi,
    I am trying to open a pop-up window from a chart (bar graph: user clicks on bar/column and pop-up opens). I can open another page using a url ('f?p=100:200:...::::' etc) as described in documentation / how-to pages;
    select
    'f?p=100:200: ...' link,
    a label,
    b value
    from my_table
    However is it possible to pop-up the page in a separate window ?
    Thanks for all and any help!
    sinclair

    You could use Apex's built in javascript popUp function:
    select
    ('javascript:popUp2("f?p=100:200: ...");') link,
    a label,
    b value
    from my_table
    You can pass two futher optional parameters to popUp2 if you want - width and height of window that pops up e.g. popUp2('f?p=100:200',300,400)
    Andrew

  • How do I instal Windows 7 in bootcamp from an .exe file?

    I have to instal Windows 7 on my mac for school. Since I'm a student Microsoft has given me a free download of Windows, but is was an .exe file.
    I guess I will have to find a way to make an image file of it, but I have no idea how.... Can anyone help?

    Sounds like you have a Volume License of Windows that was downloaded from Microsoft.
    You should be able to unzip the .exe (yes, I know it sounds incorrect, but the .exe is a self-extracting archive) using unzip command in terminal or you could try renaming the .exe to .zip, then unzipping it. Never tried it using your specific file, but it is worth a shot.
    Try Googling "Extract .exe on Mac" if you need clarification.
    Hope that helps!

  • Firefox 6 won't load from the exe file, always looking to remove older file which has been removed.

    Windows Vista 7. When I double click on Setup 6.0.exe file, it goes thru the file extraction, and prompts to reboot to remove old files. (The old files have been previously removed.) The computer restarts and no continuation of loading vs. 6. Then I proceed to click on Firefox Setup 6.o and click RUN. Goes thru set ups steps and then repeats "you computer must be restarted to complete uninstall of Firefox. Do you want to reboot?". If YES, then process repeats itself, if NO, it terminates the installation. Same results with IE and Google Chrome.

    If there are problems with updating then best is to download the full version and uninstall the currently installed version.
    Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 6.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

  • How open a CRWXI Report from a ASP file?

    I can't open a report (CRW XI) from an application running on Internet Information Server (asp file) and using a SQL Express 2005 database. Before this database version, I used a MSDE database type and works without problems using a user without password; but now in SQLX this isn't possbile; can somebody help me???

    Hi Jose,
    As you have discovered database security is there for a reason. Crystal cannot get around it or it would be a major security breach. Which is also why we do not save the password in the RPT file. Example would be someone browsing finds a link to a report that show's everyones personal info and simply runs the report, without prompting for a password, that person now has everyones info and obviously this can cause all sorts of problems.
    There are multiple ways to set up security. One way is to create a user account in SQL Server that has access to the database. Open the Reports up in CR Designer and set the User log on info and save the reports, you will need to set a password in code for that generic user but will give them access.
    Another option is to use Trusted Authentication. Open the Report up in CR Designer and at the log on screen check on the option to use Trusted. You'll notice the user name an password are grayed out. In SQL Server you now must configure it to use NT Authenication also and import all the users or create all the users who can run these reports.
    Bottom line is you cannot get around not using a password, Microsoft did this for a reason, to stop hackers from getting into DB servers that are not protected and accessing personal and sensitive data.
    You MUST reconfigure your application to use security. If you have a Database Administrator discuss with them or hire a DBA to work with you on configuring your DB server to work with your application and user base.
    Thank you
    Don

  • Execute OR pop up for an  exe file to down load

    HI,
    i had a hyper link in my jsp page and when i click that link , it should check for wether an exe is installed in my sytem or not, if that one is installed in my system , it has to start executing.
    If at all that exe is not present, then a window should be populated such that it should ask for download from server and installed on to my system and start executing.
    Pl help me in this regard

    Your browser/OS decides what to do with any content you download. The best thing to do is make sure your server (by way of your JSP or otherwise) returns the correct mime-type and if possible filename+extension to the browser so it can make an informed decision.

  • HTML control doesn't allow browser pop-ups from within page

    I've noticed that pop-ups are not allowed from inside of the
    mx:HTML control. Both JavaScript popups and the targeting of a new
    browser window from within both an HTML page or SWF movie doesn't
    seem to work. I would hope that the user's default browser would be
    utilized in this sort of instance.
    For example: if I load www.cnn.com using the HTML control
    into an AIR app - and then click an ad on that site - under normal
    circumstances a new browser window would be launched - in AIR
    nothing happens.
    Is this a limitation or is there some sort of workaround?
    Thanks,
    David

    In order to accomplish this one has to override the createWindow function of the htmlhost class
        override public function createWindow(windowCreateOptions : HTMLWindowCreateOptions) : HTMLLoader {
            //Option1:
            //var initOptions:NativeWindowInitOptions = new NativeWindowInitOptions();
            //var bounds:Rectangle = new Rectangle(windowCreateOptions.x,windowCreateOptions.y,windowCreateOptions.width,windowCre ateOptions.height);
            //var htmlControl:HTMLLoader = HTMLLoader.createRootWindow(true, initOptions, windowCreateOptions.scrollBarsVisible, bounds);
            //htmlControl.htmlHost = new HTMLHost2();
            //if(windowCreateOptions.fullscreen){
            //htmlControl.stage.displayState =
            //StageDisplayState.FULL_SCREEN_INTERACTIVE;
            //return htmlControl;
            //Option2:
            //var initOptions:NativeWindowInitOptions = new NativeWindowInitOptions();
            //var window:NativeWindow = new NativeWindow(initOptions);
            //window.visible = true;
            //var htmlLoader2:HTMLLoader = new HTMLLoader();
            //htmlLoader2.width = window.width;
            //htmlLoader2.height = window.height;
            //window.stage.scaleMode = StageScaleMode.NO_SCALE;
            //window.stage.addChild(htmlLoader2);
            //return htmlLoader2;

Maybe you are looking for

  • ABC analysis and MC40

    hi- Environment : ECC6.0 We use the standard MIBC-ABC analysis which changes the ABCD indicators based on the turnover or u can say consumption. Scenario: We have low cost value components (say Bolts) but have a high usage/consumption. So based on AB

  • Photo Booth Help?

    Hi, I recently downloaded More iChat Effects 2.0.4 from Apple.com. (http://www.apple.com/downloads/macosx/email_chat/moreichateffects.html) However, after installing it a lot of the effects do not work on my mac--version MAC OS X 10.6.3, which fits t

  • ORACLE 8 - Export - Import

    Hi Experts, I want to do an export - import of my Oracle DB. As I understand this could reduce my DB size. What method do you suggest? Can I use SAPINST 7.00 for the export -import? my SAP is 4.5B It´s the same SAP System ID and the same server I jus

  • ID CS2 -- SNAFU colors print way off after PDF prints, color setting changes

    I have messed things up on my InDesign pretty good. Working on ID 4.0.5 in CS2, with a corrupt Help file, on OS 10.4.11. It started on a particular document after printing to PDF, something got tweaked and the colors went almost inverted (gray is pin

  • Webpage Error

    Hi All, We have 5 dashboards Dash1, Dash2, Dash3, Dash4 Like When we click dash1 page it comes below error. How to fix below error "The current webpage is trying to open a site on your intranet Do you want to allow this?" Thanks Govind R