Search found 13232 matches

by highend
15 May 2011 13:54
Forum: Script Exchange
Topic: Invoke ffmpeg with openwith?
Replies: 0
Views: 956

Invoke ffmpeg with openwith?

Hi, it's just a simple script to convert any video to mpeg2 (dvd compliant) to view it on my SAT receiver (which only supports proper mpeg2 files). //Convert current file "VideoConvert : convert" //set FFmpeg and Sound path below $exec = "D:\Tools\FFmpeg\ffmpeg.exe"; $microwav = ...
by highend
14 May 2011 20:48
Forum: Bug Reports
Topic: Shell menu language?
Replies: 6
Views: 1851

Shell menu language?

Don't know if it's a bug or intended behaviour... Windows 7 x64 SP1 German, XYplorer latest beta (english). If I rightclick on a folder in the left pane I have my normal (german) shell functions like "Ausschneiden, Kopieren, Einfügen", etc. If I use "Kopieren" (english: Copy) and...
by highend
14 May 2011 20:34
Forum: Bug Reports
Topic: Loadtree slightly bugged?
Replies: 1
Views: 670

Loadtree slightly bugged?

v9.90.0925 I use two different loadtree scripts in a catalog. First one: // Load Download Tree & Switch Panes loadtree "Desktop|Eigene Dokumente|C:\Program Files\|C:\Program Files (x86)\|C:\Temp\|C:\Users\Highend\|C:\Windows\|D:\Images\|D:\Install\|D:\Temp\|D:\Tools\|D:\Users\Highend\Dokume...
by highend
04 Apr 2011 15:56
Forum: Bug Reports
Topic: Network - Not all machines visible
Replies: 19
Views: 3114

Re: Network - Not all machines visible

I should have been clearer: Z: doesn't appear in the Tree hanging directly under the root Computer-node? If you mean: It appears as letter Z: in the tree (it's not at the top but at the bottom of it)? Yes it does. It isn't a problem of XYplorer to show drive letters that were assigned through opera...
by highend
04 Apr 2011 13:16
Forum: Bug Reports
Topic: Network - Not all machines visible
Replies: 19
Views: 3114

Re: Network - Not all machines visible

nas8e9 wrote:Does the share become visible to XYplorer after using Windows Explorer to map it to a drive letter?
You mean visible in the network place? No. Still only the two physical ones (while \\vm-xp-sat\Movies mapped to Z:)
by highend
04 Apr 2011 12:43
Forum: Bug Reports
Topic: Network - Not all machines visible
Replies: 19
Views: 3114

Re: Network - Not all machines visible

Uh, try harder please!

It's not an option to use the build in explorer for such a simple task :)
by highend
04 Apr 2011 12:11
Forum: Bug Reports
Topic: Network - Not all machines visible
Replies: 19
Views: 3114

Network - Not all machines visible

Hi, Windows 7 Ultimate x64 DE XYplorer 9.90.0605 (Beta) I'm currently running a Windows XP SP3 machine inside Virtual Box 4.0.4 which shares the folder "C:\Movies" as "\\vm-xp-sat\Movies" The windows explorer has no problems to show the machine vm-xp-sat and gain access to that f...
by highend
29 Mar 2011 22:56
Forum: Wishes
Topic: Tough words about GUI
Replies: 375
Views: 50614

Re: Tough words about GUI

admin wrote:It's not the time to dive into further polishing here, because I have to finalize XYcopy 2.0 quickly...
Can you show us a few screenshots, how XYcopy will look like / is integreated in the ui of XYplorer (I hope it's a bit like the Show Panel Function (F12))?
by highend
13 Mar 2011 13:13
Forum: Script Exchange
Topic: Replace dot / underscores in file- and foldernames?
Replies: 13
Views: 6690

Re: Replace dot / underscores in file- and foldernames?

My temporary solution (which will only work with a single file) is: else { ////////////// ADDITIONAL //rename files without match criteria "v[:Digits:]" too: //replace all underscore by an space rename s, "_/ " , , $FilePath\$FileName; //will only work with single files: $FileNam...
by highend
12 Mar 2011 22:32
Forum: Script Exchange
Topic: Replace dot / underscores in file- and foldernames?
Replies: 13
Views: 6690

Re: Replace dot / underscores in file- and foldernames?

Thank you Stefan! Long explanation how intending has to be done to get scripts working but I've never seen these rules before and was wondering in the past why some of my small scripts weren't working correctly *g* Now I've got it. Renaming works fine so far with your second script (and copying the ...
by highend
11 Mar 2011 21:44
Forum: Script Exchange
Topic: Replace dot / underscores in file- and foldernames?
Replies: 13
Views: 6690

Re: Replace dot / underscores in file- and foldernames?

After inserting the copied code into the text editor I'm using (EditPlus), the second line global $FileName, $InStrRev, $Sign; and the last line } weren't intended. After intending them with one space in front and starting the script once more I get an "XYplorer Scripting" window. line 6 i...
by highend
11 Mar 2011 21:24
Forum: Script Exchange
Topic: Replace dot / underscores in file- and foldernames?
Replies: 13
Views: 6690

Re: Replace dot / underscores in file- and foldernames?

Hi Stefan,

tried both versions but the only thing I get when I have selected a single file in the active pane and use Scripting - Run Script (and copy & paste your code) is a popup with:

Output for your edited code:

global $FileName, $InStrRev, $Sign;forea...
}

XYplorer 9.90.0404
by highend
11 Mar 2011 10:19
Forum: Script Exchange
Topic: Replace dot / underscores in file- and foldernames?
Replies: 13
Views: 6690

Re: Replace dot / underscores in file- and foldernames?

About 95% of the files follow these formatting rules: name.description1.description2.descriptionX.v(versionnumber with digits).ext or name_description1_description2_descriptionX_v(versionnumber with digits).ext Without the brackets ofc. So the v followed by digits (and dots) until the last dot for t...
by highend
10 Mar 2011 23:20
Forum: Script Exchange
Topic: Replace dot / underscores in file- and foldernames?
Replies: 13
Views: 6690

Re: Replace dot / underscores in file- and foldernames?

Mh, maybe I was a bit too fast...

e.g.: Firefox.Portable.x86.v3.66.5.zip

Is there a way to rename it to:

Firefox Portable x86 v3.66.5.zip

Maybe via a regexp replace?

All dots between a v (case insensitive) and digits or several digits without a v (version information) shouldn't be replaced ;)
by highend
10 Mar 2011 23:10
Forum: Script Exchange
Topic: Replace dot / underscores in file- and foldernames?
Replies: 13
Views: 6690

Re: Replace dot / underscores in file- and foldernames?

Ok, a lot easier than I though it would be.

Thank you, zer0!