Re: Export project that was started while not being logged in (online)

by Puybaret » Wed Dec 06, 2023 7:20 pm

Open the JavaScript console of your browser and execute the following script:

Code: Select all

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.