0

明確なストーリーライン 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;
                }

作成後にいくつかのテキストフィールドを削除したいので、この問題の解決を手伝ってください。

4

1 に答える 1