Opening an external application with lingo

Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default Opening an external application with lingo

    Lingo "open" command does not seem to open/launch files with extension .msi. Is there a workaround to this? Are there any other commands that can be used instead of "open"?


    g11 webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. #39841 [NEW]: fopen is not opening external urls but opening local files
      From: sarvesh_borkar at yahoo dot co dot in Operating system: FreeBSD PHP version: 5.2.0 PHP Bug Type: Filesystem function...
    2. Opening external application in Mactintosh
      I have a link in my PDF which should open a standalone player (application) outside. The same button should open the .exe file in PC. When i link...
    3. external lingo scriptEditor 2004 is out now!
      lingo scriptEditor is an external authoring tool for Lingo Object-Oriented programming. It provides a professional script environment for Macromedia...
    4. printing external rtf or doc file with lingo
      hi everybody! i need to print an external text file in .rtf or .doc format with lingo, possibly without opening an external application. I've...
    5. projector starting external application using lingo
      I am creating a projector that will be running of a CD-ROM. The projector needs to be able to open up an html file using user's default browser and...
  3. #2

    Default Re: Opening an external application with lingo

    There´s not a chance of problem here...

    open "myFilePath" with the applicationPath & "program that opens .MSI files"

    open {whichDocument) with (whichApplication )

    You must specify the application you want to use for opening your msi
    files... If plan on distributing your director project you will have to
    provide users with the application to open msi files... Director does not
    automatically finds the application required to launch any format.

    for instance...

    open "testPDF.pdf" with the applicationPath & "reader/acrord32.exe"


    Arturo




    "g11" <webforumsuser@macromedia.com> escribió en el mensaje
    news:bqo74u$qmm$1@forums.macromedia.com...
    > Lingo "open" command does not seem to open/launch files with extension
    ..msi. Is there a workaround to this? Are there any other commands that can
    be used instead of "open"?
    >
    >

    Arturo Toledo Guest

  4. #3

    Default Re: Opening an external application with lingo

    Use an xtra like buddyAPI ([url]www.mods.com.au[/url]) or fileXtra4
    ([url]http://kblab.net/xtras[/url]) to open the file.

    Andrew

    Andrew Morton Guest

  5. #4

    Default Re: Opening an external application with lingo

    Hello and thanks for your replies.

    This .msi file is actually an install application for Quicktime. It launches similar to an exe file (by double-clicking on it). The lingo open command fails to launch this application due to the .msi extension and I'm not sure how

    open "myFilePath" with the applicationPath & "applicationName"

    would work, since the msi file IS an application. Any ideas?


    g11 webforumsuser@macromedia.com Guest

  6. #5

    Default Re: Opening an external application with lingo

    I can't tell if you've seen my previous reply because the web forums don't
    always keep up with the newsgroup, however, because explorer.exe "knows" what to
    do with .msi files and Windows knows where explorer.exe is, you could use

    open the moviePath & "installers\x.msi" with "explorer.exe"

    but I would not bet on it being reliable, and unlike using an xtra you do not
    get a result back to indicate if the operation was successful.

    Andrew

    Andrew Morton Guest

  7. #6

    Default Re: Opening an external application with lingo

    That´s right... the buddyAPI Xtra is the best solution for you.





    "Andrew Morton" <akm@in-press.co.uk.invalid> escribió en el mensaje
    news:bqqbeg$bn7$1@forums.macromedia.com...
    > I can't tell if you've seen my previous reply because the web forums don't
    > always keep up with the newsgroup, however, because explorer.exe "knows"
    what to
    > do with .msi files and Windows knows where explorer.exe is, you could use
    >
    > open the moviePath & "installers\x.msi" with "explorer.exe"
    >
    > but I would not bet on it being reliable, and unlike using an xtra you do
    not
    > get a result back to indicate if the operation was successful.
    >
    > Andrew
    >

    Arturo Toledo Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139