Set reprocess not for script vars?

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
TheQwerty
Posts: 4373
Joined: 03 Aug 2007 22:30

Set reprocess not for script vars?

Post by TheQwerty »

Just curious why the post-processing available via the set SC is limited to environmental and native XY variables?

Cause it would be nice if script vars had the same love:

Code: Select all

"Test"
 $file = 'script.xys';
 $path = '<xyscripts>\$file';
 set $resolved, $path, 'r';
 echo "$path<crlf>$resolved";

admin
Site Admin
Posts: 66321
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Set reprocess not for script vars?

Post by admin »

Good question. Don't know. Changed it.

PeterH
Posts: 2827
Joined: 21 Nov 2005 20:39
Location: DE W11Pro 24H2, 1920*1200*100% 3840*2160*150%

Re: Set reprocess not for script vars?

Post by PeterH »

Not bad :D

Code: Select all

  set $resolved, $path, 'r';  // You know that instead of this
  $resolved = $path, 'r';    // you also can write it this way
:idea:

(Both bear the risk not to be seen :whistle: )

Post Reply