AutoHotkey Community

It is currently May 23rd, 2012, 4:43 pm

All times are UTC [ DST ]


Search found 64 matches
Search these results:

Author Message

 Forum: Custom   Topic: [AHK_L] ListMFTfiles: NTFS Instant File Search

Posted: April 18th, 2012, 8:42 am 

Replies: 15
Views: 948


I made some small changes (sharing is caring) 1) added a sort option 2) added a subfolder option (since the regex only applies to the filename, and not the path. For example to search for text files in My documents filelist:=ListMFTfiles("c:","i)\.(txt)$","`r`n",A_MyDoc...

 Forum: Scripts   Topic: [module] RemoteBuffer 2.0

Posted: April 2nd, 2012, 3:35 pm 

Replies: 20
Views: 11671


Hi, I've modified the script on the first page so it'd work with new remote buffer library. When I launch the script however, I get the following contents of the message box: http://i.imgur.com/DNcWp.png What could be the cause? It looks like only the last letter of the node selected in Explorer sh...

 Forum: Scripts   Topic: ALT-TAB replacement with icons and window titles in ListView

 Post subject: Re: group switching
Posted: March 14th, 2012, 5:41 am 

Replies: 168
Views: 54405


What I would really like is a keyboard way to switch groups once the listview is up. Left/Right arrow would be great for cycling through the tabs, or even 1,2,3 for that tab would work well also. Check my upload - does it to what you want? Wow, your updates look very, very cool. The left/right betw...

 Forum: Scripts   Topic: ALT-TAB replacement with icons and window titles in ListView

 Post subject: Re: group switching
Posted: March 13th, 2012, 7:07 am 

Replies: 168
Views: 54405


reesd wrote:
What I would really like is a keyboard way to switch groups once the listview is up. Left/Right arrow would be great for cycling through the tabs, or even 1,2,3 for that tab would work well also.


Check my upload - does it to what you want?

 Forum: Scripts   Topic: ALT-TAB replacement with icons and window titles in ListView

 Post subject: Re: still using AltTab.ahk
Posted: March 13th, 2012, 7:06 am 

Replies: 168
Views: 54405


Are other folks still using AltTab.ahk? I can stand Windows without it, but since no one else noticed the issue with AHKL I wonder if people have moved on to something else? Thanks, d I am using it - though since I to _L I rewrote it. Most of the data is now stored in objects in my version - since ...

 Forum: Scripts   Topic: ALT-TAB replacement with icons and window titles in ListView

 Post subject: Re: still using AltTab.ahk
Posted: March 6th, 2012, 8:29 am 

Replies: 168
Views: 54405


Are other folks still using AltTab.ahk? I can stand Windows without it, but since no one else noticed the issue with AHKL I wonder if people have moved on to something else? Thanks, d I am using it - though since I to _L I rewrote it. Most of the data is now stored in objects in my version - since ...

 Forum: Scripts   Topic: SendData() - Sending data between scripts with SendMessage

Posted: March 2nd, 2012, 2:03 pm 

Replies: 8
Views: 919


I cannot get it to work (AHK_L, unicode, 1.1.04.01) In example 1, %b%=L, should be Label1. PS. I prefer CSV as below: CSV(Delimiter=",", Literal="""", params*) { for index,param in params { If (SubStr(param, 1, 1) = Literal) or InStr...

 Forum: Scripts   Topic: [Class] WinClip - direct clipboard manipulations

Posted: December 15th, 2011, 2:21 pm 

Replies: 65
Views: 4999


Some recommendations 1) WinClipboard_foos.ahk and PUM_foos.ahk share: ErrorFormat IsInteger LoadDllFunction Gdip_Shutdown Gdip_Startup Since I am now using PUM and WinClipBoard in a single project - this cause duplicate functions. I moved these to Deo_foos.ahk - but if I were to update it would be t...

 Forum: Scripts   Topic: [AHK_L] PUM - owner drawn object based popup menu

Posted: December 15th, 2011, 1:01 pm 

Replies: 19
Views: 1364


CloneMenuItems(pm,menu,newmenu) { for i, item in menu.GetItems() newmenu.add({"name" : item.name, "bold" : item.bold, "issep" : item.issep, "icon" : item.icon , "break": item.break, "tcolor": item.tcolor, "bgcolor": item.bgcolor,...

 Forum: Scripts   Topic: [AHK_L] PUM - owner drawn object based popup menu

Posted: December 15th, 2011, 10:17 am 

Replies: 19
Views: 1364


Edit: I managed to find another solution: cannot clone submenus - but good enough for my needs. ;does not clone UID or Submenu items CloneMenuItems(pm,menu,newmenu) { for i, item in menu.GetItems() newmenu.add({"name" : item.name, "bold" : item.bold,...

 Forum: Scripts   Topic: [AHK_L] PUM - owner drawn object based popup menu

Posted: December 15th, 2011, 9:06 am 

Replies: 19
Views: 1364


PUM_Out is called with "onselect" when an accelerator key is pressed to choose a menu item, surely "onrun" is the expected behaviour? It depends on the value of "mnemonicCmd" option for PUM manager, it can be "run" and "select". In first case target...

 Forum: Scripts   Topic: [AHK_L] PUM - owner drawn object based popup menu

Posted: December 15th, 2011, 7:55 am 

Replies: 19
Views: 1364


Some additional observations PUM_Out is called with "onselect" when an accelerator key is pressed to choose a menu item, surely "onrun" is the expected behaviour? Update 12/14/2011 -Added GetItemByID() method to PUM object -Added "textMargin" option for menus -Default c...

 Forum: Scripts   Topic: [AHK_L] PUM - owner drawn object based popup menu

Posted: December 14th, 2011, 7:48 pm 

Replies: 19
Views: 1364


It seems right to save & restore active window after menu was closed, i'll implement it and we'll check if it works fine Thanks - not a train smash - so no hurry, I have a workaround i have this implemented in my local sources, give me some time to publish it Thanks i'll see what i can do Hope ...

 Forum: Scripts   Topic: [AHK_L] PUM - owner drawn object based popup menu

Posted: December 14th, 2011, 7:45 pm 

Replies: 19
Views: 1364


It seems right to save & restore active window after menu was closed, i'll implement it and we'll check if it works fine Thanks - not a train smash - so no hurry, I have a workaround i have this implemented in my local sources, give me some time to publish it Thanks i'll see what i can do Hope ...

 Forum: Scripts   Topic: [AHK_L] PUM - owner drawn object based popup menu

Posted: December 14th, 2011, 3:03 pm 

Replies: 19
Views: 1364


Thank you for this useful script It is very easy to use (though I do not have the skill to change the class itself - the example is easy to follow) Some observations: 1. When a menu that is shown, regardless if a selection is made or not, the active window is not restored correctly. In the test exam...
Sort by:  
Page 1 of 5 [ Search found 64 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group