diff --git a/examples/SVG Import/From File.html b/examples/SVG Import/From File.html
index 50bc4cc7..512896b5 100644
--- a/examples/SVG Import/From File.html	
+++ b/examples/SVG Import/From File.html	
@@ -12,6 +12,7 @@
             for (var i = 0; i < files.length; i++) {
                 var file = files[i];
                 if (file.type.match('svg')) {
+                    project.clear();
                     project.importSVG(file, function(item) {
                         console.log(item);
                     });