AutoHotkey Community

It is currently May 26th, 2012, 7:26 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 136 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7, 8, 9, 10  Next
Author Message
 Post subject:
PostPosted: May 15th, 2007, 7:55 am 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
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.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2007, 7:57 am 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
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)

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Does not work in Vista?
PostPosted: May 26th, 2008, 6:01 pm 
Offline

Joined: December 23rd, 2007, 7:47 pm
Posts: 62
Location: Austin
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 28th, 2008, 12:00 am 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Ye, I noticed that. Dialog is changed. Should be easy to fix...

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Loving Favmenu
PostPosted: June 14th, 2008, 12:50 am 
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


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 14th, 2008, 11:11 am 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
All those features are in Favmenu3 which is not yet released.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 14th, 2008, 7:24 pm 
Great to hear. thanks!


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 14th, 2008, 9:17 pm 
Offline

Joined: March 18th, 2008, 12:31 am
Posts: 63
Location: Barcelona, Catalonia
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?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 15th, 2008, 12:30 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Nope. This thread is outdated, its no longer maintaned.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
PostPosted: August 25th, 2008, 7:23 pm 
Offline

Joined: November 15th, 2005, 11:15 am
Posts: 537
Location: Germany
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 10th, 2008, 10:40 am 
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!


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: November 10th, 2008, 1:28 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
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.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 12th, 2009, 10:42 am 
Any chance of seeing a vista-compatible version soon?
I really really miss Favmenu.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 12th, 2009, 11:42 am 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Yes. I miss it to, I use Vista extensively now and I plan to do it.

Actually, I can't beleive I stoped using my favorite app becuase I am too lazy to add vista plugins ... sigh..

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 13th, 2009, 8:56 pm 
Offline

Joined: June 15th, 2005, 8:07 am
Posts: 6
Location: Kavala, Greece
I use FavMenu daily and it's one of my most beloved tools.

It is a pity that it's not developed anymore.

Anyway, one little suggestion/wish I have is the ability to "synchronize" my FavMenu entries with those of Total Commander's directory hotlist.

In this way I can propagate my changes and additions between the two tools.

Thank you majkinetor for this great gem and keep up the already excellent work.

Let's hope that in the future we won't see posts every half a year! ;-)


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 136 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7, 8, 9, 10  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Exabot [Bot] and 14 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
cron
Powered by phpBB® Forum Software © phpBB Group