Search found 154 matches

by Daniel0312
07 Feb 2024 07:51
Forum: Tips & Tricks, Questions & Answers
Topic: SC popupmenu question
Replies: 6
Views: 255

Re: SC popupmenu question

I'm always interested in learning new things.
And I really like this one, elegant.
Many thanks jupe.
by Daniel0312
06 Feb 2024 09:26
Forum: Tips & Tricks, Questions & Answers
Topic: SC popupmenu question
Replies: 6
Views: 255

Re: SC popupmenu question

It'a a good way, gives me things to think about :)
It seems the only way is to get the <clipboard> and it's <crlf> out of the menu string.
Thanks highend.
by Daniel0312
06 Feb 2024 08:38
Forum: Tips & Tricks, Questions & Answers
Topic: SC popupmenu question
Replies: 6
Views: 255

Re: SC popupmenu question

Thanks jupe, it works indeed in this case. The problem is I want to use the clipboard as entry string, and insert this (simplified) code in an existing popupmenu. $menu = <<<MENU Recase ::UPPER;copytext recase("<clipboard>", "upper"); ::Invert;copytext recase("<clipboard>&qu...
by Daniel0312
05 Feb 2024 21:40
Forum: Tips & Tricks, Questions & Answers
Topic: SC popupmenu question
Replies: 6
Views: 255

SC popupmenu question

$TestString = "Value1<crlf>Value2"; $menu = <<<MENU ::UPPER;copytext recase("$TestString") MENU; popupmenu($menu); The above code works fine as long as there is no <crlf> in the string. When there is one, it's seen as a break in the code line and interpreted accordingly. Is ther...
by Daniel0312
02 Feb 2024 18:56
Forum: Bug Reports
Topic: Tab context menu
Replies: 2
Views: 208

Re: Tab context menu

OK, thanks
by Daniel0312
02 Feb 2024 16:10
Forum: Bug Reports
Topic: Tab context menu
Replies: 2
Views: 208

Tab context menu

I noticed that in an inactive tab context menu the values returned by "Tab History..." and "Type Stats and Filter..." refer to the active tab.
Shouldn't they refer to the right-clicked tab ?
by Daniel0312
30 Jan 2024 23:16
Forum: Script Exchange
Topic: Script: Call specific help topics - scripting only
Replies: 9
Views: 934

Re: Script: Call specific help topics - scripting only

hi highend
I love this script and use it all the time ! So user friendly. Thank you.
Just noticed there's at least one command missing » getpathcomponent(), gpc()
and one too much » preview64 (one is from the change log, the other from the help file)
by Daniel0312
27 Jan 2024 19:09
Forum: Bug Reports
Topic: Throw-away clone script
Replies: 8
Views: 333

Re: Throw-away clone script

Now I know, next time I'll get it faster :)
Thanks again
by Daniel0312
27 Jan 2024 18:43
Forum: Bug Reports
Topic: Throw-away clone script
Replies: 8
Views: 333

Re: Throw-away clone script

Well... a little scripting and I've found a way :)
But I feel that not finding an included file should display an error message, or at least not prevent the excecution of the rest of the script : if there's something missing the script itself will generate an error.
Thank you for taking the time.
by Daniel0312
27 Jan 2024 15:08
Forum: Bug Reports
Topic: Throw-away clone script
Replies: 8
Views: 333

Re: Throw-away clone script

hum... This is just a test script I arrived at after trying for a very long time to understand why my real case wasn't working as expected, and you've got it right here ! But you were right to ask for the full script ! It seems the problem is with an INCLUDE statement at the beginning of my real cas...
by Daniel0312
27 Jan 2024 13:33
Forum: Bug Reports
Topic: Throw-away clone script
Replies: 8
Views: 333

Re: Throw-away clone script

What I meant was that it's only OK with full path given AND if this path is the original XY script folder
by Daniel0312
27 Jan 2024 12:55
Forum: Bug Reports
Topic: Throw-away clone script
Replies: 8
Views: 333

Throw-away clone script

I want to run a long task in the background while I continue using XY. The following code ONLY works if the $Scripfile is situated in the main instance script folder and with full path. $cmd = <<<>>> "<xy>" /new /readonly /win=normal /script="$ScriptFile" >>>; run $cmd, "%TE...
by Daniel0312
26 Jan 2024 19:45
Forum: Tips & Tricks, Questions & Answers
Topic: SC listfolder()
Replies: 4
Views: 294

Re: SC listfolder()

thank you
by Daniel0312
26 Jan 2024 18:19
Forum: Tips & Tricks, Questions & Answers
Topic: SC listfolder()
Replies: 4
Views: 294

Re: SC listfolder()

thanks highend (thought it might be, just couldn't find the escape character).
Could you tell me if there are other characters in file names I should escape the same way ?