Posts by bribeiro • 156 points
3 posts
-
1
votes2
answers469
viewsA: Nodejs or flash solution for streaming live video!
Like everything in life, it’s a matter of choice. If you really want to support IE, it is no use to use Node, after all your problem is not in the backend but in the front. In a very short response,…
-
1
votes2
answers1208
viewsA: How to move a drawing in HTML5 canvas without getting the mouse or keyboard position? Another way?
You can create an Interval that will increment variables, which would change the position of the object. Another option is to have an array of pre-defined positions, in the latter case you can use…
-
2
votes1
answer513
viewsA: Link from a menu to a bookmark in Google Maps
In your menu you need to have a data attribute. Onlcick you take this data, loop in your markers list and trigger the click event. google.maps.event.trigger(markers[i], 'click');…