Hi SGaist,
My Windows version is Windows 7 64 bit.
This is the Qml page:
import QtQuick 2.2
Rectangle
{
width: 800
height: 600
color: "red"
AnimatedImage
{
x: 0
y: 0
width: 200
height: 200
source: "gif1.gif"
}
AnimatedImage
{
x: 300
y: 0
width: 200
height: 200
source: "gif2.gif"
}
AnimatedImage
{
x: 600
y: 0
width: 200
height: 200
source: "gif3.gif"
}
}
↧