Unable to comprehend global folder and bitmap background

So I’m trying to build a wallpaper set around holidays and have it change the wallpaper based on the next holiday in the calendar. My issue is it isn’t loading the images from the folder, I’ve even tried just adding the complete file path
this is the code ive used to get file path

$
      if(
      ci(title, 1) = Martin Luther King Jr. Day, "file://storage/6533-6130/Pictures/Kustom/wallpapers/whitehouse.jpg"
      
   )$

this works to put the path in but even then pulling the global into the background image doesn’t change it
I have a global folder with bitmaps in it called “Walls”

and I’ve seen posts where you can put $gv("Walls" + etc$ but adding the plus sign breaks it, i just can’t figure out how the global folder thing works and I can’t even get it to change image even with direct path in the code, any help would be appreciated thank you sorry for the wall of text

I’m not sure if I understand about your issue, but try this:

$gv("Walls/" + etc )$

Owh, by the way, for the direct path it is:
"file:///…"
It uses 3 slashes instead of 2 slashes.

I hope this would help.
:smiling_face::+1:

That did it! the slash was what I needed on the gv folder! thank you!

1 Like