import Qt 4.7 Item{ height: 500 width: 500 Loader{id: test source: 'Test.qml' } SequentialAnimation{ running: true loops: 1 PauseAnimation{ } NumberAnimation{ target: test; property: "opacity"; to: 0 } PropertyAction{ target: test; property: "source"; value: "" } NumberAnimation{ target: test; property: "opacity"; to: 1 } } }