Iframe and Saola

Hmm, i saw a something like that somewhere…but it thought it was style sheets or something.
edit: here is where I saw it Designing text input field - Saola Animate / Support Questions - ATOMI Community (atomisystems.com)

I had tried variations like that, perhaps i was missing something, I will try what you posted and post my results. BIG THANKS mackavi !!!

Results: Not working. I checked the names and stupid things i do wrong…here is the projectSavingData.saolapack (3.6 KB)

Update (still not working): Below is what i tried after mackavi’s code did not work for me (not saying he is wrong, might be something i did in the project). Anyway, to help others learn from my mistakes, i am posting what i did in addition to the attached file.

function elementEventHandler_Save(doc, e) {

doc.getElement("tb").setText(" ");
//var data=doc.getElement('inputTB').value;
//var data= doc.getElement('inputTB').valueOf
var inputDom = doc.getElement('inputTB').textDom;
//var textInput = inputDom.innerText; // tried this too

doc.getElement("tb").setText(inputDom.innerText);  // i tried with and with out .innerText

}