1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
action( get(variable), ... ) array[ get(variable) ] <xmlelement attribute="get:variable" ... /> 获取变量或标签中属性的值. 领主提醒:获取变量的值,必须配合其他动作使用或在属性中调用,否则获取没有意义. 参数: •variable ◦变量名称. ◦当获取的变量不存在(未创建)那么则会返回null值. 注意:有些动作会自动获取语法表达式中变量的值,这情况下无需使用get. 样例: set(dstvar, get(srcvar)); looktohotspot(get(name)); lookto(get(h), get(v), get(f)); showtext(get(msg)); tween(var,get(dstval)); set(pic, spot1); set(hotspot[get(pic)].visible, false); trace('xyz=', xyz, ' get(xyz)=', get(xyz)); txtadd(msg, 'fov=', get(view.fov)); |