Pythoncard を使用して、Python プロジェクトにテキストエリアを作成しました。
問題は、プロジェクトでそれを呼び出してテキストを変更する方法がわからないことです。これは myTextArea と呼ばれます。
ありがとう
Pythoncard を使用して、Python プロジェクトにテキストエリアを作成しました。
問題は、プロジェクトでそれを呼び出してテキストを変更する方法がわからないことです。これは myTextArea と呼ばれます。
ありがとう
PythonCard で生成された GUI クラス内から:
self.components.myTextArea.clear() ## clear the TextArea
self.components.myTextArea.text = "initial text" ## directly set text
self.components.myTextArea.appendText("\nhello world") ## append text
self.components.myTextArea.writeText("\nhello world2") ## append text
ここで TextArea のドキュメントを参照してください: http://pythoncard.sourceforge.net/framework/components/TextArea.html
使用したいメソッドはappendTextとwriteTextだと思います