this is javascript code to do it as a bookmarklet. Replace localhost
with the IP of your slimserver.
javascript:var winOpts =
'resizable=no,scrollbars=yes,width=800,height=480';function
popUp(pPage) { var popUpWin = window.open(pPage,'popWin',winOpts);
popUpWin.focus(); }popUp('http://localhost:9000');
I also did it as a webpage, with the hopes of having a clickable icon
from my desktop, but firefox and opera don't allow self.close(), so you
end up with a blank underlying window in addition to the slimserver
window. Not the hugest deal, but I wish it was cleaner.
<html>
<head>
<title>Slimserver WebConsole Executor</title>
<script language = 'JavaScript'>
var winOpts = 'resizable=no,scrollbars=yes,width=800,height=480';
function popUp(pPage) {
var popUpWin = window.open(pPage,'popWin',winOpts);
popUpWin.focus();
}
popUp('http://localhost:9000');
</script>
</head>
<body>
<script language = 'JavaScript'>
window.close();
</script>
</body>
</html>
--
bklaas
------------------------------------------------------------------------
bklaas's Profile: http://forums.slimdevices.com/member.php?userid=58
View this thread: http://forums.slimdevices.com/showthread.php?t=20151
_______________________________________________
Discuss mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/discuss