Countdown timer works but is not displaying as widget? Help

hello,

I am able to set the countdown timer and it works well, but I am not able to set the widget text to minutes and seconds. Below are the screenshots.

Thanks!
[alt text][1]

in your picture your only attempting to set the seconds variable to the text. if you want to have both mins and secs shown then you need to get the variable for each one. once you have each variable you will need a way to combine them into one text which is where the append node comes in. the append node is used for strings so you will need a conversion as well, the conversion will be created automatically when you try to connect your int to the append nodes string pins. the append node will combine the string input from each pin into one string output, note there is not any implied spaces between input strings so you need to account for that. in the example below i went for a MM:SS style. after the append all you need to do is connect to the return node which will create the to text node. then your done.