0
我的公司希望我爲其他人制作的.fla文件添加某些內容,並且自從高中畢業後,我從未學過關於閃存的任何知識。我開始瞭解這些東西,但這是我不知道如何處理的一件事。我在哪裏可以看到_root.xxx的內容
btnNext.onRelease = function(){
if(test==false){
test = true;
new Tween(_root.inform, "_x", Strong.easeInOut, _root.inform._x, Stage.width*-1, 20, false);
_root.jKey.gotoAndStop(2);
var sound:Tween = new Tween(_root.jKey, "_x", Strong.easeInOut, _root.jKey._x, 40, 20, false);
sound.onMotionFinished = function(){
_root.jKey.loginSound.gotoAndPlay(2);
_root.infoB.gotoAndStop(2);
test = false;
}
}
在代碼中有很多_root.xxx像_root.jKey.gotoAndStop(2)
,_root.infoB.gotoAndStop(2)
.etc 我搜索關於_root,他們都說這是訪問level(0)
的方式。但我不知道在哪裏找到_root之後的內容。我檢查了庫,並沒有像jKey或infoB這樣的文件。
我使用Adobe Flash 6,因此這個動作腳本,我認爲不是3,但1或2