forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowserClosing.lcdoc
More file actions
39 lines (24 loc) · 847 Bytes
/
Copy pathbrowserClosing.lcdoc
File metadata and controls
39 lines (24 loc) · 847 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: browserClosing
Synonyms: xbrowser_closing
Type: message
Syntax: browserClosing <pInstanceId>
Syntax: XBrowser_Closing <pInstanceId>
Summary:
Sent when a browser instance is closing
Introduced: 2.8.1
OS: mac, windows
Platforms: desktop
Security: network
Example:
on browserClosing pInstanceId
delete line (lineOffset(pInstanceId, sInstances)) of sInstances
end browserClosing
Parameters:
pInstanceId:
The integer identifier of the browser object about to close
Description:
The <browserClosing> message is sent to the current card of a stack
containing a browser object when the browser object is about to close.
>*Note:* For general information on using the browser library, see the
> notes in the <revBrowserOpen> <function> reference.
References: revBrowserClose (command), revBrowserOpen (function), function (glossary)