Search found 559 matches

by Muroph
03 May 2013 23:04
Forum: Script Exchange
Topic: TeraCopy Integration
Replies: 238
Views: 118345

Re: TeraCopy Integration

Again... please take care with this and if concerned wait for Muroph to respond. your fix in this post is almost exactly the same as the one i did over here (small diff in a new command), so it should be safe to use. thanks for taking the time to do it, BTW. :) now i'll downgrade xy a few versions,...
by Muroph
24 Apr 2013 08:51
Forum: Script Exchange
Topic: TeraCopy Integration
Replies: 238
Views: 118345

Re: TeraCopy Integration

sorry guys for not noticing this. i'm still using xy v12.0 (i keep forgetting to upgrade :roll: ). gonna update xy and fix the script later this week (if i still remember how it works :lol: ). Assuming divarak's post is the key, I haven't tested any of this, bla, bla, the line he mentions should rea...
by Muroph
11 May 2012 05:37
Forum: Script Exchange
Topic: TeraCopy Integration
Replies: 238
Views: 118345

Re: TeraCopy Integration

fixed a bug.
still on the lookout for more.

new version is on my previous post.
by Muroph
10 May 2012 08:44
Forum: Script Exchange
Topic: TeraCopy Integration
Replies: 238
Views: 118345

Re: TeraCopy Integration

new beta version, now with a "move/copy here by tag" command. click on the command and select the tag on the menu that pops up (only tags with at least 1 item are displayed). for now only the current list or tree path can be the target. as usual, this has not been extensively tested for bu...
by Muroph
17 Apr 2012 16:43
Forum: Script Exchange
Topic: TeraCopy Integration
Replies: 238
Views: 118345

Re: TeraCopy Integration

as requested by paul0, i added some icons to the menu and the ability to automatically clear the collection after you copy/move the collected items. the auto-clear option is in the configuration dialog and defaults to off. there's also a new tweak $clearcolldelay which sets a delay in milisecs befor...
by Muroph
16 Apr 2012 19:50
Forum: Tips & Tricks, Questions & Answers
Topic: Calculations - help needed
Replies: 7
Views: 1979

Re: Calculations - help needed

try this $in=input("Parameters","<total>,<pack>,<skip>"); $total=gettoken($in,1,","); $pack=gettoken($in,2,","); $skip=gettoken($in,3,","); $n=gettoken($total/($pack+$skip).".",1,"."); $r=$total-(($pack+$skip)*$n); $sk=$n*$skip+$r...
by Muroph
31 Mar 2012 04:49
Forum: Script Exchange
Topic: TeraCopy Integration
Replies: 238
Views: 118345

Re: TeraCopy Integration

If you can add some icons before each menu item, it will be more user friendly. will do :) 1. items (files/folders) are copied or moved, the collection should be cleared. sounds simple to implement. i'll take a shot at it this weekend. 2. take tags files as collections. user can move/copy items fro...
by Muroph
13 Mar 2012 15:56
Forum: Tips & Tricks, Questions & Answers
Topic: How to send text in a xyplorer script?
Replies: 3
Views: 1242

Re: How to send text in a xyplorer script?

this script should work

Code: Select all

focus "A";sendkeys "?";
by Muroph
16 Feb 2012 04:43
Forum: Bug Reports
Topic: property("#-1")
Replies: 1
Views: 866

property("#-1")

one of my scripts has stopped working.
the problem is that a SC property with the argument "#-1", which used to return the contents of the item's info tip, now only gives an error message.
the change that caused this happened somewhere between xy v10.80.0101 and 10.80.0108.
by Muroph
11 Feb 2012 06:33
Forum: Script Exchange
Topic: Cosmetics -- status bar code request
Replies: 19
Views: 8852

Re: Cosmetics -- status bar code request

this was fun to make: :mrgreen: setting "AutoRefresh", 0; $text="This is a test message"; $delay=5; // milisecs $step=1; // >=1 $fall=-1; // type of "fall" $spcmult=1; // >=1 $icon=""; $color="000000"; $done=0; $len=strlen($text); if($fall>=0){ $miss...
by Muroph
10 Feb 2012 14:13
Forum: Tips & Tricks, Questions & Answers
Topic: ^ Full Row Select (Flat View & Search)
Replies: 32
Views: 6714

Re: ^ Full Row Select (Flat View & Search)

related bug: with FRS enabled, the label column does not honor the setting Configuration | Tags | Popup by tag columns right-click unless Configuration | Tags | Toggle Labels by Label column click is also enabled. the tags and comment columns work as expected. tested on a fresh install of xy v10.80....
by Muroph
08 Feb 2012 05:50
Forum: Script Exchange
Topic: Need a script to find file extensions with conditions
Replies: 6
Views: 3016

Re: Need a script to find file extensions with conditions

seems like i'm a bit too late. just to avoid wasting the effort, here's a sligth modification of a script i use to find any mkv with a matching mp4. remove the "//" before #359 to make the script filter the list and show only the files that matched. BTW, this script only selects the files,...
by Muroph
06 Feb 2012 16:34
Forum: Tips & Tricks, Questions & Answers
Topic: Thumbnails, Previews, and Icons
Replies: 10
Views: 4179

Re: Thumbnails, Previews, and Icons

janetb wrote:5) Have totally lost Lockhunter ("What is locking this file/folder?") in r-click context menu for all files and folders.
try adding lockhunter to the "send to" list.

go to "%APPDATA%\Microsoft\Windows\SendTo" and create a shortcut for lockhunter there.
by Muroph
06 Feb 2012 00:01
Forum: Script Exchange
Topic: TeraCopy Integration
Replies: 238
Views: 118345

Re: TeraCopy Integration

hey everyone! :mrgreen: damn, it's been a long, long time since i've been on the forum. i've changed some things in the script and thought i should share it here. 2 new commands: -delete: self explanatory. this also removes all tags in the deleted items. i mainly use this to delete large numbers of ...