Search found 13232 matches

by highend
04 Jul 2011 13:26
Forum: Wishes
Topic: No Drive Bar
Replies: 62
Views: 8800

Re: No Drive Bar

- Toolbar button "Drives" - Right-click toolbar button "Up" - Right-click Address bar dropdown arrow - tweak CEA_TreeRightClickOnWhite=2 All used via mouse, not keyboard. - Menu Go | Drives -> keyboard shortcut This is the one I'm talking about. It's the only short, fast and man...
by highend
04 Jul 2011 11:36
Forum: Wishes
Topic: No Drive Bar
Replies: 62
Views: 8800

Re: No Drive Bar

From first time use of XYplorer on, i miss the option to change an drive from list (or tab) context menu. +1 Is there a way to popup the Go - Drives... list (I'm using a shortcut for it) on a different position? Atm linking it to the upper left corner of the tree is more distracting than useful. Ma...
by highend
01 Jul 2011 12:06
Forum: Tips & Tricks, Questions & Answers
Topic: Is this how custom copy is supposed to work
Replies: 18
Views: 3358

Re: Is this how custom copy is supposed to work

Backup / Custom Copy: From now on, files that are copied in-place (copied onto themselves) are unconditionally auto-renamed (incremental suffix) IF the setting for "On name collisions" is "Ask" or "Overwrite if newer" or "Overwrite". Before, you got a stupid ...
by highend
01 Jul 2011 10:37
Forum: Tips & Tricks, Questions & Answers
Topic: Is this how custom copy is supposed to work
Replies: 18
Views: 3358

Re: Is this how custom copy is supposed to work

If this condition is met then there is no other reasonable option than renaming the folder! It would be total rubbish to copy a folder into itself. So I will change the current behavior: In this case the folder is also renamed when "Rename folders on collision" is not ticked. Isn't the sa...
by highend
01 Jul 2011 00:50
Forum: Wishes
Topic: Automatic focus list after Go to from Address Bar
Replies: 3
Views: 1008

Re: Automatic focus list after Go to from Address Bar

That maybe depends on what you're typing. For paths I would agree but not necessarily for e.g. scripts...
by highend
30 Jun 2011 21:33
Forum: Script Exchange
Topic: Processing files using Scripting
Replies: 3
Views: 1274

Re: Processing files using Scripting

<curitem> ist only for the selected / focused item. If you want to process all selected items (in one commandline!) you could use <selitems>. If every selected items has to be passed as the only fileparameter to your dos command you have to use a while loop or better foreach but be warned, they woul...
by highend
29 Jun 2011 08:48
Forum: Tips & Tricks, Questions & Answers
Topic: Remove extension from a filename?
Replies: 7
Views: 1528

Re: Remove extension from a filename?

$A = "eins|zwei|drei|"; $A = substr($A, 0, -1); foreach($t,$A){echo $t;} That's really an easy way. Changed my code respectively. Vars are case-sensitive. Yeah but it was late and couldn't see that any more :oops: Thanks Stefan, script is working fine now (it consists of a few entries for...
by highend
28 Jun 2011 23:57
Forum: Tips & Tricks, Questions & Answers
Topic: Remove extension from a filename?
Replies: 7
Views: 1528

Re: Remove extension from a filename?

$filelist = report("{basename}?{ext}|",1); foreach($token, $filelist, "|") { $base = gettoken($token,1,"?"); $ext = gettoken($token,2,"?"); $filename = "$base.$ext"; if ($filename != ".") { echo $filename; } } The if statement will now out...
by highend
28 Jun 2011 23:25
Forum: Tips & Tricks, Questions & Answers
Topic: Remove extension from a filename?
Replies: 7
Views: 1528

Re: Remove extension from a filename?

$filelist = report("{basename}?{ext}|",1); foreach($line, $filelist, "|") { $base = gettoken($line,1,"?"); $ext = gettoken($line,2,"?"); $filename = "$base.$ext"; echo $filename; } Just to test if everything is working before I exchange the code in ...
by highend
28 Jun 2011 22:57
Forum: Tips & Tricks, Questions & Answers
Topic: Remove extension from a filename?
Replies: 7
Views: 1528

Re: Remove extension from a filename?

You should change your nickname to "AskMeIfYouHaveAScriptQuestion"^^ You have to initialize the var before first use. Just: $MyVarName=""; before the while() Did that but the output was the same. - for the loop you can use foreach() I'll read the help and see if it's easy enough ...
by highend
28 Jun 2011 22:13
Forum: Tips & Tricks, Questions & Answers
Topic: Remove extension from a filename?
Replies: 7
Views: 1528

Remove extension from a filename?

Hi, I'm using $SelectedItems = get("SelectedItemsNames", "<crlf>"); to get all selected filenames (need them later in the script) without their path component. In the while loop I want to strip off the extension (.avi, .wmv, .whatever) for that filename. $FileName contains the cu...
by highend
28 Jun 2011 16:23
Forum: Wishes
Topic: Breadcrumb small improvement
Replies: 11
Views: 3412

Re: Breadcrumb small improvement

alps wrote:Also required is clickable crumbs's
Yeah, that would be a great feature addition to XYplorer!
by highend
28 Jun 2011 15:56
Forum: Tips & Tricks, Questions & Answers
Topic: Is this how custom copy is supposed to work
Replies: 18
Views: 3358

Re: Is this how custom copy is supposed to work

admin wrote:a) :)
Tested with v9.90.1113 and checkmark set: Works as expected. Are there really cases where a future dropdown field in the progress status would be needed for folders now?
by highend
28 Jun 2011 15:21
Forum: Tips & Tricks, Questions & Answers
Topic: Is this how custom copy is supposed to work
Replies: 18
Views: 3358

Re: Is this how custom copy is supposed to work

I just wonder if a simpler solution would be enough. I'm thinking of a checkbox "Rename folders on collision" (instead of the big dropdown). If checked then all copies of folders in your selection are auto-renamed (incremental suffix) on collision. Else overwritten. Less hassle for me and...
by highend
28 Jun 2011 13:41
Forum: Tips & Tricks, Questions & Answers
Topic: Is this how custom copy is supposed to work
Replies: 18
Views: 3358

Re: Is this how custom copy is supposed to work

I could add a another dropdown "On folder name collision" analog to "On (file) name collision".
That's probably the best option :)