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

  1. #1

    Default .exe opener Lingo?

    Hey folks.

    Is there a Lingo that I can create on a button that will open an EXE file created from Director?

    would open window "myMovie.exe" work?

    thanksText


    flecky webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Go To URL in Opener - Javascript
      It works fine but opens the URL in the original window leaving it behind the popup window. I need it to put the original window out in front and...
    2. Refreshing or Redirecting Opener Window
      Is it possible to redirect or refresh the contents of Page1 from within Page2 where Page2 was opened by Page1?
    3. Opener Page ID
      which is the best method to know if a aspx page was called from within another aspx page of my project and not called directly from the...
    4. RePosting window.opener windows to server.
      Hi , I know that this is something belongs to IE but , I think sometimes asp.net developers encounter this problem. Sometimes we need to repost...
    5. window.opener.location.href doesn't work in frame
      From parent windows, I have created a popup windows that comprises two frames. When I have clicked a link button in one of the frames, I would like...
  3. #2

    Default Re: .exe opener Lingo?


    Hi,

    You can launch your projector (EXE) within a Director movie. However the
    projector will be considered as ordinary application. For more sample
    scripts, please visit:

    <http://www.macromedia.com/go/12265>

    Best regards,

    Jayem Abania
    Macromedia Technical Support


    "flecky" <webforumsuser@macromedia.com> wrote in message
    news:br2hul$ipb$1@forums.macromedia.com...
    > Hey folks.
    >
    > Is there a Lingo that I can create on a button that will open an EXE file
    created from Director?
    >
    > would open window "myMovie.exe" work?
    >
    > thanksText
    >
    >


    Jayem Abania - MMTS Guest

  4. #3

    Default Re: .exe opener Lingo?

    Try,
    on mouseUp me

    open "myMovie"

    end

    cj

    "flecky" <webforumsuser@macromedia.com> wrote in message
    news:br2hul$ipb$1@forums.macromedia.com...
    > Hey folks.
    >
    > Is there a Lingo that I can create on a button that will open an EXE file
    created from Director?
    >
    > would open window "myMovie.exe" work?
    >
    > thanksText
    >
    >

    CJ Guest

  5. #4

    Default Re: .exe opener Lingo?

    On 08 Dec 2003, "flecky" [email]webforumsuser@macromedia.com[/email] wrote:
    > Hey folks.
    >
    > Is there a Lingo that I can create on a button that will open an EXE
    > file created from Director?
    >
    > would open window "myMovie.exe" work?
    Please notice the clear differences in the Lingo Dictionary (F1) between
    the 'open' Command and the 'open window' Window command.

    To put it in different words, 'open window' can only be used to open
    Director movies. These movies typically have a .dir, .dxr, or .dcr
    extension. This command is used to open a Movie In A Window (MIAW). See
    also: Lingo by Feature/Movies in a window.

    An EXE file created from Director (or any other application) is an
    executable program application. You should no longer think of it as a
    Director movie and it will not open in a window as a MIAW. It is now an
    application that you can run with the 'open' command.


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

  6. #5

    Default Re: .exe opener Lingo?

    thank you for your responses.

    On Jayem's recommendation, I went to the Director Tech notes and used the following:

    on mouseUp me
    open the moviePath & "myMovie.exe"
    end

    This did exactly what I was looking for!

    Thank you again.

    Mike

    ps. I was a Director user for 3 years before I took a new position at Penn State University...now I use Flash exclusively. I haven't used Director for a single project for a year-and-a-half, and am surprised at how much I've forgotten....what a shame!!! Happy Holidays.



    flecky webforumsuser@macromedia.com Guest

  7. #6

    Default Re: .exe opener Lingo?

    On 10 Dec 2003, "flecky" [email]webforumsuser@macromedia.com[/email] wrote:
    > ps. I was a Director user for 3 years before I took a new position at
    > Penn State University...now I use Flash exclusively. I haven't used
    > Director for a single project for a year-and-a-half, and am surprised
    > at how much I've forgotten....what a shame!!!
    Welcome back! Hopefully it will come back to you quickly.
    > Happy Holidays.
    Same to you and yours.


    --
    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