在 App Inventor 中写入文本文件

Writing to text file in app inventor

在google上不断搜索后,我似乎仍然无法弄清楚app inventor 2的这个问题。 我的问题是如何在没有用户输入的情况下将初始值写入文本文件。例如,我想将“6”作为初始值存储在文本文件中,有一些方法可以通过单击按钮来实现,但是有没有一种方法可以在不让用户输入值的情况下存储初始值?每次应用 运行 时此值是否可用?还是每次都需要设置初始值?

非常感谢提前

is there a way to store the initial value without getting the user to enter a value?

通常您会使用变量来存储初始值。您不必将其存储在文件中!但是如果你喜欢使用文件,你可以使用Screen.Initialize事件

另见 documentation of the File component

Also would this value be available each time the app is run?

是的,但前提是用户没有手动删除文件...

or would I need to set the initial value each time?

请先tutorials学习App Inventor的基础知识!