Hatte es in context="InfobarSeekActions" ausprobiert. Leider ohne Erfolg.

Die einzige andere Stelle mit jumNextMark wäre:
Code:
	<map context="InfobarCueSheetActions">		<device name="dreambox advanced remote control (native)">
			<key id="KEY_PREVIOUS" mapto="jumpPreviousMark" flags="m"/>
			<key id="KEY_0" mapto="toggleMark" flags="m"/>
			<key id="KEY_NEXT" mapto="jumpNextMark" flags="m"/>
		</device>
		<device name="dreambox remote control (native)">
			<key id="KEY_PREVIOUS" mapto="jumpPreviousMark" flags="m"/>
			<key id="KEY_NEXT" mapto="jumpNextMark" flags="m"/>
			<key id="KEY_0" mapto="toggleMark" flags="m"/>
		</device>
		<device name="dreambox ir keyboard">
			<key id="KEY_PREVIOUSSONG" mapto="jumpPreviousMark" flags="m"/>
			<key id="KEY_TAB" mapto="toggleMark" flags="m"/>
			<key id="KEY_NEXTSONG" mapto="jumpNextMark" flags="m"/>
		</device>
	</map>
Für was steht InfobarCueSheetActions? Und was hat es mit den Device Namen auf sich? Wenn ich keinen Device Namen angebe ist es allgemein gültig? Etwa:
Code:
<map context="InfobarCueSheetActions">			<key id="KEY_PREVIOUS" mapto="jumpPreviousMark" flags="m"/>
			<key id="KEY_0" mapto="toggleMark" flags="m"/>
			<key id="KEY_NEXT" mapto="jumpNextMark" flags="m"/>

	</map>