As for copying a path of a selected item to the clipboard, this feature is supported by windows natively, just hold down Shift and right-click on any icon, you’ll get an extended context menu with this option in it.
Useful, but copies the path as a string, which makes you often deleting the quotation marks.
Well since I haven’t seen it posted yet so I will throw it out. jEdit . Pretty sweet, open source text editor. I prefer it over context for python scripting, and it has just about every language you can think of.
The ComLoader plug for that reflector might be interesting also: “Lists COM components for browsing and converts them into managed interop assemblies.”
[QUOTE=Bharris;2636]Well since I haven’t seen it posted yet so I will throw it out. jEdit . Pretty sweet, open source text editor. I prefer it over context for python scripting, and it has just about every language you can think of.[/QUOTE]
In addition to listing what could be dozens of global and local procs in a file, it also organizes all of your variables by type and skips to the point in your code where they are declared when selected in the browser.
BTW, if anyone could point me to an outliner for MEL for eclipse - that would be great! (I know, I’ve moved on to python too - but that doesn’t mean I no longer have to support last years code.)
Wow some very good stuff on here. Here’s my favorites that aren’t listed here yet:
QTTabBar - Combine all your explorer windows into one window with tabs! For those who switch folders a lot and end up with too many explorer windows by the end of the day. (Has a ton of options too - may require some tweaking of them to get windows to always use tabs)
QTAddressBar - Gives Windows XP’s explorer the vista-style breadcrumbs folder navigating.
To get these explorer addons to “stay on” you can set up an explorer view then do Tools->Folder Options, under the View tab press “Apply to All Folders”.
Anyone know of a method, tool, or script for creating a series of folders from a text file? I want to create folders named from a list of names in a text file (or spreadsheet).
[QUOTE=swytch;4804]Anyone know of a method, tool, or script for creating a series of folders from a text file? I want to create folders named from a list of names in a text file (or spreadsheet).[/QUOTE]
Don’t know of any existing tool or script but you could write it in couple lines of code… You can do it from your 3d app or if you want it standalone, look at python.
[QUOTE=swytch;4804]Anyone know of a method, tool, or script for creating a series of folders from a text file? I want to create folders named from a list of names in a text file (or spreadsheet).[/QUOTE]
In a DOS command window type:
for /f %i in (filename.txt) do mkdir %i
It will make a directory for each line of the file. It will also make subdirectories (for example if one of the lines is foo exture\body, it will make the full hierarchy).
DOS is actually pretty damn powerful for these kinds of things. For more info, type “help for” or “help if” in the DOS command prompt.
[QUOTE=swytch;4804]Anyone know of a method, tool, or script for creating a series of folders from a text file? I want to create folders named from a list of names in a text file (or spreadsheet).[/QUOTE]
My personal favourite for all sorts of folder-creating, file-reading automating quick and dirty tools is (probably mentioned early in this thread) AutoIt.
It has solved me quite a bunch of problems, it’s easy to use, and… well, it’s fast.
edit: fast as in, fast to get it up and running. It’s kinda slow on performance actually
a programmers editor. For those of you who haven’t given Vim a chance, it’s definitely worth the time you invest in learning it. Completely customizable to a level of insanity, full access to all of the tools necessary to build your own plugins and tools quickly and efficiently, and an awesome community that spans the entire globe.
And…As some icing on the cake. Here’s some tutorials!
I would skip the first video unless you feel the need to find derek wyatt a bit on the insane side. The rest give you, not only excellent direction, but also echo every key he presses so you can see exactly how little you have to do in the way of that.