nrzmalik

Storyline Notepad Text Download

Aug 30th, 2024
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.85 KB | Source Code | 0 0
  1. // Get the value of the "Title" variable
  2. var title = GetPlayer().GetVar("Title");
  3.  
  4. // Get the value of the "Editor" variable
  5. var editor = GetPlayer().GetVar("Editor");
  6.  
  7. // Create a new Blob object
  8. var blob = new Blob([editor], { type: 'text/plain' });
  9.  
  10. // Create a new anchor element for the download link
  11. var downloadLink = document.createElement("a");
  12.  
  13. // Set the download link attributes
  14. downloadLink.download = title + ".txt";
  15. downloadLink.innerHTML = "Download File";
  16.  
  17. // Set the href attribute to the URL of the Blob object
  18. downloadLink.href = window.URL.createObjectURL(blob);
  19.  
  20. // Append the download link to the document body
  21. document.body.appendChild(downloadLink);
  22.  
  23. // Click the download link to initiate the download
  24. downloadLink.click();
  25.  
  26. // Remove the download link from the document body
  27. document.body.removeChild(downloadLink);
  28.  
Add Comment
Please, Sign In to add comment