IEのアドレスバーの表示/非表示を切り替える。
メニューから変更できなくなったので。
アドレスバー非表示.vbs
Set Shell=CreateObject("Shell.Application")
For Each ie In Shell.Windows()
If InStr(LCase(ie.FullName),"iexplore.exe")=0 Then
ElseIf ie.AddressBar Then
ie.Visible=False
ie.AddressBar=False
ie.Visible=True
End If
Next
アドレスバー再表示.vbs
Set Shell=CreateObject("Shell.Application")
For Each ie In Shell.Windows()
If InStr(LCase(ie.FullName),"iexplore.exe")=0 Then
ElseIf ie.AddressBar=False Then
ie.Visible=False
ie.AddressBar=True
ie.Visible=True
End If
Next
これらはお気に入りバーに入れて起動するとよいでしょう。
« IEのアクティブタブで開く。新しいタブで開く。新しいウィンドウで開く。 | トップページ | アドレスバーのないIEを起動する。 »
最近のコメント