3076
Post New Requests Here / Re: Create a file list from multiple folders
« Last post by Contro on July 07, 2012, 04:35 AM »Running to try
Best Regards
Best Regards

Find:
\n
Replace:
</td><td></td><td></td></tr>\n<tr><td>
Then fill in the <table></table> at the top/bottom.
Not a script, but a quick regex that should do what you want. Any decent text editor will work.-Renegade (July 05, 2012, 12:08 PM)
Find:
\n
Replace:
</td><td></td><td></td></tr>\n<tr><td>
Then fill in the <table></table> at the top/bottom.
Not a script, but a quick regex that should do what you want. Any decent text editor will work.-Renegade (July 05, 2012, 12:08 PM)




(see attachment in previous post)
hmm... I have just tested both Right Click Enhancer and Notepad++, and it turns out that the "Notepad++"-option in the above picture of a context menu is not from RBSoft's application, as I expected it to be, but from Notepad++ itself! So all you should do is to re-install (a new version of) Notepad++ , and you will have the entry you were asking for!
-Curt (July 03, 2012, 11:51 AM)

I did not write any of this, (except _ExClip function and set a hotkey), it was written by Ascend4ant and Melba23 over on the AutoIt forum.
Thank them if you want to thank someone.
The hotkey is set for Shift+Alt+C, edit the code to change it to what you like.
- If nothing is selected, the Explorer path is clipped.
- If something is selected, its full path is clipped.
- If multiple somethings are selected, only the first one is returned.
Code: AutoIt [Select]
; http://www.autoitscript.com/forum/topic/89833-windows-explorer-current-folder/page__st__40#entry973904 #include <Array.au3> While 1 $aSelection = _ExplorerWinGetSelectedItems($hExplr) ; ========================================================================================================================== ; Func _ObjectSHFolderViewFromWin($hWnd) ; ; Returns an 'ShellFolderView' Object for the given Window handle ; ; Author: Ascend4nt, based on code by KaFu, klaus.s ; ========================================================================================================================== ; Shell Object ; Get a 'ShellWindows Collection' object $oShellWindows = $oShell.Windows() ; Iterate through the collection - each of type 'InternetExplorer' Object ; InternetExplorer->Document = ShellFolderView object $oSHFolderView=$oIEObject.Document ; ========================================================================================================================== ; Func _ExplorerWinGetSelectedItems($hWnd) ; ; ; Author: klaus.s, KaFu, Ascend4nt (consolidation & cleanup, Path name simplification) ; ========================================================================================================================== Local $oSHFolderView $oSHFolderView=_ObjectSHFolderViewFromWin($hWnd) ; SelectedItems = FolderItems Collection object->Count $iSelectedItems = $oSHFolderView.SelectedItems.Count $aSelectedItems[0]=$iSelectedItems ; ShellFolderView->Folder->Self as 'FolderItem'->Path $aSelectedItems[1]=$oSHFolderView.Folder.Self.Path ; ShellFolderView->SelectedItems = FolderItems Collection object $oSelectedFolderItems = $oSHFolderView.SelectedItems #cs ; For ALL items in an Explorer Window (not just the selected ones): $oSelectedFolderItems = $oSHFolderView.Folder.Items ReDim $aSelectedItems[$oSelectedFolderItems.Count+2] #ce $aSelectedItems[$iCounter] = $oFolderItem.Path $iCounter += 1 EndFunc ;==>_ExplorerWinGetSelectedItems EndFunc ;==>_ComErrFunc-4wd (July 03, 2012, 09:21 AM)



I like nice long buttons where I can easily read the text. I have no issues with the buttons being too short to read them on my taskbar.
This is one of the many benefits of having your taskbar on the side and extending it as far as it will go, and putting it on autohide.
The first 2 screenshots in my post here will show you how I have it: https://www.donation....msg238489#msg238489
Yes, I am running XP with classic theme there, but you can do it in Win7 as well, and with aero, or whatever crap they have for themes now. And it is easy to do...just unlock your taskbar and drag it to the side and stretch it. (I don't lock mine because I like the little bands that separate each toolbar, and they disappear if you lock the taskbar)
The only time my buttons get shortened is when I have a ton of open windows, enough to fill all the space on the taskbar, resulting in Windows making 2 columns of them, at which point they become about half the length, which is still pretty wide compared to what you have now.
It will take a little getting used to but once you do, you may never go back to that sliver of a taskbar at the bottom of the screen. I have had my taskbar like this for the last 13 years, ever since my first PC was given to me with it preconfigured that way, back in the Win98 days.
But be careful...if you get too used to it, it will make using another OS very uncomfortable. I have issues with Ubuntu because I can't take my Windows taskbar with me.-app103 (July 01, 2012, 04:07 AM)



@Contro, you might want to re-study App103's postYes, I am running XP with classic theme there, (...) ...just unlock your taskbar and drag it to the side and stretch it.-app103 (July 01, 2012, 04:07 AM)
-and there is more.-Curt (July 01, 2012, 06:02 AM)

I like nice long buttons where I can easily read the text. I have no issues with the buttons being too short to read them on my taskbar.
This is one of the many benefits of having your taskbar on the side and extending it as far as it will go, and putting it on autohide.
The first 2 screenshots in my post here will show you how I have it: https://www.donation....msg238489#msg238489
Yes, I am running XP with classic theme there, but you can do it in Win7 as well, and with aero, or whatever crap they have for themes now. And it is easy to do...just unlock your taskbar and drag it to the side and stretch it. (I don't lock mine because I like the little bands that separate each toolbar, and they disappear if you lock the taskbar)
The only time my buttons get shortened is when I have a ton of open windows, enough to fill all the space on the taskbar, resulting in Windows making 2 columns of them, at which point they become about half the length, which is still pretty wide compared to what you have now.
It will take a little getting used to but once you do, you may never go back to that sliver of a taskbar at the bottom of the screen. I have had my taskbar like this for the last 13 years, ever since my first PC was given to me with it preconfigured that way, back in the Win98 days.
But be careful...if you get too used to it, it will make using another OS very uncomfortable. I have issues with Ubuntu because I can't take my Windows taskbar with me.-app103 (July 01, 2012, 04:07 AM)




