Page 57 of 59

Re: Like a new feature? Say thanks here

Posted: 27 Jun 2022 17:46
by klownboy
v23.20.0117 - 2022-06-27 11:45
+ Scripting got a new function.
Name: Font
Nice addition. You added the capability to use a fixed font for SC inputselect a while back which was great. Now we can change to a fixed font for a menu similar to this below yet change the font back to a proportional font when ending the script. Quite nice! :tup: :appl:
Fixed font for inutselect.jpg
Fixed font for inutselect.jpg (114.93 KiB) Viewed 6109 times

Re: Like a new feature? Say thanks here

Posted: 12 Aug 2022 21:07
by eil

Code: Select all

  +++ Scripting: Started adding arrays. It already seems to be working at a basic level:
        $a[2]="cat"; $b=1; echo $a[$b+$b]; //cat
    + Scripting | Arrays: Now associative arrays are supported. The named keys have to be 
      put in single quotes:
        $a['pussy']="cat"; $b="pussy"; echo $a[$b]; //cat
        
Smth Revolutionary is coming! :ninja: I hope there will come a command to easily take INI file/section and convert into associative array.

Re: Like a new feature? Say thanks here

Posted: 12 Aug 2022 23:34
by Filehero

Code: Select all

  +++ Scripting: Started adding arrays. It already seems to be working at a basic level:
        $a[2]="cat"; $b=1; echo $a[$b+$b]; //cat
    + Scripting | Arrays: Now associative arrays are supported. The named keys have to be 
      put in single quotes:
        $a['pussy']="cat"; $b="pussy"; echo $a[$b]; //cat
Oh yeah. :tup:

That was a "lange Geburt": when I posted my wish my son was 5 months old - now he's 6 and a half years. :D

Re: Like a new feature? Say thanks here

Posted: 03 Sep 2022 19:09
by eil

Code: Select all

    * SC WriteFile: Added two parameters to control the position and length of the data 
      written to the file.
      Syntax: writefile(filename, data, [on_exist], [mode], [start=1], [numbytes=-1])
        start:  Start writing at this byte position.
                Defaults to 1 which is the very beginning.
                Note: Writing here is always overwriting, not inserting!
        numbytes: Write this number of bytes.
                  Defaults to -1 which means: write everything passed in the data argument.
      Example:
        writefile(, "abc", , , 3, 2); //writes "ab" at pos 3 to the currently selected file
Now one can be a master of hiding own info by "adding" it to other files. :twisted:

Re: Like a new feature? Say thanks here

Posted: 22 Sep 2022 19:16
by eil

Code: Select all

    + File Info Tips and Hover Box: Now you can specify a "Hover Blacklist" containing any 
      number of target paths to be excluded from the File Info Tips and Hover Box, i.e. 
      excluded from file access on mouse hover. Usually you want to exclude slow paths, 
      e.g. cloud folders.
Didn't track who wished for that, but will be useful.

Re: Like a new feature? Say thanks here

Posted: 05 Dec 2022 22:46
by kiwichick
Love the latest help file and the letter indicators for the Scripting Commands index.
2022-12-06_104516.png
2022-12-06_104516.png (51.89 KiB) Viewed 4364 times

Re: Like a new feature? Say thanks here

Posted: 21 Dec 2022 21:45
by Joso
in the past, I've attributed the initial lag in accessing an external (large) drive to hardware or os issues. After this last release (23.80.0304) my system is suddenly much "zippier" - so you get the Thanks.

Re: Like a new feature? Say thanks here

Posted: 02 Jan 2023 19:04
by eil

Code: Select all

    + SC inputselect enhanced: Now you can pre-check all checkboxes.
      Syntax: inputselect(header, listdata, [separator="|"], [style=1], [cancel], _
              [width=800], [height=400], [windowcaption], [preselect], [icon])
        style: 
             2 = Show checkboxes; prefix items with "+" to pre-check them.
         32768 = Pre-check all checkboxes.
      Examples:
        text inputselect("Select Food", "Soup|Cheese|+Cake",, 2); //Cake pre-checked
        text inputselect("Select Food", "Soup|Cheese|+Cake",, 2+32768); //all pre-checked
:tup:

Re: Like a new feature? Say thanks here

Posted: 10 Jan 2023 21:16
by Filehero
v23.90.0411 - 2023-01-10 19:53
+++ Virtual Folders: ...
Just for the announcement. :party: :appl: :tup: :tup: :tup:

Re: Like a new feature? Say thanks here

Posted: 26 Mar 2023 11:17
by highend

Code: Select all

v24.20.0504 - 2023-03-26 11:03
  + Configuration | General | Menus, Mouse, Usability | Mouse: Added option "Allow 
    dragging from a background window". Tick it to allow dragging items from the file list 
    without moving the XYplorer window to the foreground on mousedown
:tup:

Re: Like a new feature? Say thanks here

Posted: 27 Mar 2023 17:10
by jupe
Yeah that new background window feature mentioned above is a real time saver, thanks

:tup: :cup: :beer:

Re: Like a new feature? Say thanks here

Posted: 18 Apr 2023 17:25
by eil

Code: Select all

    + SC gettokenindex enhanced: Added an optional start parameter.
Simply useful.

Re: Like a new feature? Say thanks here

Posted: 22 Apr 2023 12:42
by eil

Code: Select all

    + Configuration | General | Menus, Mouse, Usability | Mouse | Single-click to open an 
      item: Added option "Folders only". Tick it to single-click open only folders, not 
      files.
Tiny options that make XY the best.

Re: Like a new feature? Say thanks here

Posted: 22 Apr 2023 13:46
by autocart
eil wrote: 22 Apr 2023 12:42

Code: Select all

    + Configuration | General | Menus, Mouse, Usability | Mouse | Single-click to open an 
      item: Added option "Folders only". Tick it to single-click open only folders, not 
      files.
Tiny options that make XY the best.
+1 :tup:

Re: Like a new feature? Say thanks here

Posted: 04 Jun 2023 15:52
by admin
Just for the record, Virtual Folders and Event Sounds have been a real game changer for me. I work a lot faster and have a lot more fun doing it.