Ok, I appreciate the answer.
Btw, do you have any further plans with options for "chat" ? I really like options that "desert kharon" has, like oneline/multiline, different colors of names, and especially "fade out"...(which fades out line by line, not whole chat... )
:deezjavu!deezjavu@deezjavu.tmi.twitch.tv PRIVMSG #channelname :the user message goes here
:jtv!jtv@jtv.tmi.twitch.tv PRIVMSG #channelname :USERCOLOR deezjavu #9ACD32
:deezjavu!deezjavu@deezjavu.tmi.twitch.tv PRIVMSG #channelname :the user message goes here
I really like the tool but got one question: Is there a way that it remembers pollresults after a restart? Now it resets to 0 votes..would be awsome for me it remembered.
That's something I need to look into. Thanks for reminding me :)
There is one simple and very popular feature missing in Teeboard, "custom commands", commands that gives auto response.. For example "!brackets" that gives you link
For now I am still using nightbots custom command, but it would be nice to have all things at one place (teeboard) :)
-Loyaltybot: viewers getting points for viewing..maybe with a betting system included. ATM i'm using Modbot(free) but it's missing some features to make it even more fun.
-Auto-replying to random words bot.e.g: "you have a nice setup"-> shows all specifications. So not a command like !setup -> specs
-An option to make the chat show more 3D-ish..if you know what I mean(right part higher than the left part of the chat for example.
-Same fonts for every text.(I like font X in chat, but cannot find the same font in the notifications for example.
-Maybe an option to customize the .html css sources(colors/layout..)
-As for the poll to be remembered after restart, it would be nice that would also be applied to the chronowatch.(maybe an option as well to save the enable/disable voting & show/not show in stream for the next boot
Yeah there is. You can check for the type of notification and perform a different action for each. Right now, by default, it already does that, but only to swap to the correct image. The animation - TweenLite.fromTo() - is the same for each notification type.
So what you'd need to do is move the animation call and sizing of the image inside an if() statement.
Some pseudo code:
HTML:function teeboardNotification(type, msg) { //alert("notification: " + type + " - " + msg); var img = document.getElementById("notification-img"); // set image depending on notification type if(type == "follower") { img.src = imgFollow; }else if(type == "subscriber") { img.src = imgSub; }else if(type == "donation") { img.src = imgDonate; } // set the notification message var txt = document.getElementById("notification-msg"); txt.innerHTML = msg; // animate everything onto the screen var div = document.getElementById("notification"); div.style.visibility = "visible"; TweenLite.killTweensOf(div); if(type == "follower" || type == "donation") { // set size for follower or donation image img.width = "920"; img.height = "250"; // tween x position from offscreen (0 - width of image) to 0 TweenLite.fromTo(div, 0.6, {x:-920}, {x:0, onComplete:hideNotification}); }else { // set size for subscriber image img.width = "500"; img.width = "300"; // tween x position from offscreen (0 - width of image) to 0 TweenLite.fromTo(div, 0.6, {x:-500}, {x:0, onComplete:hideSubNotification}); } }
You'll then also need 2 separate "hide" animations. As you can see in the code above I specified a different "onCompete" call for each animation. They'd look something like this:
HTML:function hideNotification() { // animate everything back off screen var div = document.getElementById("notification"); // tween x position from 0 to (0 - width of image) TweenLite.to(div, 0.6, {x:-920, delay:6}); } function hideSubNotification() { // animate everything back off screen var div = document.getElementById("notification"); // tween x position from 0 to (0 - width of image) TweenLite.to(div, 0.6, {x:-500, delay:6}); }
I added the scripts you gave me and adjusted everything so it looks great on the preview when I open the .HTML files on IE or Chrome. But it won't show up on OBS at all. Not sure if while adjusting the HTML, I may have removed something critical.
FEATURE REQUEST: Monitor selection for the notification widget. Custom location is nice, but I'd like it to disappear when it doesn't have anything new to tell me. Being able to select the bottom left of my second monitor would be nice.
Do you see the splash screen? --> http://i.imgur.com/pTVFX9x.png
If you updated from 0.1.4, it may (most likely will) get stuck trying to relaunch the app. Kill the process in the Task Manager and restart TeeBoard.
Let me know if that doesn't work.
Hey! Thank you for your response. I got it working. I can't remember if I tried killing the process. But I did restart my PC which is essentially the same thing. Thank you for your excellent work! Adobe Air seems to be very finicky with these updates.
@DeezjaVu For some reason I'm having to restart Teeboard because my latest follower shows on screen. I get the notification that says "xxxxxx is now following", but the text file I'm showing on-screen won't update unless I restart the program.
Not very likely. The Spectrum Widget isn't meant to be a replacement for a music/media player. It is mostly meant for intros or waiting screens, where only a handful of songs suffices.Hey will you be adding support to accept as audio for Misc. Widgets > Spectrum .m3u files? That's basically where I have saved my music playlists(all the songs in it are mp3 - but its hours of music in it :P).