查看动态文本字段的动作脚本

您可以查看将文本从外部文本文件加载到动态文本字段中的动作脚本。该脚本使用 LoadVars 动作将 safetyfeatures.txt 内容加载到 newFeatures 文本字段中。

  1. 在时间轴中,选择“动作”图层的第 1 帧。
  2. 选择“窗口”>“开发面板”>“动作”,或者按 F9 键。

    该动作脚本如下所示:

    // Load text as variable and assign it to dynamic text field
    Features_lv = new LoadVars();
    Features_lv.onLoad = onText;
    Features_lv.load("safetyfeatures.txt");
    function onText() {
    
    
      newFeatures_txt.text = Features_lv.safetyFeatures;
    
    }
  3. 关闭“动作”面板。