forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowserStartedLoading.lcdoc
More file actions
39 lines (27 loc) · 995 Bytes
/
Copy pathbrowserStartedLoading.lcdoc
File metadata and controls
39 lines (27 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Name: browserStartedLoading
Type: message
Syntax: browserStartedLoading <pUrl>
Summary:
Sent when the given url has started to load.
Introduced: 4.5.3
OS: ios, android
Platforms: mobile
Example:
on browserStartedLoading pURL
put "loading" && pURL && "..." into field "status"
end browserStartedLoading
Parameters:
pUrl:
The URL that has started to load.
Description:
Handle the <browserStartedLoading> message to perform an action when a
URL has started to load in a mobile browser created using
<mobileControlCreate>.
The <browserStartedLoading> message is sent to the object containing the
script that created the browser control after a request has been allowed
and the URL has started loading.
References: mobileControlCreate (command), mobileControlDelete (command),
mobileControlSet (command), mobileControlGet (function),
mobileControlTarget (function), mobileControls (function),
browserLoadRequest (message), browserLoadFailed (message),
browserFinishedLoading (message)