Chrisfleet
Programmer
Hi,
I have always found the drive letter for the end users drive by the following method
[if os_ver = "Win16" then
repeat with n := 0 to 25
drivecode := GetDriveType
if drivecode = 4 then
drive_letter := Char(65 + n)
exit repeat
end if
end repeat
SearchPath := drive_letter ^ ":\\bin\\mpegfile\\"
end if]
and then repeating using if os_ver ="Win32"
However, I have heard that this is an unreliable action in 20% of cases. Is this true??
The same source has also informed me that Mpeg does not in fact use a large amount of memory when playing.
The message that is displayed on the end users computer is that "Unable to load external movie driver for clip mpeg*. Possibly there is a driver missing or not enough memory"
All the drivers are correct and present.The end users that have reported this fault have 64MB of memory or less.
All help is greatly appreciated
I have always found the drive letter for the end users drive by the following method
[if os_ver = "Win16" then
repeat with n := 0 to 25
drivecode := GetDriveType
if drivecode = 4 then
drive_letter := Char(65 + n)
exit repeat
end if
end repeat
SearchPath := drive_letter ^ ":\\bin\\mpegfile\\"
end if]
and then repeating using if os_ver ="Win32"
However, I have heard that this is an unreliable action in 20% of cases. Is this true??
The same source has also informed me that Mpeg does not in fact use a large amount of memory when playing.
The message that is displayed on the end users computer is that "Unable to load external movie driver for clip mpeg*. Possibly there is a driver missing or not enough memory"
All the drivers are correct and present.The end users that have reported this fault have 64MB of memory or less.
All help is greatly appreciated