Page 1 of 1

BD-D8900

Posted: Wed Oct 02, 2013 12:45 pm
by NeoMoucha
Hi all, unfortunately my Samsung BD-D8900 was defect and it came repaired with upgraded firmware to latest version (1016), so I can't install SamyGO anymore :(
Is there a way to revert the firmware to old version 1007 which is supported by SamyGO? I got the USB original 1007 version ready...

Re: BD-D8900

Posted: Mon Oct 14, 2013 1:14 pm
by NeoMoucha
Really no way to downgrade? :cry: :cry: :cry:

Re: BD-D8900

Posted: Sun Apr 20, 2014 5:28 pm
by NeoMoucha
Still nothing? :(

Re: BD-D8900

Posted: Sun Apr 20, 2014 5:46 pm
by juusso
it`s a pity

Re: BD-D8900

Posted: Sun Apr 20, 2014 5:48 pm
by NeoMoucha
I wish I could help ... :|

Re: BD-D8900

Posted: Tue Jan 12, 2016 10:32 pm
by n222221n
Hi All,

maybe it will help for somebody,
I had a bit time to play with my BD D8900 EN FW 1017-2 and did a read OS file modified widget from BBC widget with a simple code :

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Z_Read_OS_File</title>
<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/API/Widget.js"></script>
<script type="text/javascript" language="javascript">
function init() {
var widgetAPI = new Common.API.Widget();
widgetAPI.sendReadyEvent();
}


function readfile() {
alert(document.getElementById('iframe').contentDocument.body.firstChild.innerHTML);
}


</script>
</head>
<body onload='init();' bgcolor="#FF0000">
<iframe id='iframe' src = 'file:///proc/mounts' onload='readfile()' height=1000 width=900> </iframe>

</body>
</html>

It is really very easy to access an OS file from javascript.