(SOLVED-ish)

Use JS.

Can you help with that?

https://snap.berkeley.edu/project?user=earthrulerr&project=Earths%20Help%20Desk

To get the value of the textarea, do this instead at the last part:
<input type="text" id="myTextArea" onchange="onchange()"></input>
And then in a <script> tag:

function onchange(){
var text = document.getElementById("myTextArea").value;
(insert code)
}

And then send it over the cloud to your other project somehow.

So would cloud vars work and how would I use them to do this?

Beats me.

So do I do: or what?

I just said,

I am so confused with this. Couldn't I use blocks for this part...? Like cloud vars to save their answer just like I did with vars in money tycoon?

Those weren't really cloud vars, they're local to the user's device.

I guess so, just use ask and wait and cloud vars. But you sent a screenshot of code in the HTML block. So I thought you wanted to do it in HTML.

Back on topic! @bh Help!

https://snap.berkeley.edu/project?user=earthrulerr&project=Earths%20Help%20Desk

I need it so I can look at what they sent!

Yeah, my fault, I started it. Sorry, all. Deleted.

I don't know what it is you want me to do.

So go to editor of that project and activate the HTML block. It is for sending me suggestions, bugs, etc. How could I view what people typed?

Basically saving what they typed then uploading it to another private project we’re I can see them.

Maybe I could use a button like I added:

How would I make it so the button saves it and loads it in a private list.

Snap! Build Your Own Blocks Is the project so far.

<!DOCTYPE html><head>Send report, suggestion, or bug.</head><br><textarea id="txt"></textarea><br><button onclick="saveText()">Submit</button><script type="text/javascript">function saveText(){alert(document.getElementById("txt").value);/* or whatever code but the part where it says document.getElement will have the text in it*/if(canWrite){document.write("Thanks for the feedback!");canWrite=false} }</script><script type="text/javascript">canWrite=true</script>

Do I use this?

yeah but you would change the part where theres a js comment

How and we’re do I connect it to the other project so I can view what they said?

i dont know but that includes everything else you need