In the sequencer I have built a carousel, in which I call up an item, in which I show a random photo. I get this photo from an xls file. This XLS file is being connected trough datalinq.
I filter the results via datalinq. I shuffle all the values present and then show only the top row.
my qyery in datalinq is
SELECT top 1 [Sheet1$].[Id], [Sheet1$].[Titel], [Sheet1$].[Locatie], [Sheet1$].[Naam], [Sheet1$].[File]
FROM [Sheet1$]
where not([Sheet1$].[Id] is null)
order by rnd([Sheet1$].[Id])
And with this I get a single result.
But this just doesn't work, because the refresh rate is not often. Every now and then I get a different result, but I can't figure out where to set the interval of refreshing. In my idea, every time expression "walks" in the carousel, past my scene, Xpression must retrieve the new values, via datalinq. Now that rarely happens.
Also the "refresh time" (which you can fill in at the datalinq connection tab, within datalinq) does not help my results either.