Other B4J v5.50 BETA is available for download

Status
Not open for further replies.

Erel

B4X founder
Staff member
Licensed User
Longtime User
I'm happy to release B4J v5.50 BETA: www.b4x.com/b4j/files/beta.exe

This version adds support for resumable subs: 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 Button1_Action
   Dim left As Double = Button1.Left
   For i = 1 To 5
     'right
     Button1.SetLayoutAnimated(100, left + 100 / i, Button1.Top, Button1.Width, Button1.Height)
     Wait For Button1_AnimationCompleted
     'left
     Button1.SetLayoutAnimated(100, left - 100 / i, Button1.Top, Button1.Width, Button1.Height)
     Wait For Button1_AnimationCompleted
   Next
   Button1.SetLayoutAnimated(100, left, Button1.Top, Button1.Width, Button1.Height)
End Sub

animation.gif
 

Swissmade

Well-Known Member
Licensed User
Longtime User
Great was waiting for this functions.
And the Debugger update.
Thanks Erel
 
Upvote 0

Cableguy

Expert
Licensed User
Longtime User
I guess EREL waits to see if someone finds a bug with the new wait for and resumable sub features...
I would say another week
 
Upvote 0

Beja

Expert
Licensed User
Longtime User
Thanks Erel for the great improvement of b4j
the button animation looks like iOS when one types the wrong password (no.. no.. no!)
 
Upvote 0
Status
Not open for further replies.
Top