Print at Dec 21, 2025, 10:23:43 PM

Posted by Puybaret at Dec 6, 2023, 7:20:57 PM
Re: Export project that was started while not being logged in (online)
Open the JavaScript console of your browser and execute the following script:

new HomeRecorder().writeHome(application.getHomes()[0], "", {
homeSaved: function(home, blob) {
var downloadLink = document.createElement('a');
downloadLink.setAttribute("href", URL.createObjectURL(blob));
downloadLink.setAttribute("download", "home.sh3x");
document.body.appendChild(downloadLink);
downloadLink.click();
}
});

This will save the edited home in the file home.sh3x found in your downloads folder.
----------------------------------------
Emmanuel Puybaret, Sweet Home 3D creator