revBrowserInstances |
Type | function |
Dictionary | LCS |
Library | LiveCode Script |
Syntax | revBrowserInstances()
|
Summary | Returns a list of the open browser instances.
|
Introduced | 2.8.1 |
OS | mac, windows |
Platforms | desktop |
Example | local tInstances, tInstance
put revBrowserInstances() into tInstances
repeat for each item tInstance in tInstances
revBrowserClose tInstance
end repeat
|
Values | Name | Type | Description |
---|
return | | The revBrowserInstances function returns a comma-delimited list of
integer browser ids, or empty if no browsers are open.
|
|
Related | Command: revBrowserClose, revBrowserSet
Function: revBrowserOpen
Glossary: function
|
Security | network |
Description | Use the revBrowserInstances function to obtain a list of the ids of
all the open browser objects.
Note: For general information on using the browser library, see the
notes in the revBrowserOpen function reference.
|