AutoHotkey Community

It is currently May 26th, 2012, 9:03 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 136 posts ]  Go to page Previous  1 ... 4, 5, 6, 7, 8, 9, 10  Next
Author Message
 Post subject:
PostPosted: March 16th, 2009, 3:04 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Hej pdavit.

If you use FM3, you can sync changes if you open FM3 Editor and press the save button. That should be it.


BTW, this is the function that recognise Vista Open dialogs (but not Save). You need to replace Favmenu_IsOpenSave with following 2 functions:


Code:
FavMenu_IsOpenSave(dlg)
{
   global FavMenu_dlgInput, FavMenu_dlgType
   
   FavMenu_dlgType =

   toolbar := FavMenu_FindWindowExID(dlg, "ToolbarWindow32", 0x440)   ;windows XP
   if (toolbar = "0")
    toolbar := FavMenu_FindWindowExID(dlg, "ToolbarWindow32", 0x001)  ;windows 2k
   
   combo  := FavMenu_FindWindowExID(dlg, "ComboBoxEx32", 0x47C) ; comboboxex field
   button := FavMenu_FindWindowExID(dlg, "Button", 0x001)      ; second button
   
   edit := FavMenu_FindWindowExID(dlg, "Edit", 0x480)         ; edit field
   
   if (toolbar && (combo || edit) && button)
   {
      FavMenu_dlgInput   := combo + edit
      FavMenu_dlgType      := "OpenSave"
      return 1
   }

   return FavMenu_IsOffice03(dlg) || FavMenu_IsOpenVista(dlg)
}


FavMenu_IsOpenVista(dlg)
{
   global FavMenu_dlgInput, FavMenu_dlgType   
   FavMenu_dlgType =

   button := FavMenu_FindWindowExID(dlg, "Button", 0x001)          ; second button
   combo  := FavMenu_FindWindowExID(dlg, "ComboBoxEx32", 0x47C)    ; comboboxex field
   
   rebar  := FavMenu_FindWindowExID(dlg, "WorkerW", 0)   ; navigation bar
   rebar  := FavMenu_FindWindowExID(rebar, "ReBarWindow32", 40965)   ; navigation bar

   
   if (rebar && combo && button)
   {
      FavMenu_dlgInput   := combo
      FavMenu_dlgType      := "OpenSave"
      return 1
   }

   return 0
}

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 16th, 2009, 8:06 pm 
Just a tip for everybody who uses this script and would like to use custom icons (since nice 12 x 12 icons are hard to find), I only found one free program that could handle conversion from graphics to 12 x 12 256-bit icons while maintaining transparency settings well: IcoFX (Import -> Resize/Resample -> Save). All others I tried mess up the transparency or are simply bad at resizing.

You can get free icons (ico, png, gif) from numerous sources (watch the licenses though).

HTH


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 16th, 2009, 8:18 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Oh, I guess you don't have FM3 which supports icons of any dimension.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 16th, 2009, 10:18 pm 
No, where is your 3rd version? I did look, but I couldn't find a description/download link.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 16th, 2009, 10:49 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
There is no link yet.

You can get preview here, I was posting it on some places.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 17th, 2009, 5:49 am 
Offline

Joined: November 10th, 2007, 3:30 am
Posts: 93
Location: Second star to the right.... watching you.
One thing I think favmenu should do is set A_workingdir to whatever is run.


Report this post
Top
 Profile  
Reply with quote  
PostPosted: April 27th, 2009, 12:17 pm 
hi majkinetor,

can you add support for tc 7.5?
currently if using your latest build, i don't get the current directories (1,2) on top of the dirmenu list.

thx


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: May 1st, 2009, 12:31 pm 
Offline
User avatar

Joined: September 8th, 2008, 12:26 am
Posts: 1048
Location: Ploieşti, RO
One minor issue with MMenu: when hovering through the menu, the system default color is applied to the currently hovered item background, but the item text remains as set in the menu (or is it also default?). As such, having a dark background color and dark text color will make items unreadable (my current situation).

How can we overcome this in some automatic mode (like read system bkg color and then set hovered item color in contrast)? Or use custom hover bkg color overriding system default.

Regardless, MMenu is very slick and FavMenu 3 looks great (on my humble Win98SE 8) )

Later edit:
Hmmm... after quickly hovering up and down the menu, I discovered huge GDI leaks. Guess it's not very 9x-friendly, but that's (probably) just my problem. Thought I should report it though, just in case...

Re-edit:
Guess it's the tooltips. They usually appear at the top-left of primary monitor but occasionally flash at bottom-left of secondary monitor and resources drop around 2-3% then.

May have something to do with missing menu items as well (paths that are in the ini and do not exist physically on the system). Those sub-menus open up narrow and empty - may be better to show a --missing-- label instead. :roll:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 29th, 2009, 9:51 am 
Offline

Joined: December 15th, 2008, 12:27 pm
Posts: 13
Is it possible to start Favmenu (or any other script actually) by rightclicking the windows desktop?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 29th, 2009, 5:16 pm 
@szekelya: Yes, Visit Ask for help forum

@all:
I am not sure how will be future of FavMenu. MMenu is developed long, its time for update, but I am sure now menus are not right choice for FavMenu. I am thinking atm about replacing interface with QHTM, adding Property getter/setter control for options instead of Setup GUI etc...

I am not sure if / when is that going to be done.


Report this post
Top
  
Reply with quote  
 Post subject: i love favmenu
PostPosted: October 9th, 2009, 4:48 am 
i am using TC7.5, too. the biggest problem for me is that, when i click the root and upper dir icon ("\", "..") area of the right side of TC, favmenu is always invoked, which prevents me from using TC functionalities.
besides, Current Dirs in TC does not work for me in explorer or other applications.
anyway, your work is greatly appreciated.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: October 9th, 2009, 2:31 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Quote:
i am using TC7.5, too. the biggest problem for me is that, when i click the root and upper dir icon ("\", "..") area of the right side of TC, favmenu is always invoked, which prevents me from using TC functionalities.

I am still using 7.0. Ill update and see whats the problem.


Quote:
Besides, Current Dirs in TC does not work for me in explorer or other applications.

This is pre VISTA application. Seems to be your problem.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 9th, 2009, 7:01 pm 
Offline

Joined: October 9th, 2009, 2:23 am
Posts: 14
is fav menu3 only for those who use total commander or ? thanks


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 9th, 2009, 7:25 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Nope. It extends open save, console, browse for folder and explorer too.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 9th, 2009, 7:46 pm 
Offline

Joined: October 9th, 2009, 2:23 am
Posts: 14
Hi, yup I've heard about it for years but due to the new direct folders apparently having malware I thought I'd try this script. I downloaded the "3rd" version here in this thread and get "file manager not found" and the default to open is "total commander".
I should be directing it to windows explorer right?
I'm on win 7


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 ... 4, 5, 6, 7, 8, 9, 10  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: iBob35555VR and 12 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:
Powered by phpBB® Forum Software © phpBB Group