AutoHotkey Community

It is currently May 27th, 2012, 4:36 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 181 posts ]  Go to page Previous  1 ... 9, 10, 11, 12, 13  Next
Author Message
 Post subject:
PostPosted: August 24th, 2009, 2:50 pm 
Offline
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8667
Location: Salem, MA
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.

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Report this post
Top
 Profile  
Reply with quote  
PostPosted: September 10th, 2009, 11:50 am 
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!


Report this post
Top
  
Reply with quote  
PostPosted: September 10th, 2009, 2:57 pm 
Offline

Joined: February 28th, 2006, 4:38 pm
Posts: 73
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.


Report this post
Top
 Profile  
Reply with quote  
PostPosted: October 1st, 2009, 2:35 pm 
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?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 6th, 2009, 1:28 pm 
Offline

Joined: December 6th, 2009, 1:23 pm
Posts: 1
Location: Brazil
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?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 14th, 2009, 4:51 pm 
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.


Report this post
Top
  
Reply with quote  
 Post subject: skin
PostPosted: January 10th, 2010, 2:18 am 
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!


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 24th, 2010, 4:04 pm 
hello,

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

thanks!


Report this post
Top
  
Reply with quote  
PostPosted: March 5th, 2010, 6:44 am 
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?


Report this post
Top
  
Reply with quote  
PostPosted: March 16th, 2010, 8:55 pm 
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


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 18th, 2010, 12:32 pm 
Offline

Joined: April 23rd, 2010, 11:22 am
Posts: 64
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?


Report this post
Top
 Profile  
Reply with quote  
PostPosted: August 18th, 2010, 4:28 pm 
Offline

Joined: April 23rd, 2010, 11:22 am
Posts: 64
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/libr ... 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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 12th, 2010, 5:41 pm 
Offline

Joined: December 14th, 2005, 3:08 pm
Posts: 219
Can I ask why when I run this FolderMenu.exe (v2.08) 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? :shock: :D

_________________
Stuart Halliday


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 11th, 2010, 3:56 pm 
Offline

Joined: November 8th, 2010, 5:49 pm
Posts: 16
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 :oops:

thanks


Report this post
Top
 Profile  
Reply with quote  
PostPosted: April 10th, 2012, 5:31 am 
I can't download the scripts from the linked pages. Does anyone still have a copy of either of them that I can try?


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 181 posts ]  Go to page Previous  1 ... 9, 10, 11, 12, 13  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bing [Bot], Yahoo [Bot] and 10 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