table.visitOpenDatabases
| Syntax |
table.visitOpenDatabases (adrvisitproc)
|
| Params |
adrvisitproc is the address of a script to be invoked for every open root.
|
| Action |
Visit every open root file including Frontier.root and execute the script pointed to by adrvisitproc for every file.
|
| Returns |
The results of the last execution of the script pointed to by adrvisitproc. If it returns false, this verb returns false and processing is terminated.
|
| Examples |
table.visitOpenDatabases (@dialog.notify) » true
Displays the file paths of all open roots. |
| Notes |
adrvisitproc must take a single parameter that can be coerced from a filespec type and it must return a boolean result. No assumptions should be made about the order in which the open root files are visited. This verb is new in Frontier 6.1.1.
|
| See Also |
mainResponder.visitDatabases
|