Send data from (google sheet or web) to activepresenter and assign it in variable

Problem:

send data from (google sheet or web) to activepresenter and assign it in variable
ActivePresenter version:
ActivePresenter Pro Edition
Version 8.0.0
OS:
windows
Notes:

Hi,

Could you explain what you need in more detail so that we can help? Generally, you can pass parameters to presentations via the query string.
For example, http://localhost:40772/1606701221399/tutorial.html?abc=xyz
Then, in the HTML5 presentation, you can get the URL and parse it to get the query parameters.
var url = window.location.href; // url = http://localhost:40772/1606701221399/tutorial.html?abc=xyz

Regards,

I have a conversation course, and I am an NLP specialist. I want to have the student record their voice, and after processing the text, send the TEXT to the ACTIVEPRESENTER.

Hi,

It seems that you want to convert speech to text. Unfortunately, ActivePresenter doesn’t support Speech to Text in both editor and HTML5 yet.

Regards,

Hi
could you tell me more about this methods , the example you minion is localhost in your computer .
Regards,

Hi,

Please take a look at pages 254-267 in User Manual for detail about JavaScript API. Basically, you can get/set a variable value by the following functions:

var value = prez.variable(‘variableName’);
prez.variable(‘variableName’, value);

You can also set text for a text box and submit it for scoring validation.

Regards,