Windows distributions
Roger.E.Eller at sealedair.com
Roger.E.Eller at sealedair.com
Thu Jan 17 11:29:01 EST 2002
Steve,
I think that I can address your problem #2.
> 2) When I build a Windows distribution I seem to loose the path to my QT
> movies. I have a set of stack scripts that work on the Mac side w/o
> problems. Is there some other procedure I need to use on the Windows side
so
> that the QT movies are accessed properly?
>
> Steve Messimer
Here is a script that I put into apps that need to work on multiple
platforms.
if the platform is "SGI IRIS" then
put "/usr/myprograms/videos/" into PathToMovies
else
if the platform is "Linux" then
put "/usr/myprograms/videos/" into PathToMovies
else
if the platform is "MacOS" then
put "/Macintosh HD/myprograms/videos/" into PathToMovies
else
if the platform is "Win32" then
put "C:/myprograms/videos/" into PathToMovies
end if
end if
end if
end if
~Roger
More information about the use-livecode
mailing list