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

  1. #1

    Default Launching Apps

    I have read through the blurb on opening an exe from director, however, it gives me a script error when trying this. I have tried all of the following:

    on mouseDown me
    open "1.exe"
    end

    on mouseDown me
    open 1.exe
    end

    Neither of these seem to work, could anyone let me know the code. Does the file need to be in something like the FSCOMMAND folder that Flash MX now requires?

    Please help.
    Cheers.



    calan@mighty.co.za webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Call windows apps from web apps
      I have 2 apps windows and web apps. I would like to call a windows app (.exe) from web apps. How do I do this?
    2. Ruby launching system apps?
      I have a UNIX machine and I want a ruby app that can launch UNIX commands like awk or sed...how would I implement this? use Shell.new?
    3. Web enabled apps/Thin client apps
      I'm writing an article and I need your informed opinions, so I ask you this: 1. Doesn't the web-enabled app generally run slower for one reason or...
    4. launching apps from expansion cards
      Are there any 3rd party launchers which allow launching apps from ANY directory on expansion cards and not only from the default /Palm/Launcher...
    5. launching from pdf
      Hi I need to launch various projectors from pdf's, the problem is that I am running out of room on the cd so I was looking into the the...
  3. #2

    Default Re: Launching Apps

    On 01 Dec 2003, "calan@mighty.co.za" [email]webforumsuser@macromedia.com[/email] wrote:
    > I have read through the blurb on opening an exe from director,
    > however, it gives me a script error when trying this. I have tried all
    > of the following:
    What does the script error say?
    > on mouseDown me
    > open "1.exe"
    > end
    You might try adding the moviePath

    open the moviePath &"1.exe"


    --
    Mark A. Boyd
    Keep-On-Learnin' :)
    Mark A. Boyd Guest

  4. #3

    Default Re: Launching Apps

    All files are in the root of the cd so there isn't one.

    I must be an idiot as, bizarely, I'm not new to this but am stumped on something as simple as this.




    calan@mighty.co.za webforumsuser@macromedia.com Guest

  5. #4

    Default Re: Launching Apps

    On 01 Dec 2003, "calan@mighty.co.za" [email]webforumsuser@macromedia.com[/email] wrote:
    > All files are in the root of the cd so there isn't one.
    But there is. That path might be G:\, but it still counts as a path. The
    advantage of using 'the moviePath' is that it will return the full path to
    the projector or movie - you don't need to know ahead of time what that
    path might be.
    > I must be an idiot as, bizarely, I'm not new to this but am stumped on
    > something as simple as this.
    Actually, open is the idiot here. It has no return code to inform you of
    success/failure. I recommend using a 3rd party Xtra instead of Lingo's
    'open'.

    Buddy API, DirectOS, FileXtra, and possibly others all have return codes
    for their equivalent run program methods. Links to all of them can be found
    on The Mile-High Table O'Products at [url]http://www.updatestage.com[/url]



    --
    Mark A. Boyd
    Keep-On-Learnin' :)
    Mark A. Boyd 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