hi
i am opening a quicktime movie in fullscreen mode like this:
tell application "QuickTime Player"
activate
open file ("/video.mov" as POSIX file)
set looping of document (name of front window) to true
present document (name of front window) scale normal mode normal
pause document (name of front window)
end tell
works nicely.
but then i want to cue in it:
tell application "QuickTime Player"
set current time of document (name of front window) to (59 * (time scale of document 1))
play document (name of front window)
end tell
works aswell. BUT it leaves the presentation mode. i want quicktime to stay in presentation mode.
any suggestions?
thanks,
m