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 

Folder Menu - a popup menu to quickly change your folders
Goto page Previous  1, 2, 3 ... 10, 11, 12
 
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
engunneer



Joined: 30 Aug 2005
Posts: 8255
Location: Maywood, IL

PostPosted: Mon Aug 24, 2009 1:50 pm    Post subject: Reply with quote

The Website wrote:
Features

Quickly Switching Folders
Click the middle mouse button (show menu 1 hotkey), a popup menu for favorite folders will show up, click on an item and it will switch to that folder.

_________________

(Common Answers)
Back to top
View user's profile Send private message Visit poster's website
dal765
Guest





PostPosted: Thu Sep 10, 2009 10:50 am    Post subject: Foldermenu- update prompt & V3 migration? Reply with quote

Hi,

1. A suggestion: - the dialogue box advising an update is available should include the name of the app..

I got this 'random' prompt about an update being available to 3.something beta.. no identifiable title.

It turned out to be from Foldermenu 2.08.

2. How do you migrate from v2 to v3? I put the exe in the folder wiht the xml and lng files- but got a string of error messages..

Thanks!
Back to top
rexx



Joined: 28 Feb 2006
Posts: 72

PostPosted: Thu Sep 10, 2009 1:57 pm    Post subject: Re: Foldermenu- update prompt & V3 migration? Reply with quote

dal765 wrote:
Hi,

1. A suggestion: - the dialogue box advising an update is available should include the name of the app..

I got this 'random' prompt about an update being available to 3.something beta.. no identifiable title.

It turned out to be from Foldermenu 2.08.

2. How do you migrate from v2 to v3? I put the exe in the folder wiht the xml and lng files- but got a string of error messages..

Thanks!


The xml structure of the settings is changed, it's better to backup you v2 config.xml and let v3 generate a new default one.
Most of the favorite entries in v2 can be used in v3, except some special menus. So you can open the xml file with notepad and copy/paste the favorites into new config.xml.
eg.
in v2:
Code:
<FolderMenu>
   ...
   <Menu>
      <Item>
         <Item ..../>
         <Item ..../>
         <Item ..../>

      </Item>
   </Menu>
</FolderMenu>


in v3:
Code:
<FolderMenu>
   <Menu>
      <Item ..../>
      <Item ..../>
      <Item ..../>

   </Menu>
   ...
</FolderMenu>


the app list/hotkey list/icon list can also be used in v3.

but for others, I suggest you to set it in the gui again.
Back to top
View user's profile Send private message
gfostick
Guest





PostPosted: Thu Oct 01, 2009 1:35 pm    Post subject: FolderMenu and keyboard hook Reply with quote

Hi,

I am using version 3.

It appears to install a low-level keyboard hook and as a result it affects another AHK script I have: it forces the other script to revert from SendInput to SendEvent which is quite bothersome with hotstrings I have there. I don’t think there was a problem in version 2.

See http://www.autohotkey.com/docs/commands/Send.htm#SendInputUnavail.

Suggestions?
Back to top
GKDantas



Joined: 06 Dec 2009
Posts: 1
Location: Brazil

PostPosted: Sun Dec 06, 2009 12:28 pm    Post subject: Reply with quote

Hi people, I am new with Windows 7 and FolderMenu was working fine in RC release. Now after install the final version I cant use the middle buttom to open the menu, and when I got it open any option will open another explorer windows, not move to the folder that I asked... someone can help me?
Back to top
View user's profile Send private message Send e-mail AIM Address MSN Messenger
Disabling during gaming?
Guest





PostPosted: Mon Dec 14, 2009 3:51 pm    Post subject: Reply with quote

I wonder is there any way to automatically disable Folder Menu while gaming? (Otherwise, even if middle mouse is mapped to an option in the game, it still crashes to the desktop).

Cheers,

P.
Back to top
dansx6
Guest





PostPosted: Sun Jan 10, 2010 1:18 am    Post subject: skin Reply with quote

I recently "found" this app and I love it. Is it possible to change the background of the menu popup? I am using Win7 x64 and I would love to be able to have it use the aero capabilities.

Thank you for this excellent program!
Back to top
ziller
Guest





PostPosted: Wed Feb 24, 2010 3:04 pm    Post subject: Reply with quote

hello,

could someone tell me how to configure folder menu 3 in order to properly work with windows 7 explorer?

thanks!
Back to top
Marcusology
Guest





PostPosted: Fri Mar 05, 2010 5:44 am    Post subject: How can I add a "start(and stop) a service" comman Reply with quote

I wish to start or stop some services conveniently in FolderMenu,other than to press"win+R" ,input "services.msc" ,find the service and click start or stop.
Is it possible in FolderMenu?
Back to top
tony01
Guest





PostPosted: Tue Mar 16, 2010 7:55 pm    Post subject: Open Folders with Total Commander issue Reply with quote

Hi :

When I open a folder path using "Folder Menu" in Total commander,
It just works partially, for example:
If I open a folder path : "e:\Tools\SysTools" in Total commander
It goes just to the directory "e:\Tools" and It should go to "e:\Tools\SysTools" .

This issue happens just with total commander, I tested with Windows explorer and It works with no problems.

My setting in Folder Menus:
In Folder Menu OPTIONS/OTHERS/File Manager Path, I put:
"c:\Program Files\Total Commander\TOTALCMD.EXE" /O /T /L="%1"

and In Applications I checked "Total Commander".

What Am I doing wrong?

Maybe Rexx can help me please.


Thanks a lot for the great Tool

Tony
Back to top
capitalH



Joined: 23 Apr 2010
Posts: 57

PostPosted: Wed Aug 18, 2010 11:32 am    Post subject: Reply with quote

I tried to add support for Q-Dir.

Now since it has 4 panels, I followed a similar approach as to the 2 panel 7z.
Unfortunately, the Mousegetpos needed to be done before the user moves the mouse to a new position (to select the folder) as this frequently caused the wrong panel to be used.

So I added

Code:

f_DisplayMenu:
; These first few variables are set here and used by f_OpenFavorite:
WinGet, w_WinID, ID, A
WinGet, w_WinMin, MinMax, ahk_id %w_WinID%
if w_WinMin = -1   ; Only detect windows not Minimized.
   return
WinGetClass, w_Class, ahk_id %w_WinID%
MouseGetPos, , , , w_Control_Qdir ; new line added, the rest is for context


w_Control_Qdir can potentially be renamed and re-used for other programs

Then in f_OpenPath() I added


Code:

;Q-Dir
      if w_Class = ATL:00470C10
      {
         if w_Control_Qdir = SysListView321 ; First panel
         {
            ControlClick, Edit3, ahk_id %w_WinID%
            ControlSetText, Edit3, %ThisPath%, ahk_id %w_WinID%
            ControlFocus , Edit3, ahk_id %w_WinID%
            sleep,100
            ControlSend, Edit3, {Enter}, ahk_id %w_WinID%
            Send, {Enter}
         }
         else
         if w_Control_Qdir = SysListView322 ; Second panel
         {
            ControlClick, Edit5, ahk_id %w_WinID%
            ControlSetText, Edit5, %ThisPath%, ahk_id %w_WinID%
            ControlFocus , Edit5, ahk_id %w_WinID%
            sleep,100
            ControlSend, Edit5, {Enter}, ahk_id %w_WinID%
            Send, {Enter}
         }
         else
         if w_Control_Qdir = SysListView323 ; Third panel
         {
            ControlClick, Edit7, ahk_id %w_WinID%
            ControlSetText, Edit7, %ThisPath%, ahk_id %w_WinID%
            ControlFocus , Edit7, ahk_id %w_WinID%
            sleep,100
            ControlSend, Edit7, {Enter}, ahk_id %w_WinID%
            Send, {Enter}
         }
         else
         if w_Control_Qdir = SysListView324 ; Fourth panel
         {
            ControlClick, Edit9, ahk_id %w_WinID%
            ControlSetText, Edit9, %ThisPath%, ahk_id %w_WinID%
            ControlFocus , Edit9, ahk_id %w_WinID%
            sleep,100
            ControlSend, Edit9, {Enter}, ahk_id %w_WinID%
            Send, {Enter}
         }
      }


Which works great 90% of the time.

The problem is that Send, {Enter} and ControlSend, Edit9, {Enter}, ahk_id %w_WinID% does not work the other about 10% If I only have one of these lines, the success rate decrease dramatically, and inserting sleep commands seem to have no impact.

Is there anything else that I can try to correctly send the enter key?
Back to top
View user's profile Send private message
capitalH



Joined: 23 Apr 2010
Posts: 57

PostPosted: Wed Aug 18, 2010 3:28 pm    Post subject: Re: How can I add a "start(and stop) a service" co Reply with quote

Marcusology wrote:
I wish to start or stop some services conveniently in FolderMenu,other than to press"win+R" ,input "services.msc" ,find the service and click start or stop.
Is it possible in FolderMenu?


From http://technet.microsoft.com/en-us/library/cc736564%28WS.10%29.aspx

It is possible to start and stop service from the command line.

# To start a service, type:

net startservice

# To stop a service, type:

net stopservice

# To pause a service, type:

net pauseservice

# To resume a service, type:

net continueservice


Which means it *should* work with the Run command, although you will probably see a command window for a second.
Back to top
View user's profile Send private message
quatermass



Joined: 14 Dec 2005
Posts: 216

PostPosted: Sun Sep 12, 2010 4:41 pm    Post subject: Reply with quote

Can I ask why when I run this FolderMenu.exe (v2.0Cool does it say that there is a V3.0 and yet the page that pops up has no mention of V3?

Is the author trying to confuse it's users to death? Shocked Very Happy
_________________
Stuart Halliday
Back to top
View user's profile Send private message Visit poster's website
vaderetro



Joined: 08 Nov 2010
Posts: 15

PostPosted: Thu Nov 11, 2010 2:56 pm    Post subject: Reply with quote

I have posted a question to the sourceforge support forum but it does not appear to be very active so I am hoping I might get the answer here...

I am using v3, I know it's on autoit instead of older versions that were in ahk but as its a configuration issue I guess it will work the same way. I have read the whole thread but have not found exactly the answer.

Question is, in the the web it says:

Total Commander Menu
Folder Menu can read the Dir Menu of Total Commander, you can also use TC Menu as main menu.

I have not found how do I enable this, anybody knows?

It must be too something easy but I am missing it... The rest of TC integration works but this bit I cannot find Embarassed

thanks
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3 ... 10, 11, 12
Page 12 of 12

 
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