我在编写 .htmlText 描述之后出现问题goToAndStop(),我什至不确定这是否是放置代码的正确位置......任何和所有反馈将不胜感激。
代码:
stop();
inst_brandOne.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_4);
function fl_ClickToGoToAndStopAtFrame_4(event:MouseEvent):void
{
    gotoAndStop("agua");
    switch (evt.target.name) {
        case "agua" :
            description.htmlText = text10;
            break;
    }
    var text10:String  = "<b>DESCRIPTION. </b>";
}
当您的用户被带到“agua”部分时,我想让我的描述出现......
感谢您的关注,我在这里真的很挣扎。