browserFinishedLoading

Typemessage
DictionaryLCS
LibraryLiveCode Script
Syntax
browserFinishedLoading <pUrl>
Summary

Sent when the given url has finished loading.

Introduced4.5.3
OSios, android
Platformsmobile
Parameters
NameTypeDescription
pUrl

The URL that has loaded.

Example
on browserFinishedLoading pURL
  put "Finished loading:" && pURL into field "Status"
  put pURL into field "URL"
end browserFinishedLoading
RelatedCommand: mobileControlCreate, mobileControlDelete, mobileControlSet
Function: mobileControlGet, mobileControlTarget, mobileControls
Message: browserStartedLoading, browserLoadRequest, browserLoadFailed
Description

Handle the browserFinishedLoading message to perform an action when a URL has finished loading in a native mobile browser control created using mobileControlCreate.

The browserFinishedLoading message is sent to the object containing the script that created the mobile browser control using mobileControlCreate when the URL has finished loading.

Note: The browserFinishedLoading message is sent in response to the webViewDidFinishLoad delegate method.