在动作脚本中选择随机变量

时间:2011-02-16 00:23:29

标签: variables actionscript random

是否可以从动作脚本中的变量中随机选择?

我尝试使用或 -

question.text = question1 || question.text = question2;

感谢您的帮助。

2 个答案:

答案 0 :(得分:0)

如果你想要一个随机变量,请使用数组:

var x:int = 5;
var y:int = 1;
var z:int = "string";
var w:int = "bla";

var randomSelector:Array = [x, y, z, w];
var random:* = randomSelector[Math.floor(randomSelector.length * Math.random())];

// random is now a random variable from either x, y, z, or w

答案 1 :(得分:0)

尝试将选项放入数组中,然后从该数组中随机选择一个索引。

var options:Array = ["Hello", "World", "I'm", "alive"];
var randomlySelectedOption:String = options[Math.floor(options.length * Math.random())]