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 

Favmenu 2.0 final
Goto page Previous  1, 2, 3, 4, 5, 6
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
majkinetor



Joined: 24 May 2006
Posts: 3644
Location: Belgrade

PostPosted: Tue May 15, 2007 6:55 am    Post subject: Reply with quote

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 Smile

Please remove news.txt from above. I will release FM3 soon when it is finished.
_________________
Back to top
View user's profile Send private message MSN Messenger
majkinetor



Joined: 24 May 2006
Posts: 3644
Location: Belgrade

PostPosted: Tue May 15, 2007 6:57 am    Post subject: Reply with quote

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
View user's profile Send private message MSN Messenger
rogal



Joined: 23 Dec 2007
Posts: 51
Location: Austin

PostPosted: Mon May 26, 2008 5:01 pm    Post subject: Does not work in Vista? Reply with quote

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
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 3644
Location: Belgrade

PostPosted: Tue May 27, 2008 11:00 pm    Post subject: Reply with quote

Ye, I noticed that. Dialog is changed. Should be easy to fix...
_________________
Back to top
View user's profile Send private message MSN Messenger
Maddog_
Guest





PostPosted: Fri Jun 13, 2008 11:50 pm    Post subject: Loving Favmenu Reply with quote

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

PostPosted: Sat Jun 14, 2008 10:11 am    Post subject: Reply with quote

All those features are in Favmenu3 which is not yet released.
_________________
Back to top
View user's profile Send private message MSN Messenger
Maddog_
Guest





PostPosted: Sat Jun 14, 2008 6:24 pm    Post subject: Reply with quote

Great to hear. thanks!
Back to top
mai9



Joined: 17 Mar 2008
Posts: 29
Location: Barcelona, Catalonia

PostPosted: Sat Jun 14, 2008 8:17 pm    Post subject: Reply with quote

http://www.r-moth.com/code/Favmenu/Screenshots.html
http://www.r-moth.com/code/Favmenu/Dialogs.html

I can't see a thing in these two links on the first post. Is there something wrong in my pc?
Back to top
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 3644
Location: Belgrade

PostPosted: Sun Jun 15, 2008 11:30 am    Post subject: Reply with quote

Nope. This thread is outdated, its no longer maintaned.
_________________
Back to top
View user's profile Send private message MSN Messenger
Micha



Joined: 15 Nov 2005
Posts: 440
Location: Germany

PostPosted: Mon Aug 25, 2008 6:23 pm    Post subject: Changes for Server2008 /Vista Reply with quote

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
View user's profile Send private message
Maddog_
Guest





PostPosted: Mon Nov 10, 2008 9:40 am    Post subject: Reply with quote

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

PostPosted: Mon Nov 10, 2008 12:28 pm    Post subject: Reply with quote

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
View user's profile Send private message MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6
Page 6 of 6

 
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