Private WebView1 As UltimateWebView
Private web As WebView ' usato internamente
Private numero As Int
Private npagine As Int
Private Label2 As Label
Private Panel1 As Panel
Private downlistner As UltimateDownloadListener
End Sub
'This event will be called once, before the page becomes visible.
Private Sub B4XPage_Created (Root1 As B4XView)
Root = Root1
Root.LoadLayout("webzine_number")
web.Initialize("")
Label1.text="apri la nostra webzine"
Panel1.Width=0
downlistner.Initialize2("downlistner",WebView1)
end sub
Sub downlistner_FileDownloadInitialized (Properties As DownloadProperties) 'Works from API level 1 and above.
downlistner.StartFileDownload(Properties,"TEST","",True,True)
End Sub