|
|
|
Wait for MPEG with MCI commands
Added on 6/8/1999
|
Uses MCI commands to wait for MCI MPEG
--Copyright 1999 Chuck Neal
--chuck@mediamacros.com
--If you find this code helpful, send me an e-mail and let me know. :-)
on exitFrame
mci "status mpeg mode"
set mpegMode = the result
if (offset("PLAY", mpegMode) > 0) then
go the frame
end if
end
|
|