Закрыть все вкладки, кроме выбранных
#Include <FF.au3>
_FFTabCloseAll()
Возвращаемое значение
| Успешное выполнение: | Значение 1 |
| Ошибка: | Значение 0 |
| @ERROR: |
0 ($_FF_ERROR_Success) |
Замечания
Связана с функциями
_FFTabAdd, _FFTabDuplicate, _FFTabClose, _FFTabExists, _FFTabGetLength, _FFTabSetSelected, _FFTabGetSelected
Пример
#Include <FF.au3>
_FFStart()
If _FFIsConnected() Then
; add a new tab with an URL
_FFTabAdd("http://ff-au3-example.thorsten-willert.de/")
sleep(3000)
; add a new blank tab and bring it to front
_FFTabAdd(default,true)
Sleep(3000)
; select the tab with "FF" in the label
_FFTabGetSelected("FF","label")
; shows the number of tabs
MsgBox(64,"Number of tabs:",_FFTabGetLength())
; closing all tabs except the current
_FFTabCloseAll()
Sleep(3000)
; closes FireFox
_FFQuit()
EndIf