AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

24/7 Script (Finderbar)

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
Landvermesser



Joined: 03 Nov 2004
Posts: 51

PostPosted: Mon Nov 08, 2004 11:08 am    Post subject: 24/7 Script (Finderbar) Reply with quote

Hi all!

I have written the program using AutoHotKeys script for work, probably, it will be interesting to you.
Download it is possible here: http://landvermesser.tripod.com/
It has been written for http://www.aqua-soft.org/board/index.php?

Please any opinions, remarks, offers. Corrections in a script are welcomed especially.

Smile
Back to top
View user's profile Send private message Visit poster's website
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10464

PostPosted: Mon Nov 08, 2004 1:49 pm    Post subject: Reply with quote

I 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.

I can tell from the source you put a lot of effort and expertise into it.

One thing I did notice is that you might be building Gui #2 (the about box) multiple times. If so, you should only call "Gui, 2:Add" for the same controls after a call to "Gui, 2:Destroy". If you want to avoid destroying the window, do the "Gui 2:Add" series only once, either upon startup or upon "first use". Otherwise, you wind up with stacks of duplicate controls on top of each other.

Nice work!
Back to top
View user's profile Send private message Send e-mail
Landvermesser



Joined: 03 Nov 2004
Posts: 51

PostPosted: Tue Nov 09, 2004 10:06 am    Post subject: Reply with quote

Thanks very much! Smile

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.
Back to top
View user's profile Send private message Visit poster's website
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10464

PostPosted: Wed Nov 10, 2004 5:39 am    Post subject: Reply with quote

Thanks, I'll try it.
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group