I'm happy to release B4J v5.50: https://www.b4x.com/b4j.html
This version adds support for resumable subs (Wait For / Sleep): https://www.b4x.com/android/forum/posts/498072/
This is the most important language improvement since the addition of classes in B4A v2.0.
Resumable subs make it much simpler to handle asynchronous tasks.
Additional improvements:
- Debugger improvements.
- Node_AnimationCompleted event.
Example:
This version adds support for resumable subs (Wait For / Sleep): https://www.b4x.com/android/forum/posts/498072/
This is the most important language improvement since the addition of classes in B4A v2.0.
Resumable subs make it much simpler to handle asynchronous tasks.
Additional improvements:
- Debugger improvements.
- Node_AnimationCompleted event.
Example:
B4X:
Sub btn_Action
Dim b As Button = Sender
For i = 10 To 0 Step - 1
b.Text = i
Sleep(100)
Next
b.Text = "Takeoff!"
End Sub