PDA

View Full Version : 1.40 AU bug: Shuffle script audio drop-out


Per Boysen
10-18-2009, 10:49 PM
Hi,

I'm having audio drop-outs at the very beginning of this script and similar:

!name Shuffle This

Wait cycle

if 8thsPerCycle = 16
Shuffle 16,?
endif
if 8thsPerCycle = 64
Shuffle 16,?
endif
if 8thsPerCycle = 10
Shuffle 10,?
endif
if 8thsPerCycle = 50
Shuffle 10,?
endif
if 8thsPerCycle = 12
Shuffle 12,?
endif
if 8thsPerCycle = 48
Shuffle 12,?
endif
if 8thsPerCycle = 14
Shuffle 14,?
endif
if 8thsPerCycle = 56
Shuffle 14,?
end

Jeff
11-02-2009, 04:19 AM
I am getting a click, but I think it is related to the old ShuffleMode=Reverse.

It looks like you were trying to do random shuffles. For that you need to
use "r" instead of "?", for example:

if 8thsPerCycle = 16
Shuffle 16,r
endif


That doesn't click for me. But there is a still a bug because
this "Shuffle 16,?" is the same as "Shuffle 16" using Shuffle Mode and
that shouldn't be clicking.

Per Boysen
11-02-2009, 10:56 AM
Thanks a lot! You are right, this is supposed to be a random shuffling script. I used "?" becuse it was posted as an example on this forum. So, if not an alternative to "r", what does "?" really do in a script?