Search completed in 0.98 seconds.
3 results for "componentId":
Inputs and input sources - Web APIs
WebAPIWebXR Device APIInputs
{ "profileid": "generic-trigger-squeeze-touchpad", "fallbackprofileids": [], "layouts" : { "left-right-none" : { "selectcomponentid": "xr-standard-trigger", "components": { "xr-standard-trigger": { "type": "trigger" }, "xr-standard-squeeze": { "type": "squeeze" }, "xr-standard-touchpad": { "type": "touchpad" } }, "gamepad": { "mapping": "xr-standard", "buttons": [ "xr-standard-trigger", ...
... "xr-standard-squeeze", "xr-standard-touchpad" ], "axes":[ { "componentid": "xr-standard-touchpad", "axis": "x-axis"}, { "componentid": "xr-standard-touchpad", "axis": "y-axis"} ] } } } } this is a controller which regardless of which hand it's in (and even if it's not currently associated with a specific hand) has three components: a standard trigger, a standard squeeze input, and a touchpad.
... according to the selectcomponentid property, the xr-standard-trigger component is the one used to perform a primary action.
Windows Media in Netscape - Archive of obsolete content
ArchiveWindows Media in Netscape
the following uses dhtml behaviors to associate a set of behaviors with a span element, which is then interrogated for its version number (the script attempts to verify that the windows media player control is at version 9): <span style="behavior:url(#default#clientcaps)" id="cc"></span> <script language=javascript> var cv = cc.getcomponentversion( "{6bf52a52-394a-11d3-b153-00c04f79faa6}", "componentid" ); if (cv == null || cv == "") { top.location.href = "http://foo.bar.foo/checkref"; } </script> netscape 7.1 does not support ie's dhtml behaviors.
RTCIceCandidateStats.priority - Web APIs
WebAPIRTCIceCandidateStatspriority
andidate type (local, server reflexive, peer reflexive, or relayed) the preferability of the candidate's specific ip address (for multihomed agents) the candidate's component id (1 for rtp, 2 for rtcp) the candidate's priority is computed using the formula (ptype is the priority of the candidate's type and plocal is the priority of the ip address): priority = 224×ptype + 28×plocal + (256 - componentid)priority\quad =\quad { 2 }^{ 24 }\times { p }_{ type }\quad +\quad { 2 }^{ 8 }\times { p }_{ local }\quad +\quad (256\quad -\quad componentid) this is equivalent to mapping the priorities of teh candidate type, the local ip, and the component id into various bit ranges within the 32-bit priority value.