IE9でタブブラウズを無効にすると、タイトルがどこにも表示されない。
これもきっと仕様(By Design)なんでしょう。
あんまりなので、代わりにステータスバーに表示します。
IE Titler.hta
<head><title>IE Titler</title>
<script language=vbscript>
resizeTo 210,10
Set ies=CreateObject("Shell.Application").Windows()
setInterval "proc1",1000
Sub proc1
On Error Resume Next
Call proc2
End Sub
Sub proc2
For Each ie In ies
If InStr(LCase(ie.FullName),"iexplore.exe") Then
ie.StatusText=ie.Document.title
End If
Next
End Sub
</script>
</head>
« 「Web アーカイブ、単一のファイル (*.mht)」で「名前を付けて保存」する。(その3) | トップページ | バッチファイルで作るteeコマンド(その2) »