|
|
|
Detect MS Media Player v9
Added on 8/11/2003
|
|
Compatibilities:
Required Xtras:
Buddy API
|
This item has not yet been rated
|
Here's a little script I used to detect for version 9 of the windows media player. I used it as a frame script, that directed viewers to a section of the movie which provided installation options. You can modify it to suit your own needs. (Requires the Buddy API Xtra)
on exitFrame me
MSPlayer = baFileVersion(baReadRegString("Software\Microsoft\Windows\CurrentVersion\App Paths\wmplayer.exe", "", "","hkey_local_machine" ))
result = MSPlayer
if MSplayer <9 then
go to the frame
else
go to "setup"
end if
end
|
|