The effect of freezing on the Vizio Smart TV application

The Vizio Smart TV app displays a strange hover that moves when you press a key. The required keystroke functionality does not work properly, while it seems that Vizio has its own hangs and navigation. I already used already tried a lot of things, how to set the border to anyone, deleted hover, formatting the text, but all in vain. Please suggest how to proceed.

+4
source share
1 answer

Hey, I ran into a similar problem and I solved the problem by following these steps

  • Vizio platform is trying to implement its own freeze, where ever it finds a tag <a href>on a web page
  • The Vizio platform will implement the freezing of text fields and other types of input on a web page.

In fact, vizio defines an internal hover that works from top to bottom in for example, suppose that such code exists

    <div>
<a href="t1.html">test1</a>
<a href="t2.html">test2</a>
<a href ="t3.html">test3</a>
</div>

In the above case, as soon as you press the navigation key on the remote guidance, you will get test1, and as soon as you press the right key, it will switch to test2 and so on, and vice versa will happen in the case of the left key

Note: the way to avoid this hover is to remove the href tags in the application, at least I did it in my application

+3
source

All Articles