This was my brief presentation at the Widgets meetup in London on Tuesday - there was a fair amount of demoing too which you don’t get from the slides...
<p style = "font-size:9pt" > Time for a break, <span id = "name" > mate </span></p>
</body>
</html>
Cooler example: webcam
<html >
<head>
<script>
function takePicture(){
var camera = bondi.camera.getCameras()[ 0 ]; camera.takePicture(function(x){document.getElementById("picture").src=x;},function(){alert( "nope" );}); }
</script>
</head>
<body>
<button onclick = "takePicture()" > Take Picture </button>
1 comments
Comments 1 - 1 of 1 previous next Post a comment