Getting started text translator
For the plugin installation, you must insert the Hand Talk's script and instantiate the class HT by passing an object by a parameter that contains the token and some other configurations of your choice.
In the installation example below, we used the last version of the script, hosted at https://plugin.handtalk.me/web/4.5.1/handtalk.min.js, after insert the Hand Talk's script we instantiate the class HT by passing an object with one token by parameter.
Without a valid token, the tool will not work, showing the error "O serviço está desabilitado temporariamente para este website" (The service is temporarily disabled for this website), after clicking on the tool's activation button.
If you already own a token, please check if you passed it in the right way and if you are having any difficulty, get in touch with our support through our e-mail [email protected].
If you don't already have one, you can purchase a token for your domain by talking to one of our consultants through the page handtalk.me.
Installation example
Javascript
var ht = new HT({
// Change it for you access token
token: "TOKEN"
});
HTML
<body>
<h1>Hand Talk</h1>
<h2>Count on the help of Hugo and Maya, our virtual translator, to make your communication more accessible.</h2>
<p>We offer digital translation to accessibility in Libras, the Brazilian Sign Language.</p>
<!-- Takes the latest version of the HandTalk plugin -->
<script src="https://plugin.handtalk.me/web/latest/handtalk.min.js"></script>
<script>
var ht = new HT({
// Change it to your access token
token: "TOKEN"
});
</script>
</body>