Thanks very much!
Quote:
think I need a newer MSIE; mine is 6.0.2800 on Windows XP (with classic theme at the moment) and the toolbar never appears. Instead, I get a link to the folder itself.
The menu draws not MSIE, but Windows Explorer. MSIE draws service pop-up.
Try to start this from Finderbars folder:
Code:
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: Sven Karsten (landvermesser@felsenstein.org)
;
; Script Function:
; Registring Finderbar.
;
SetEnv, a, %A_WorkingDir%
StringReplace, a, a, \, /, all
MsgBox, 1, Finderbar, Finderbar will be registered in the folder %a%
IfMsgBox, CANCEL, Exit
RegWrite, REG_SZ, HKEY_LOCAL_MACHINE, Software\Microsoft\Internet Explorer\AboutURLs, Finderbar, file://%a%/index.html
RegWrite, REG_SZ, HKEY_LOCAL_MACHINE, Software\Microsoft\Windows\CurrentVersion\App Paths\Finderbar_Engine.exe, Path, %A_WorkingDir%
RegWrite, REG_SZ, HKEY_LOCAL_MACHINE, Software\Microsoft\Windows\CurrentVersion\App Paths\Finderbar_Engine.exe,, %A_WorkingDir%\Finderbar_Engine.exe
RegWrite, REG_DWORD, HKEY_CURRENT_USER, Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_WINDOW_RESTRICTIONS, explorer.exe, 0x00000000
RegWrite, REG_DWORD, HKEY_LOCAL_MACHINE, Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_WINDOW_RESTRICTIONS, explorer.exe, 0x00000000
RegWrite, REG_DWORD, HKEY_CURRENT_USER, Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_WEBOC_POPUPMANAGEMENT, explorer.exe, 0x00000000
RegWrite, REG_DWORD, HKEY_LOCAL_MACHINE, Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_WEBOC_POPUPMANAGEMENT, explorer.exe, 0x00000000
MsgBox, 0, AutoIt, Ready`!`n`nNow rightclick your taskbar and choose "Toolbars..." -> "new Toolbar" `nthen write in the box provided: about:Finderbar
Quote:
One thing I did notice is that you might be building Gui #2 (the about box) multiple times.
Yes, as in the previous version I received a error when tried to execute a command "Gui, 2:Destroy". But you are right, I'll try to correct it.