我试图测试一些字符串,但没有跟踪输出。我使用的是Flash CS6,然后我安装了Flash CC,然后一切都很好。但后来我创建了另一个循环现在同样的事情。这是我的代码:
for (tempNum = lastCharNum; tempNum <= 7; tempNum++) {
trace(tempNum); // this outputs nothing
if (arr[tempNum] != String.fromCharCode(9)) {
firstCharNum = tempNum;
trace(firstCharNum); // this outputs nothing
}
}
我试过了:
for (tempNum = lastCharNum; tempNum <= 7; tempNum++) {
txt.text = String(tempNum); // this doesn't make change to the textfield
if (arr[tempNum] != String.fromCharCode(9)) {
firstCharNum = tempNum;
txt.text = String(firstCharNum); // this doesn't make change to the textfield
}
}
同样的事情,没有任何反应。
答案 0 :(得分:1)
确保未在发布设置中选中“忽略跟踪语句”。如果未选中,请尝试文件&gt;发布和控制&gt;测试影片&gt;在Flash Professional中查看是否会得到不同的结果。