running an exe file from a director movie

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

  1. #1

    Default running an exe file from a director movie

    I've just got Director MX and probably want to do the impossible already but...

    I have an exe file which is a 3D interactive animation which I can't get in an alternative format. Is it possible to open this file from a director movie? I had in mind a button, which when pressed will open the file. I will be publishing the whole project on a CD. If it is possible, how do I do it?

    Hope you can help a newbie to director.


    zapcat webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Director is not responding but still running! HELP!
      Hi y'all I am having a serious problem here. As we speak I have a dir-file opened in Director 8.5. Now I want to save the file, but all buttons...
    2. Flash Movie Running Slow In Director
      I have Created a number of presentation in flash. But each time i am faceing a problem. When i import and run the presentation in directior. it runs...
    3. How to stick Director movie into .chm file?
      Does anybody know how to out Director movie into .chm file? Any suggestion would be greatly appreciated. Thanks.
    4. Director running 24/7
      If anyone have any experience, good or bad, by running Director-movies 24 hours a day, 7 days a week, please tell. We are going to make a multimedia...
    5. Can Director MX save a movie as a Director 8.5 file?
      Can Director MX save a movie as a Director 8.5 file? I can't find this option in "save as" or "export." HELP!
  3. #2

    Default Re: running an exe file from a director movie

    use "open"

    "zapcat" <webforumsuser@macromedia.com> wrote in message
    news:buoojq$lv1$1@forums.macromedia.com...
    > I've just got Director MX and probably want to do the impossible already
    but...
    >
    > I have an exe file which is a 3D interactive animation which I can't get
    in an alternative format. Is it possible to open this file from a director
    movie? I had in mind a button, which when pressed will open the file. I
    will be publishing the whole project on a CD. If it is possible, how do I
    do it?
    >
    > Hope you can help a newbie to director.
    >
    >

    JPrice Guest

  4. #3

    Default Re: running an exe file from a director movie

    Look up 'open' in the Lingo dictionary.


    Andrew Quested
    [url]http://www.quested.com.au[/url]
    Questy webforumsuser@macromedia.com Guest

  5. #4

    Default Re: running an exe file from a director movie

    Thanks for responding so quickly!

    I've looked at "open" in the lingo dictionary I can sort of see how it works but I can't get the syntax right. Plus there is the application which should open it....

    According to the dictionary I should enter -

    open {whichDocument with} whichApplication

    So that would be (for me) -

    open "library.exe" with ?????????

    I'm sorry for asking such a basic question, but I'm this is all pretty new to me.Text


    zapcat webforumsuser@macromedia.com Guest

  6. #5

    Default Re: running an exe file from a director movie

    You don't need the "with" part. That would be if you had e.g.
    open the moviePath & "myFile.dat" with the moviePath & "myDatProcessor.exe"

    Notice the use of "the moviePath" to make sure that an absolute path to the
    files is used.

    Andrew

    Andrew Morton Guest

  7. #6

    Default Re: running an exe file from a director movie

    Andrew,

    Thanks for your patient advice. I think my problem revolves around the fact I usually scripts pre-prepared in the library which comes with Director. This is the first time I've ventured in writing Lingo.

    Anyway, heres what I'm doing -

    In lingo this is all I'm putting in - open the "library.exe"

    To which Lingo gives me this message - Script error: Handler definition expected (followed by) open? the "library.exe"

    Is there a pre-pprepared script in director for opening an exe file? If not can you help me with what I should put in Lingo?

    I just don't seem to be able to find a solution to this.

    Thanks

    Mark


    zapcat webforumsuser@macromedia.com Guest

  8. #7

    Default Re: running an exe file from a director movie

    "zapcat" [email]webforumsuser@macromedia.com[/email] wrote in
    news:buu26i$9ig$1@forums.macromedia.com:
    > In lingo this is all I'm putting in - open the "library.exe"
    >
    > To which Lingo gives me this message - Script error: Handler
    > definition expected (followed by) open? the "library.exe"
    All Lingo needs to reside in a handler. You define a handler with the 'on'
    keyword and end it with 'end'

    on someHandlerName
    do that Lingo that you do so well
    end

    This and much more information you'll find helpful is covered in the Using
    Director manual (F1) in the "Writing Scripts with Lingo" chapter. See
    Scripting Basics and Lingo Terminology for starters.


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

  9. #8

    Default Re: running an exe file from a director movie

    > In lingo this is all I'm putting in - open the "library.exe"
    >
    You just need:
    open "library.exe"


    JPrice Guest

  10. #9

    Default Re: running an exe file from a director movie

    Thanks everyone. Got it all working!!


    zapcat webforumsuser@macromedia.com 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