hi
we need more than 120 chars (maxleght="120") for sendMessage web interface
how do this ?
we try to edit /share/tuxbox/enigma/templates/sendMessage.tmp
<html>
<head>
<title>TV Message</title>
</head>
<body>
Send the following message to your TV:
<br><br>
<form name="tv" action="/cgi-bin/message">
<input name="message" type="text" size="120" maxlength="120">
<br><br>
<td><input type="checkbox" name="wait" value="on"></td> Wait for confirmation
<br><br>
<input type="submit" size="100px" value="Send">
<input type="reset" size="100px" value="Clear">
</form>
<script>
document.tv.message.focus();
</script>
</body>
</html>
with this code
<html>
<head>
<title>TV Message</title>
</head>
<body>
Send the following message to your TV:
<br><br>
<form name="tv" action="/cgi-bin/message">
<textarea name="message" rows="8" cols="87"></textarea>
<br><br>
<td><input type="checkbox" name="wait" value="on"></td> Wait for confirmation
<br><br>
<input type="submit" size="100px" value="Send">
<input type="reset" size="100px" value="Clear">
</form>
<script>
document.tv.message.focus();
</script>
</body>
</html>
but it can't save because is read only
please help me
falconet
Member Since 14 Oct 2011Offline Last Active 24 Jul 2018 16:50