Nevermind:
dir:.recycle>a0a0a0
did the job
Search found 6 matches
- 08 Sep 2023 11:28
- Forum: Tips & Tricks, Questions & Answers
- Topic: Can't set color filter for .recycle folder on network drives
- Replies: 1
- Views: 153
- 08 Sep 2023 11:22
- Forum: Tips & Tricks, Questions & Answers
- Topic: Can't set color filter for .recycle folder on network drives
- Replies: 1
- Views: 153
Can't set color filter for .recycle folder on network drives
As the title said, I'm not able to set a color filter for the samba .recycle folder on network drives.
Tried:
.recycle>a0a0a0
*recycle>a0a0a0
recycle>a0a0a0
no problems with other file-types, files or folders.
Tried:
.recycle>a0a0a0
*recycle>a0a0a0
recycle>a0a0a0
no problems with other file-types, files or folders.
- 01 Mar 2023 14:38
- Forum: Bug Reports
- Topic: NewItems folder: {yyyy_mm} in subfolder not replaced with date
- Replies: 1
- Views: 197
NewItems folder: {yyyy_mm} in subfolder not replaced with date
I like to create a main folder with year_month {yyyy_mm}_main with some subfolders and files, using the NewItems folder . The template {yyyy_mm} is not replaced in the subfolder.
- 01 Mar 2023 13:54
- Forum: Tips & Tricks, Questions & Answers
- Topic: Image Custom Column: use jpg or png
- Replies: 2
- Views: 240
Re: Image Custom Column: use jpg or png
Took me a little to long, because I forgot to switch the Custom Colum Type to Script :oops: . This works: $pngfile = ".\fpic\<cc_base>.png"; $jpgfile = ".\fpic\<cc_base>.jpg"; if(exists($pngfile) == "1") { return $pngfile; } else { return $jpgfile; }
- 01 Mar 2023 13:01
- Forum: Wishes
- Topic: "audio waveform" or "image column"
- Replies: 26
- Views: 2239
- 01 Mar 2023 12:51
- Forum: Tips & Tricks, Questions & Answers
- Topic: Image Custom Column: use jpg or png
- Replies: 2
- Views: 240
Image Custom Column: use jpg or png
Is it possibel to auto assing jpg or png for the Custom Column Image, depending what file exists?
Something like:
Something like:
Code: Select all
if (.\fpic\<cc_base>.png) {
return ".\fpic\<cc_base>.png";
} else {
return ".\fpic\<cc_base>.jpg";
}