I am trying to get indirect addressing to work. I have seen an example somewhere in my travels but can not find it again. Hope someone can help me.
Tiddler1 has field pictureURL="WA-image-2543’
Tiddler WA-image-2543 had field imageURL=“Media/WA/image-2543.jpg”
The view template for tiddler1 needs to display the image pointed to by the tiddler whose title is in its field pictureURL where the actual URL is in its field imageURL…
The last try came from chatGPT and also failed
<$set name="picURL" value={{{ [<currentTiddler>get[pictureURL]] }}} >
{{ [<picURL>get[imageURL]] }}
</$set>
bobj