[Free] Extended Web Viewer Extension

Hi All :wave: ,
Today myself and @ILoveThunkable release the Version 2 of the Extended WebViewer extension. This version includes support for downloading files that can’t be viewed directly in a Web Viewer.

Version 2

New blocks:

  • OnDownloadNeeded 

    This event indicates that the content in the URL pointed cannot be viewed and needs to be downloaded . The event also provides additional info required to download a file using DownloadFileblock .
    :one: content length is the size of the file to be downloaded in bytes.
    :two: contentDisposition is a header that is received from the server and contains necessary information to name the file automatically if the filename is left blank in DownloadFile block
  • OnDownloadFinished

    Indicates that the file has finished downloading .
  • OnErrorOccured

    Indicates that the webviewer encountered an error while loading a webpage
    Please refer to the codes from Android Documentation
  • OnLoadingStarted

    An event to indicate that a webpage has started loading ( either from Webviewer.GoToUrl or with the Reload block from this extension ).
  • OnLoadingFinished

    Indicates that the loading of a webpage is completed.

  • DownloadFile

    This function can be used to download a file using the default Download Manager of Android. Use this function in the OnDownloadNeeded to event to download a file .
Leave the filename empty to automatically name the file based on the information from the server
  • Show Notification

    Set this true to show notification of the download after completion.
    Note that a notification is always shown while the download is in progress. This block is only used to determine whether a notification is shown after completion .
 :warning: Also the After Reload event is deprecated with this version as it was not accurate and fired before the webpage was completely reloaded. Use OnLoadingFinished block instead.

Download

Previous
Next Post »