Search found 15 matches

by waqu
27 Sep 2019 11:23
Forum: Wishes
Topic: Increase the maximum number of parameter: [mruGoto] Count=256.
Replies: 5
Views: 1321

Re: Increase the maximum number of parameter: [mruGoto] Count=256.

admin wrote: 27 Sep 2019 09:01 And the other part of my question? (Why more?)
It's not enough for me. I need quick access to more than 2,000 aliases.
by waqu
26 Sep 2019 20:45
Forum: Wishes
Topic: Increase the maximum number of parameter: [mruGoto] Count=256.
Replies: 5
Views: 1321

Re: Increase the maximum number of parameter: [mruGoto] Count=256.

admin wrote: 09 Sep 2019 13:55 256 is a lot. Why more? It would slow down startup.
The program starts quickly with a larger number, but this parameter is reset to 256 when saved settings.
by waqu
28 Aug 2019 13:09
Forum: Wishes
Topic: Increase the maximum number of parameter: [mruGoto] Count=256.
Replies: 5
Views: 1321

Increase the maximum number of parameter: [mruGoto] Count=256.

Increase the maximum number of parameter: [mruGoto] Count=256, make more 1000. File XYplorer.ini.
by waqu
26 Aug 2016 15:32
Forum: Wishes
Topic: Add sub-menu support for scripts
Replies: 76
Views: 13771

Add sub-menu support for scripts

Add the ability to create sub-menus in scripts.
by waqu
06 Aug 2016 10:17
Forum: Wishes
Topic: Add support for archives.
Replies: 2
Views: 953

Re: Add support for archives.

RalphM wrote:XY has basic zip support for quite a while now.
If you need anything more than that you might want to get a bit more specific with your wish.
Need support for browse archive in file panel.
by waqu
06 Aug 2016 08:48
Forum: Wishes
Topic: Add support for archives.
Replies: 2
Views: 953

Add support for archives.

Add support for browse archives: zip, 7zip and other.
by waqu
18 Mar 2016 00:40
Forum: Bug Reports
Topic: Does not work the parameter "u" of the function new()
Replies: 1
Views: 733

Does not work the parameter "u" of the function new()

I use this option, but the function creates a duplicate of the new element.
Example code:

Code: Select all

new("C:\Dir","dir",,"u");
by waqu
10 Jan 2016 13:36
Forum: Bug Reports
Topic: Function readfile() doesn't read large files
Replies: 14
Views: 3095

Re: Function readfile() doesn't read large files

highend wrote:Use the dos copy command instead (with run / runret):

Code: Select all

copy /b file1+file2+file3 targetFile
I need after the merger split file of the same size.
by waqu
10 Jan 2016 04:21
Forum: Bug Reports
Topic: Function readfile() doesn't read large files
Replies: 14
Views: 3095

Re: Function readfile() don't read large file

highend wrote:Iirc, the limit is by design.

Why are you trying to copy an .avi file by readfile / writefile?
I need to merge multiple files into one.
by waqu
10 Jan 2016 03:30
Forum: Bug Reports
Topic: Function readfile() doesn't read large files
Replies: 14
Views: 3095

Function readfile() doesn't read large files

I use this code to copy files:

Code: Select all

 writefile("I:\Temp\file.avi",readfile("D:\Temp\file.avi","b"),,"b");
Files size over 100 MB copied incompletely, but only the first 100Mb.
by waqu
08 Jan 2016 04:42
Forum: Script Exchange
Topic: Merge and split merged files
Replies: 0
Views: 2015

Merge and split merged files

"Merge files" $exists=exists("<curitem>"); if ($exists==1){ foreach ($token,<get SelectedItemsPathNames |>){ $i++; $md5=hash("md5","$token",3); $file=getpathcomponent("$token","file"); $filesize=filesize("$token"); writefile(&quo...
by waqu
16 Jun 2015 14:29
Forum: Script Exchange
Topic: Image Processing v.1.0
Replies: 1
Views: 1120

Image Processing v.1.0

"Convert to JPG" foreach($token,<get SelectedItemsPathNames |>){ $r=0; $i++; if($i==15){ $i=0; $r=2; } run "<xydrive>\SP\IrfanView\i_view32.exe $token /jpgq=91 /convert=$token.jpg /cmdexit",,$r,0; } sound "%SystemRoot%\media\tada.wav"; status "Done"; "Co...
by waqu
11 Jun 2015 08:02
Forum: Script Exchange
Topic: User Functions Exchange
Replies: 99
Views: 69694

Re: User Functions Exchange

Convert milliseconds to hh:mm:ss.fff function mstime ($ms) { $fff = $ms % 1000; $ms = $ms \ 1000; $ss = $ms % 60; $ms = ($ms - $ss) / 60; $mm = $ms % 60; $hh = ($ms - $mm) / 60; $hh = format ("$hh", "00"); $mm = format ("$mm", "00"); $ss = format ("$ss&qu...
by waqu
01 Jun 2015 09:00
Forum: Script Exchange
Topic: MD5 File Repair Tool v.1.0
Replies: 0
Views: 2066

MD5 File Repair Tool v.1.0

Restores the location and names of files by md5 hash and verifies MD5 checksums. "MD5 Tool: Add info about the file" foreach($token,<get SelectedItemsPathNames |>){ $tag=tagitems("tag",,$token); $curbase=getpathcomponent($token,"base"); $md5=hash("md5",$token,...
by waqu
28 May 2015 14:26
Forum: Script Exchange
Topic: Video Processing v.1.0
Replies: 1
Views: 1260

Video Processing v.1.0

Extract frames video files in JPEG format with an interval of 1 second, to become familiar with the contents of the video. For a quick access to the desired frame using MPV player. "Extract Frame: 1 sec interval" foreach($token,<get SelectedItemsPathNames |>){ $base=getpathcomponent($token...