I've created a script which makes it possible to display a text on a
Squeezebox.
The script parameters are -->
SBMessage.vb("Main","IPADDRESS;MESSAGELINE1;MESSAGELINE2;DURATION;BRIGHTNESS")
What I want to do is display the sunset time on the squeezebox. The command I've tried is:
SBMessage.vb("Main","localhost;Zonnetijden;Zonsondergang vandaag om " &hs.Sunset & ";5;4")
That results in the string being cut off at "Zonsondergang vandaag om ".
I also tried:
SBMessage.vb("Main","localhost;Zonnetijden;Zonsondergang vandaag om &hs.Sunset ;5;4")
and
SBMessage.vb("Main","localhost;Zonnetijden;Zonsondergang vandaag om hs.Sunset ;5;4")
Is it possible to pass of a homeseer command to the parameters? And if so...how?
p.s. If you want I can attach the script, but you will need a Squeezebox server (or Squeezecenter server) with a device which has a display (Squeezebox/Transporter) to test it.