On Jun 23, 2006, at 10:29 AM, [EMAIL PROTECTED] wrote:

I've noticed that when a Quicktime VR movie is played through Apple's
Quicktime player the motion around 360 degrees is smooth. However, the same movie shown through Revolution's player results in a jerky stepping motion. Any
suggestions?   Thanks.

What version of Rev are you using? In 2.7 there is a qtIdleRate global property. It defaults to 50. For QTVR you might want to try something like 10.
You could put something like this in your player object.

local sDefaultIdleRate

on mouseDown
    put the qtIdleRate into sDefaultIdleRate
    set the qtIdleRate to 10
end mouseDown

on mouseUp
    set the qtIdleRate to sDefaultIdleRate
end mouseUp


--
Trevor DeVore
Blue Mango Learning Systems - www.bluemangolearning.com
[EMAIL PROTECTED]


_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to