Millisecond Forums

adding a gif

https://forums.millisecond.com/Topic11278.aspx

By gfrize - 9/19/2013

Hello all!


I am just wondering if anybody knows the syntax I would need to change this command:


<text correctresp>
/ numitems = 1
/ items = ("well done!")
/ position = (50,65)
/ color = (0, 255, 0)
</text>



to replace the 'well done' with a gif file?

By Dave - 9/19/2013

<picture correctresp>
/ items = ("filename.gif")
/ position = (50,65)
[...]
</picture>

for a static image

<video correctresp>
/ items = ("filename.gif")
/ position = (50,65)
[...]
</video>

for an animated GIF.

By gfrize - 9/23/2013

Oh, will try that, thank you!


:)