Удалить динамический TextField as3
Я пытаюсь изменить четко сформулированную сюжетную линию 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;
}
Теперь я хочу удалить текстовое поле после создания, пожалуйста, помогите решить эту проблему.