Hi askia!
I�m a biginner too and i hope i understood your question right.
I also had to find out the way to activate an exe file
from a director movie and found this code. Try it out! It worked for me.
The exe file has to be in the same path than your director movie.

on mouseUp me
  set sFileStart = "exe_file name ??"

  set sPath = the moviePath
  set nFile = 1
  repeat while TRUE
    set sFile = getNthFileNameInFolder(the moviePath, nFile)
    if(sFile = EMPTY) then exit repeat

    if(sFile starts sFileStart) then
      open sFile
      exit repeat
    end if

    set nFile = nFile + 1
  end repeat
end

on exitFrame me
  go the frame
end

I hope it will work for you too!

/Pascal

----- Original Message -----
From: Askia Jones <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, August 30, 2001 4:20 PM
Subject: <lingo-l> INSTALL


> I'm a beginner in lingo and director.  And I was wondering how do you
> install an "installer" (example: quicktime installer or acrobat installer)
> from the disc, by clicking on a button in the actual director movie.
>
> Also, does the lingo path differ from mac to pc or  do you just make
> sure that you program the path to the designated folder that each
> platform installer is in.
>
> Please help.
>
> Thanks,
> -Askia
>
>
> [To remove yourself from this list, or to change to digest mode, go to
> http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
> email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]
>
>


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to