I do have a problem I can't figure out. I'm successfully using an action to disable a screen that otherwise displays the currently recording program and what time it ends. I want to extend that by using the HTPC HD LED to indicate when a recording is active.
Since the backlight feature isn't used by a VFD, I figured I'd use it to turn on the recording LED. It works fine manually- when I hit the N key, the LED toggles. But when I try to control it from an action, it always stays on.
Here's the action I use for the screen:
Code: Select all
if $dll(BTVSmartie,1,recnow,title) = then DisableScreen(4)
I tried adding these 2 actions to turn the LED on and off:
Code: Select all
if $dll(BTVSmartie,1,recnow,title) = then backlight(0)
Code: Select all
if $dll(BTVSmartie,1,recnow,title) <> then backlight(1)
Any ideas? Do I need to use V5.4 RC2? Is there some reason I can't use the backlight feature like this?
Thanks-
Sean