tell QuickTime Player to Loop playback?

I’ve been searching everywhere for the command I give QuickTime Player to set Looping to be on. I want my applescript to open a movie and play it looping. What’s the secret?

Try something like this, wplate:

tell application "QuickTime Player"
	open (choose file of type {"public.movie"} without invisibles)
	tell movie 1
		set looping to true
		play
	end tell
end tell

Ah! that little embedded tell did the trick. Thanks!