我正在尝试修改清晰的故事情节 sdk。(https://www.articulate.com/support/storyline/articulate-storyline-sdk)
他们正在使用 as3 并像下面的代码一样动态创建所有文本字段
if (this.textField != null)
{
if (m_bWrapListItems)
{
this.textField.Autosize = true;
this.textField.Wrap = true;
if (m_bAutoNumber)
{
this.textField.SetHangingIndent(m_strNumber);
this.textField.Text = m_strNumber + "\t" + m_strTitle;
}
}
else
{
this.textField.Truncate = true;
this.textField.ClearHangingIndent();
this.textField.Text = (!m_bAutoNumber) ? m_strNumber + " " + m_strTitle : m_strTitle;
}
现在我想在创建后删除一些文本字段,请帮助解决这个问题。