If you want the LED hidden when the output is on then add this to your signal library in the screen load script, adjust the output number as required.
[mc.OSIG_OUTPUT0] = function (state)
scr.SetProperty("FROLED", "Hidden", tostring(state) --Hides the LED when output is on, shows when output is off
end,
If you want it to show when output is on, then you will need to add an if statement and set the "Hidden" property to either "1" (hide) or "0" (show)