> Ok , those have to be the last changes, run out of time
> Could you let me know how many screens your are in?
>
> Regards Nic
>
>
>>> ** Original Subject: RE: SV: <lingo-l> Buddi API
>>> ** Original Sender: =?iso-8859-1?Q?Mikael_Wir=E9n?=
> <[EMAIL PROTECTED]>
>>> ** Original Date: Wed, 20 Sep 2000 19:42:18 +1200 (NZST)
>
>>> ** Original Message follows...
>
>>>
>>>> Hi Lingos!
>>> hi Mahmood.
>>>> I am new to Lingo.
>>> been there too =)
>>>> I am using BuddyAPI extra to detect whether QT is installed in an IBM
>>>> machine or not.
>>>> And after it I want to install QT automatically if it is not installed.
>>>> How I can do so?
>>>> I tried to check in this way;
>>>
>>>> on movieStart
>>>> put baVersion("qt3") into field "abc"
>>>> end movieStart
>>>> but after starting the movie there is nothing in field "abc"
>>>
>>> and there shouldn�t be.
>>> if you try it like this
>>> Outlook lingo
>>>
>>> on startMovie
>>> baRegister (your licencenumber)
>>> --and then
>>> put string(baVersion("qt3") into field "abc"
>>> --though i feel strange about theis qt3 stuff shouldn�t it just say
>> qt??????
>>> end startMovie
>>> please help me.
>>>
>>>> thanx in advance.
>>> Hope it helps
>>> Micke
>>>
>>>
> ______________________________________________________________________
> ___
>>> Mikael Wir�n
>>> Netcompetence AB
>>> Kungstensgatan 35
>>> SE-113 57 STOCKHOLM
>>> Sweden
>>>
>>> Phone +46 8 673 23 10
>>> Mobile +46 709 15 24 30
>>> Telefax +46 8 673 23 09
>>> E-mail [EMAIL PROTECTED]
>>> www.netcompetence.se
>>>
> ______________________________________________________________________
> ___
>>>
There is no need to use BuddiApi to check which version of quicktime there
is installed....
The "QuicktimeSupport" xtra that comes with director 7 has a function
"quickTimeVersion" that returns the version number
-- message box
put quickTimeVersion()
-- 4.1600
so your startmove script could look something like this
on startMovie
-- this script checks if quicktime needs to be installed
-- alerts the user
-- runs the installer
-- and quits the projector
if quickTimeVersion() < 3.0 then
alert "You will need to install quicktime."
open (the applicationPath & "install\qt40install.exe")
halt
end if
end
-> you will need to put the exact path to the install .exe file after the
open command (right now its just a 'dummy' path from the top of my head)....
Hope it helps,
Ask
.....ULTIMATUM........
Ask M�ller - Lingo++
[EMAIL PROTECTED]
Tlf. 33 25 21 12
Mobil 26 72 21 15
......................
[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!]