Search found 213 matches

by hermhart
04 Sep 2017 21:19
Forum: Tips & Tricks, Questions & Answers
Topic: Scroll to top when clicking on link in Links folder
Replies: 7
Views: 1369

Scroll to top when clicking on link in Links folder

Is there a setting that I'm missing that when I click on a link in my Links folder, to have it jump to the link in the tree, but have it scroll it to the top (or within my Usability setting)? I'm feeling like it should jump to near the top automatically.
by hermhart
17 Mar 2016 15:44
Forum: Wishes
Topic: Links virtual folder listings
Replies: 17
Views: 3370

Re: Links virtual folder listings

Thank you very much for looking into it. :appl:
by hermhart
17 Mar 2016 01:19
Forum: Wishes
Topic: Links virtual folder listings
Replies: 17
Views: 3370

Links virtual folder listings

I know Windows Explorer doesn't act like this either, but would there ever be a possibility of having the option for the new Links virtual folder to open any folders right inside the Links node, without having it jump to the actual folder in the file system? For instance, instead of when clicking 'D...
by hermhart
18 Feb 2016 14:50
Forum: Tips & Tricks, Questions & Answers
Topic: NewItems
Replies: 3
Views: 4064

Re: NewItems

Maybe you could use something like this:

http://www.xyplorer.com/xyfc/viewtopic.php?f=3&t=13814
by hermhart
19 Jan 2016 12:32
Forum: Tips & Tricks, Questions & Answers
Topic: Tweaks explanation
Replies: 4
Views: 1106

Re: Tweaks explanation

Thank you all for the info.
by hermhart
18 Jan 2016 21:45
Forum: Tips & Tricks, Questions & Answers
Topic: Tweaks explanation
Replies: 4
Views: 1106

Tweaks explanation

Is something out there that defines what all the tweaks do and is kept up to date?
by hermhart
13 Jan 2016 21:21
Forum: Tips & Tricks, Questions & Answers
Topic: File Extensions
Replies: 25
Views: 5987

Re: File Extensions

You can turn them off by going to Tools -> Customize List -> Hide Extensions.

Or a way to avoid the renaming issue you mention is Tools -> Configuration -> Sort and Rename -> Rename (section) -> (check box) Exclude extension on rename
by hermhart
05 Jan 2016 13:26
Forum: Script Exchange
Topic: Format input TXT file to output CSV file
Replies: 7
Views: 2192

Re: Format input TXT file to output CSV file

Thank you, highend. This did the trick.

Code: Select all

    writefile("$Bshort.csv", $csv, "o", "t");
by hermhart
04 Jan 2016 21:17
Forum: Script Exchange
Topic: Format input TXT file to output CSV file
Replies: 7
Views: 2192

Re: Format input TXT file to output CSV file

That's very strange. It works for me if I put the step; command in there. When I do, the dialogue at the point of the writefile(); shows:

call
3

But when I take out the step; it no longer works. It just ends up creating the files empty.
by hermhart
04 Jan 2016 19:17
Forum: Script Exchange
Topic: Format input TXT file to output CSV file
Replies: 7
Views: 2192

Re: Format input TXT file to output CSV file

Would you be able to tell me how to correct this? I took your code from before and modified it to do it for each selected file. It seems to filter through each file and create an empty file, but does not fill the file with the contents of $csv. When I pick a single file, it works just fine. foreach(...
by hermhart
28 Dec 2015 16:52
Forum: Script Exchange
Topic: Format input TXT file to output CSV file
Replies: 7
Views: 2192

Re: Format input TXT file to output CSV file

highend,

Amazing, works great!

Thank you so much!
by hermhart
27 Dec 2015 22:51
Forum: Script Exchange
Topic: Format input TXT file to output CSV file
Replies: 7
Views: 2192

Format input TXT file to output CSV file

Could someone help with a script that would take a selected .txt file and turn the sections of it into a comma delimited .csv file so as to open it up in Excel? The blocks of text in the .txt file would look something like: &LOG Part: "blah blah blah.file" &LOG Cloning_Action: DEFA...
by hermhart
14 Dec 2015 17:21
Forum: Tips & Tricks, Questions & Answers
Topic: File Match omitting extension
Replies: 15
Views: 2708

Re: File Match omitting extension

This works for me, hopefully it will help you out. $index = 1; while ($index < 2) { sel; //Deselect all. $Source = inputselect("Choose an option:<crlf>(select only one) ", "File|Clipboard", , 2, , 150, 80, Selection); IF ($Source=="File") { $Source = readfile(inputfile(...
by hermhart
03 Dec 2015 19:39
Forum: Script Exchange
Topic: Foreach selected folder, copy, rename and move contents
Replies: 17
Views: 4419

Re: Foreach selected folder, copy, rename and move contents

Thanks highend, got everything working perfectly now.