Dear All;
if I run the script I get the last value for para3, is there a way to show each value in turn, like to wait for each script before starting the next one.
if I run the script I get the last value for para3, is there a way to show each value in turn, like to wait for each script before starting the next one.
Javascript:
Dim Javascript As String
Javascript = $"B4A.CallSub('ProcessHTML', true, document.getElementById('para1').value,'para1')"$
WebViewExtras1.executeJavascript( Javascript)
Javascript = $"B4A.CallSub('ProcessHTML', true, document.getElementById('para2').value,'para2')"$
WebViewExtras1.executeJavascript( Javascript)
Javascript = $"B4A.CallSub('ProcessHTML', true, document.getElementById('para3').value,'para3')"$
WebViewExtras1.executeJavascript( Javascript)
End Sub
Sub ProcessHTML(Html As String,nm As String)
ToastMessageShow($"${Html} - ${nm}"$,True)
End Sub