alert("Select a file to show!");
}
}
+
+function presentNext(d) {
+ if(d==40) d=1;
+ else if(d==38) d=-1;
+ else return true;
+ current = currentPic.split(',',1);
+ for(i=0;i<document.getElementById('filelist').children.length;i++){
+ if (document.getElementById('filelist').children[i].getAttribute('value') == current[0]) {
+ break;
+ }
+ }
+ f = '';
+ if(document.getElementById('filelist').children[i+d]) {
+ f = document.getElementById('filelist').children[i+d].getAttribute('value');
+ }
+ if(f != "") {
+ getData("showPic.pl?img="+f+"&room="+currentRoom+'&posx=-1&posy=-1');
+ }
+ }
function deletePic(f) {
if(f != "") {
}
else { x=0;y=0; }
document.getElementById("content").innerHTML = '<img id="screen" onClick="pointer(event);" src="store/'+currentRoom+'/'+i[0]+'"><div id="pointer" style="left:'+x+'px;top:'+y+'px;"> </div>';
+
+ c = currentPic.split(',',1);
+ document.getElementById('current').innerHTML = "Current: "+c[0];
+
}
setTimeout('getData("getPic.pl?old='+t+'&room='+currentRoom+'",null,updatepresentation)',1000);
}
<script src="scripts.js" type="text/javascript"></script>
<meta charset="UTF-8"/>
</head>
-<body id="showroom" room="$room">
+<body id="showroom" room="$room" onKeyup="presentNext(event.keyCode)">
HDOC
print <<HDOC;
<div id="content">Remote Presenter<br><-- Click to show or just watch!</div>
<button type="button" onClick="window.open('store/$room/'+document.getElementById('filelist').value)">Show 2 Me</button>
<button type="button" onClick="present(document.getElementById('filelist').value)">Show 2 All</button>
<button type="button" onClick="deletePic(document.getElementById('filelist').value)">Delete</button>
-<div id="preview"></div>
-
+<div id="current"></div><div id="preview"></div>
</body></html>
HDOC