PDA

View Full Version : Looping QuickTime sounds?


Fenris
2003.07.24, 02:30 PM
Does anyone know how to set a quicktime sound/music/movie to loop?

...simple as that, really. :)

akisha
2003.07.24, 03:25 PM
Here it is in Carbon

MyMovie is a variable of the type 'Movie'


if IsMovieDone (MyMovie) then
begin
GoToBeginningOfMovie (MyMovie);
StartMovie (MyMovie)
end;

macboy
2003.07.24, 04:42 PM
That's Carbon? :blink:

OneSadCookie
2003.07.24, 04:50 PM
Well, QuickTime, which is a Carbon API.

I think what he meant to say was Pascal, though.

akisha
2003.07.24, 05:17 PM
I'm sorry for not making it clearer. That's Pascal with Carbon API calls. I just wasn't sure if he was using Cocoa or not.

Fenris
2003.07.24, 05:28 PM
IsMovieDone... It had to be a plain-English-simple solution just to mock me... :D

Thanks, akisha, and yep, I am in C++ Carbon.

Take care!