![]() |
Broken Dynamic textbox label text using onfocus? - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12) +--- Thread: Broken Dynamic textbox label text using onfocus? (/showthread.php?tid=378405) |
RE: Dynamic textbox label text using onfocus? - kittmaster - 2024-08-06 (2024-08-05, 22:19)mikeSiLVO Wrote: If you post the script-tmdbhelper-recommendations.xml file, I'll take a look when I can. You are showing 19055, but I'm seeing <value>$LOCALIZE[31348]</value> from your quote.The 19055 that I have is in in the recommended.xml:
Am I looking in the wrong spot? RE: Dynamic textbox label text using onfocus? - mikeSiLVO - 2024-08-06 Does it work if you replace your skin files with the ones from the tmdbh_test branch? RE: Dynamic textbox label text using onfocus? - mikeSiLVO - 2024-08-06 (2024-08-06, 02:09)kittmaster Wrote: You are showing 19055, but I'm seeing I copied it from my skin, Mr. V just happened to use the same variable name. RE: Dynamic textbox label text using onfocus? - kittmaster - 2024-08-06 (2024-08-06, 02:10)mikeSiLVO Wrote: Does it work if you replace your skin files with the ones from the tmdbh_test branch? It exhibits the same behavior, half the plot is missing. When I merged your code with mine, when the page first loads, the entire plot shown, when I move the mouse, it cuts off everything and leaves only the first line. RE: Dynamic textbox label text using onfocus? - kittmaster - 2024-08-06 Here is a video of the behavior: http://www.kittmaster.com/imagedump/kodi/skin/PlotCutting.html RE: Dynamic textbox label text using onfocus? - kittmaster - 2024-08-06 The other pebble in my shoe is how do I solve this unicode in the string? ![]() RE: Dynamic textbox label text using onfocus? - mikeSiLVO - 2024-08-06 Video issue is likely cause I didn't use
That's the undefined character in the font. You can't "fix" that for all cases unless you use a different font for all languages. EDIT: I forgot you have to surround in quotes. Should work. RE: Dynamic textbox label text using onfocus? - kittmaster - 2024-08-06 (2024-08-06, 02:37)mikeSiLVO Wrote: Video issue is likely cause I didn't use Ah right, escapes as a string... always the little things... LOL. RE: Dynamic textbox label text using onfocus? - kittmaster - 2024-08-06 (2024-08-06, 02:37)mikeSiLVO Wrote: Video issue is likely cause I didn't use Would this technique also resolve my MPAA flag issue that I posted about? Same thing happens, when the movie loads, the correct flag shows, when the mouse moves, it defaults back to NR.png. I'm wondering if I can apply this the same way to solve this problem for the media flag specific to this display mode. Everywhere else it is fine. RE: Dynamic textbox label text using onfocus? - mikeSiLVO - 2024-08-06 Honestly, this is a lot of finagling, I would just call TMDbH to use DialogVideoInfo. It looks like you are trying to match that dialog anyway. RE: Dynamic textbox label text using onfocus? - kittmaster - 2024-08-06 (2024-08-06, 03:21)mikeSiLVO Wrote: Honestly, this is a lot of finagling, I would just call TMDbH to use DialogVideoInfo. I'm almost there... and agree, it's been a long road, but it's been a good learning experience. I'm not going to fully replicate it all, but now with the plot fixed. The original knocked out the MPAA flag even in script mode, it was just something I noticed as I plugging along. I can see your point, if I can just get a few of these odds and ends done, it's becomes the effort to untangle the embuary to tmdb throughout. It's pretty close being "there", so thanks for the assist... ![]() RE: Dynamic textbox label text using onfocus? - mikeSiLVO - 2024-08-06 Lets break this down. What is the purpose of closing DialogVideoInfo only to display the same information? RE: Dynamic textbox label text using onfocus? - kittmaster - 2024-08-06 (2024-08-06, 03:36)mikeSiLVO Wrote: Lets break this down. What do you mean, closing it? Or did I imply I wanted to close it? I believe this is a question from above talking about prevent a close action on the actor..... yes? If so.... I think I know what your asking, give me a minute to demo something for you...... RE: Dynamic textbox label text using onfocus? - mikeSiLVO - 2024-08-06 Poor choice of words, I meant opening the recommendations dialog to only show the info you already have. Here is a quick mockup of what I mean ![]() Just new stuff, other than poster and fallback to plot, populated with recommendations and similar movies. RE: Dynamic textbox label text using onfocus? - kittmaster - 2024-08-06 Here is what I was driving at: http://www.kittmaster.com/imagedump/kodi/skin/StopImageSelect.html |