Search found 5 matches

by Akane2092
30 Aug 2025 16:00
Forum: Script Exchange
Topic: My quicksearch script is slow, please kindly comment
Replies: 1
Views: 186

My quicksearch script is slow, please kindly comment

I have a script for user button as follows. Basically, it search for all files in a location that are 1) with a specific label and 2) with specific extensions. I think it work for me, but I find it a bit slow: usually takes 2-3 seconds to popup the menu after I click the button. Can you comment on t...
by Akane2092
23 Jul 2025 06:17
Forum: Script Exchange
Topic: Improvement on custom column script
Replies: 2
Views: 365

Re: Improvement on custom column script

Wow! Just tested it. Works lightning fast
Thank you so much! Have a nice day.
by Akane2092
23 Jul 2025 03:46
Forum: Script Exchange
Topic: Improvement on custom column script
Replies: 2
Views: 365

Improvement on custom column script

Greeting, XY mates! I wrote a script for a custom column that draws circle based on the existence of specific file types inside a folder: "Draw Circle based on attachments" $content = folderreport("files:{name}", "r", "<cc_item>"); $drawCmd = ""; if ...
by Akane2092
12 Jul 2025 04:10
Forum: Script Exchange
Topic: Need some help on mouse event script
Replies: 2
Views: 1714

Re: Need some help on mouse event script

jupe wrote: 12 Jul 2025 04:01 The var you need is <get pane> which returns 1 or 2, so you'd use it something like

Code: Select all

if (<get pane> == 1) { .... }
else { ... }
and to see if dual pane is activated <get #800>
see how you go with that info.
This helps a lot! Thank you!
by Akane2092
12 Jul 2025 03:44
Forum: Script Exchange
Topic: Need some help on mouse event script
Replies: 2
Views: 1714

Need some help on mouse event script

Hello! Greetings! I am trying to write a script for a customed mouse event, but I don't know how I can restrict the script based on which current pane I am working on. My idea is one script that activates when I middle click a folder: If the folder is in pane 1 ⇒ middle click open this folder in pan...