Issue
Is there any way to use more than one thread in MIT App Inventor? I'm trying to keep a while loop going while the app does other things, is this possible?
Solution
No, that's not possible, App Inventor is single threaded, see also the model of event processing in App Inventor by Lyn.
You therefore should better use a clock
component instead of a while
loop.
See also my doSomething example
Answered By - Taifun
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.