Yes! I should've mentioned it's on a screen, so I'm not sure if that changes things, but here's the current code:
define replaydate = ["aisaflower", "drukcafe", "drukflower", "drukmarket", "etzacafe", "etzaflower", "etzamarket","etzariver", "fenircafe", "fenirflower", "fenirmarket", "fenirriver", "kayncafe", "kaynflower", "kaynmarket", "kaynriver", "kunaflower"] default replayCurrent = 0 screen scenegallery(): tag menu add "menu/extramemories.jpg" $ currentreplayDate = replaydate[replayCurrent] add AlphaMask("menu/memories_[currentreplayDate].png", GradientDisplayable( ["#FFF", "#0000"], kind="linear", thresholds=[0.1, 1.0], center=(0.25,0.5), angle=0)): xalign 0.85 yalign 0.5 zoom 0.5 at bw
Basically, I want the image to update as it goes through the list of dates, so $ currentreplayDate helps me get the location on the list and show an image based on the date in focus. When I take out the variable and just put the image name, it works perfectly, but as soon as I want it to update based on the list variable, it doesn't work q.q