ActionScript 3 随机播放数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 随机播放数组相关的知识,希望对你有一定的参考价值。

private function shuffleArray($array:Array):Array
{
	var shuffledArray:Array = new Array();

	while ($array.length > 0) {
		shuffledArray.push($array.splice(Math.round(Math.random() * ($array.length - 1)), 1)[0]);
	}
			
	return shuffledArray;
}

以上是关于ActionScript 3 随机播放数组的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 数组 - 随机短路

ActionScript 3 独特的随机数组

ActionScript 3 从数组中选择一个随机项

ActionScript 3 AS3随机化数组

ActionScript 3 随机化一个数组

ActionScript 3.0 随机化数组、显示数字并拼接该数字