Custom labels


To display labels in the player, you can use custom elements by selecting the text type. 

The label text can be specified in the builder or passed in the code. To do this, you need to specify some unique identifier for the element in the settings.

Using this id, you can pass the text to the label in the player code with the idtext parameter

label1text:"My text"

You can also pass the text of the label via JS with the text:id command at any time.

player.api("text:label1","My text");

To hide the elements before sending the text via JS, you need to enable the Hide / until text update

To hide the label after a certain time after the command, you need to enable the Hide / after a certain time option.

This method does not work in a playlist. Use the following if you need to change labels for different files in a playlist.

Variables

You can use variables to pass part of the text to the element through the code. Mark the place in the element text with the template {text1}, {text2} to {text5} and then in the code specify the corresponding variable text1, text2 to text5

let player = new Playerjs({id:"player", file:"URL", text2:"Episode 3"});

The player will replace the template and show the text element Next Episode 3

Variables allow you to show dynamic data. For example, you can display the current date in the inscription to implement a watermark.

let date = new Date();
let player = new Playerjs({id:"player", file:"URL", text2:date.getDate()+"."+(date.getMonth()+1)+"."+date.getFullYear()});

How to show text instead of default buttons

Standard elements can also be presented in text form if you enable the Use text as an icon option in the icon settings with PRO

In this case that element will use the text from the tooltip value instead of the graphic icon. Example can be found in the free templates.


19.9.102024 © PlayerJS

Sign up free

Sign up
By signing up, you agree to Terms of Service
Login if you have an account

Restore password

Restore
Forgot email? Contact us