 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
majkinetor
Joined: 24 May 2006 Posts: 3644 Location: Belgrade
|
Posted: Tue May 15, 2007 6:55 am Post subject: |
|
|
2drmurdoch
Sorry, i didn't see this.
It looks like you found FM3 which is still unreleased.
Anyway, to disable TC you just specify path to explorer in File Manager in Setup instead TC. Its that easy
Please remove news.txt from above. I will release FM3 soon when it is finished. _________________
 |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 3644 Location: Belgrade
|
Posted: Tue May 15, 2007 6:57 am Post subject: |
|
|
| Quote: | | Is it possible that all 9 of my computers on the LAN could share 1 menu.ini file ? |
Yes. Just point each of them to the network location they can access. The problem currently is that if Computer1 change the menu, Computer2 will not see it without reloading. This will not going to happen in FM3 final.
You can use Environment or Pseudo variables to create "portabile menus". For instance, to have My Documents on every computer point to the same folder you will use pseudovar for My Documents (as the path to it is different on any computer, but the meaning is the same) _________________
 |
|
| Back to top |
|
 |
rogal
Joined: 23 Dec 2007 Posts: 51 Location: Austin
|
Posted: Mon May 26, 2008 5:01 pm Post subject: Does not work in Vista? |
|
|
majkinetor,
Favmenu does not work in Vista?
I recently installed Vista Ultimate and in windows explorer, it works OK, but in Open/Save dialog, when I select a folder through the Favmenu, a new explorer window at that folder comes up, instead of folder changing in Open/Save dialog. |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 3644 Location: Belgrade
|
Posted: Tue May 27, 2008 11:00 pm Post subject: |
|
|
Ye, I noticed that. Dialog is changed. Should be easy to fix... _________________
 |
|
| Back to top |
|
 |
Maddog_ Guest
|
Posted: Fri Jun 13, 2008 11:50 pm Post subject: Loving Favmenu |
|
|
Hi,
I'm really loving favmenu, very convenient, especially with Open dialogs.
I think that a great feature would be to show the open directories in windows explorer as well as TC (for people that don't work with TC).
Very little of the people I know use TC, but many said that the options to "jump" to currently open windows explorer directories from Open File dialogs is a great idea.
Also, is there a free (commandline maybe?) app that allows resizing icons to the size used by favmenu? I use BatchIconExtractor to get icons from files, but the icons turn out too big.
Thanks,
Maddog |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 3644 Location: Belgrade
|
Posted: Sat Jun 14, 2008 10:11 am Post subject: |
|
|
All those features are in Favmenu3 which is not yet released. _________________
 |
|
| Back to top |
|
 |
Maddog_ Guest
|
Posted: Sat Jun 14, 2008 6:24 pm Post subject: |
|
|
| Great to hear. thanks! |
|
| Back to top |
|
 |
mai9
Joined: 17 Mar 2008 Posts: 29 Location: Barcelona, Catalonia
|
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 3644 Location: Belgrade
|
Posted: Sun Jun 15, 2008 11:30 am Post subject: |
|
|
Nope. This thread is outdated, its no longer maintaned. _________________
 |
|
| Back to top |
|
 |
Micha
Joined: 15 Nov 2005 Posts: 440 Location: Germany
|
Posted: Mon Aug 25, 2008 6:23 pm Post subject: Changes for Server2008 /Vista |
|
|
Hi,
I've made following changes to make the script work on Server 2008. It's a hack, but my aim was to make it work as fast as possible.
| Code: | Favmenu_DialogGetPath_Explorer()
{
global Favmenu_dlgHwnd, Favmenu_dlgInput
tv := Favmenu_FindWindowExId(Favmenu_dlgHwnd, "BaseBar", 0)
tv := Favmenu_FindWindowExID(tv, "ReBarWindow32", 0)
tv := Favmenu_FindWindowExID(tv, "SysTreeView32", 100)
TV_Initialise( FavMenu_dlgHWND, tv )
returnedPath := TV_GetPath()
if returnedPath <>
return returnedPath
;Nothing was returned. Perhaps Vista
FavMenu_GetExplorerInput()
;MsgBox, Editcontrol %Favmenu_dlgInput%
ControlGetText, EditCtrlPath, , ahk_id %Favmenu_dlgInput%
;Msgbox, %EditCtrlPath%
return %EditCtrlPath%
} |
| Code: | FavMenu_GetExplorerInput()
{
global
Favmenu_dlgInput := Favmenu_FindWindowExId(Favmenu_dlgHwnd, "WorkerW", 0)
Favmenu_dlgInput := Favmenu_FindWindowExID(Favmenu_dlgInput, "ReBarWindow32", 0)
;Remember last good value. If Vista, we need the value to retry
Favmenu_dlgInputOriginal := Favmenu_dlgInput
;Try Combobox. If Vista, that command fails
Favmenu_dlgInput := Favmenu_FindWindowExID(Favmenu_dlgInput, "ComboBoxEx32", 0)
if Favmenu_dlgInput = 0
{
;Perhaps Vista... ??? Use Favmenu_dlgInputOriginal
Favmenu_dlgInput := Favmenu_FindWindowExID(Favmenu_dlgInputOriginal, "Address Band Root", 0)
Favmenu_dlgInput := Favmenu_FindWindowExID(Favmenu_dlgInput, "msctls_progress32", 0)
}
Favmenu_dlgInput := Favmenu_FindWindowExID(Favmenu_dlgInput, "ComboBoxEx32", 0)
Favmenu_dlgInput := Favmenu_FindWindowExID(Favmenu_dlgInput, "ComboBox", 0)
Favmenu_dlgInput := Favmenu_FindWindowExID(Favmenu_dlgInput, "Edit", 0)
} |
Ciao
Micha |
|
| Back to top |
|
 |
Maddog_ Guest
|
Posted: Mon Nov 10, 2008 9:40 am Post subject: |
|
|
Any way to fix FavMenu3 or FavMenu2 to work in Vista?
I just got a new Vista laptop and really really REALLY miss the option to jump to TC directories with FavMenu.
It shows the directories correctly, but doesn't allow jumping to the directory in Open File dialogs. It just activates TC, doing nothing in the Open File dialogs.
Thanks! |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 3644 Location: Belgrade
|
Posted: Mon Nov 10, 2008 12:28 pm Post subject: |
|
|
I am using VISTA on one of my computers on the job so I planned to do this.
The vista OS doesn't work because its not the same dialog as before. _________________
 |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|