我是刷 5.5 的新手,我正在尝试为我的小学生建立一个测验。到目前为止,我已经完成了布局,创建了图像按钮,并且我使用 as3 来推进测验。
所以我正在寻找的是洗牌图像按钮/答案的能力。这是我到目前为止所拥有的示例。
the red ______
apple (button of apple) boy (button of boy) pineapple (button with pineapple)
在我的例子中,图片是按钮,正确答案是苹果。经过数小时的谷歌搜索,我试图创建一个数组。这是我的代码,我做错了什么,但我不知道是什么。请帮忙。
请帮忙。
function Main() {
var button:Array = [];
button.push("choice1");
button.push("choice2");
button.push("choice3");
ShuffleArray(button);
trace(button);
}
function ShuffleArray(button:Array)
{
for (var i:int = button.length-1; i >=0; i--)
{
var randomIndex:int = Math.floor(Math.random()*(i+1));
var itemAtIndex:Object = button[randomIndex];
button[randomIndex] = button[i];
button[i] = itemAtIndex;
提前致谢。
提前致谢。