Hello, Dear XYplorer Community! # On XYplorer v. 27.20.0700 (but I think the version does no matter), I often receive a dialog window "The current script appears to be recursive. The stack size is [Nr.] .". Situation: Two or more scripts build a chain, where the scripts call each other and...
It's possible. My solution for now is creating of dummy folders, which have nonicon-item-names and custom icons (using desktop.ini-files) and let script do some things other than opening / going to this dummy folders. Example of a nonicon-item-name of a dummy folder: "Open ini-file" - sel...
style=1024? Thank you, I did not see this already existing option 1024. I tried 1024 and found out, that 1024 overrides 2048 in "1+1024+2048", so that paths of normal icon-entries will be shown despite of 2048. # Edit (02.11.2025, 11:57): The problem is that the nonicon-items and icon-ite...
Hello, Dear XYplorer Community! May be, it were good to add a style option (new_style_option in the following example) and / or a syntax option, that would be indicated by "|"-sign (as example) for inputselect() to give user the possibility to show individual defined icons for nonicon-item...
May be, the selfilter does not scroll down to the folder and does not select it,
if the folder has "[" or "]" or both in the folder name?
Here under XYplorer v. 27.10.0500
... Trying to find a solution I have experimented a little bit more: I inserted the 2. script into the script file, where the 1. script is and found that the 2. script does not open the Floating Preview from there. So I can only say, that the Floating Preview only opens if it is called by the 2. sc...
Can't reproduce... I think there is nothing to search for here using the tool mentioned in your post of 08 Mar 2025 18:22, because the 2. script itself, as this is mentioned in my first post here, works ok and opens the Floating Preview if it is called directly, whithout the 1. script. I can only s...
Yeah, without showing the full script so everyone needs to guess how the shown variables are filled^^ This is my script, mentioned here as the 2. script: $ext_____ = "png"; $searchpn = "*.$ext_____"; // search pattern $curitem_ = <curitem>; $curpath_ = <curpath>; $qs______ = &qu...
But you're working with setting "BackgroundFileOps", 0; ? Inserting setting "BackgroundFileOps",0; or setting "BackgroundFileOps",1; // ...normal script actions... renameitem($name_new,$curitem_); setting "BackgroundFileOps",[0 or 1]; selectitems $path_name_n...
selectitems on the renamed item before calling the preview? Inserting selectitems // ...normal script actions... renameitem($name_new,$curitem_); selectitems $path_name_new; // path and the new file name inside : $curpath_."\".$name_new #178; does not work: the result is the aforementione...
Hello, dear XYplorer Community! I am using XYporer v. 26.90.0205. If running the combination of two scripts as shown underneath // 1. script: // ...normal script actions... if(...){ load "<xyscripts>\Script-2.xys","Rename [ext]-Screenshot-file"; } // "load" is the last ...