Search found 32 matches

by wc96
06 Aug 2009 02:44
Forum: Bug Reports
Topic: [Bug] hot key assigned to script modifies its
Replies: 1
Views: 681

[Bug] hot key assigned to script modifies its

for example, I use the following script to swap left/right panels: focus P1; $p1_dir = "<curpath>";focus P2; $p2_dir = "<curpath>";focus P1; goto $p2_dir;focus P2; goto $p1_dir; I assigned shift-W under Run Script for this command. but instead of just swap the panels, it created ...
by wc96
05 Aug 2009 21:32
Forum: Script Exchange
Topic: swap pane content script
Replies: 14
Views: 3730

Re: swap pane content script

I'm guessing you're assigning a hotkey to this UDC which contains Shift, am I right? Shift+ the normal goto functions opens the location in a new tab, and I'm guessing Don forgot to ignore this situation when opening a location in a script. So this seems to be a bug in Goto, but you should be able ...
by wc96
05 Aug 2009 17:39
Forum: Script Exchange
Topic: swap pane content script
Replies: 14
Views: 3730

Re: swap pane content script

Give this a try and see if it's any better: "Swap Pane Locations" $pA = "<curpath>"; Focus("PI"); $pI = "<curpath>"; Goto("$pA"); Focus("PI"); Goto("$pI"); I think this does not work either. both of our scripts works when part of...
by wc96
05 Aug 2009 15:18
Forum: Script Exchange
Topic: swap pane content script
Replies: 14
Views: 3730

swap pane content script

I tried the following trivial implementation to swap panes: focus P1; $p1_dir = "<curpath>"; focus P2; $p2_dir = "<curpath>"; focus P1; goto $p2_dir; focus P2; goto $p1_dir; but when used, they produce new pane on either side. I just couldn't figure out how to do this without cre...
by wc96
05 Aug 2009 15:14
Forum: Wishes
Topic: [Request] three requests
Replies: 4
Views: 991

Re: [Request] three requests

requested features:3. moveto and copyto dialog window include a button to move/copy to opposite panel. right now I use a script to do this but I think it could be made more accessable in the moveto/copyto dialog box. just include a quick button for this task. You know that within the "Panes&qu...
by wc96
05 Aug 2009 00:28
Forum: Wishes
Topic: [Request] three requests
Replies: 4
Views: 991

[Request] three requests

requested features: 1. ability to drag to desktop as a link instead of the original file. 2. some type of alias system for functions such as control-g (goto) instead of typing: c:\windows\system32\drivers\etc to get to etc dir. maybe an alias can be defined: ~drivers for c:\windows\system32\drivers,...
by wc96
02 Aug 2009 22:52
Forum: Script Exchange
Topic: making a move all items to new folder script, need help
Replies: 2
Views: 1347

Re: making a move all items to new folder script, need help

this is excellent!! worked beautifully! I think the
$items = getinfo ("SelectedItemsPathNames","|");
was the missing link that can store the current selection into a variable.

:D :) :lol:
by wc96
02 Aug 2009 15:49
Forum: Script Exchange
Topic: making a move all items to new folder script, need help
Replies: 2
Views: 1347

making a move all items to new folder script, need help

Hi everyone, I'm quite new to scripting, trying to make a script that will put all the selected items (files/folders) into a new folder in the same panel. I started with the following: "1. &Move into new Directory" $dir_name=input("Enter name of new directory to move files into .....
by wc96
16 May 2008 22:58
Forum: Wishes
Topic: Single instance
Replies: 19
Views: 4663

there's a little script in AHK you can use to mimic single instance:


#o::
SetTitleMatchMode 2
If WinExist("ahk_class ThunderRT6FormDC")
{
WinActivate
}
else
{
Run, D:\util\XYplorer\XYplorer.exe
}
return
by wc96
01 May 2008 02:27
Forum: Wishes
Topic: [REQ] for an incremental navigation func as in emacs/firefox
Replies: 12
Views: 2454

This could be a very cool feature! I actually like both ideas, and think I would use them both, the two ideas being: - QuickFind (like in FireFox) where the search bar has a "next" and "previous" button to find the next and previous occurrences of the search string. - QuickFilte...
by wc96
01 May 2008 02:22
Forum: Wishes
Topic: [REQ] favorite tab-sets.
Replies: 7
Views: 1716

serendipity wrote:Something similar was requested before:
http://www.xyplorer.com/xyfc/viewtopic.php?t=663

i hope it happens in near future.
me too!
by wc96
30 Apr 2008 22:24
Forum: Wishes
Topic: [REQ] favorite tab-sets.
Replies: 7
Views: 1716

[REQ] favorite tab-sets.

I often perform work between a group o directories, so is wondering if we can have a feature that saves groups of tabs into favorite sets. So I can recall say a set for managing pictures, a set for moving my programming files around etc. Just under favorite menu, select it and the new set of tabs wo...
by wc96
30 Apr 2008 22:21
Forum: Wishes
Topic: [REQ] for an incremental navigation func as in emacs/firefox
Replies: 12
Views: 2454

Tree? Oooops, I was thinking about this in the list :oops: I don't see any reason why it couldn't be used in the tree as well though. I'm no programmer, but I don't honestly see why (in the list view) this would be particularly resource heavy. If you think of it as a live/quick/realtime/as-you-type...
by wc96
29 Apr 2008 02:13
Forum: Bug Reports
Topic: Alt+drag on Executable not produce a Link
Replies: 3
Views: 919

got ya. I wonder if there's anyway this could be added since it seems very logical to just drag it and drop it off on desktop. Although not something I need to perform too often.
by wc96
28 Apr 2008 17:01
Forum: Wishes
Topic: [REQ] for an incremental navigation func as in emacs/firefox
Replies: 12
Views: 2454

its the same basic idea, only IMHO to implement it would either require a continualy updated very big cache of the filesystem or a realy exaustive drive search as you type. not realy the same a with a web browser where you usualy look through a not so large page. that said, perhaps it could be done...