Index: applications/editors/josm/plugins/videomapping/test/videotest.java
===================================================================
--- applications/editors/josm/plugins/videomapping/test/videotest.java	(revision 21586)
+++ applications/editors/josm/plugins/videomapping/test/videotest.java	(revision 21631)
@@ -2,6 +2,9 @@
 import java.awt.Canvas;
 import java.awt.Dimension;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
 import java.io.File;
 
+import javax.swing.JButton;
 import javax.swing.JFileChooser;
 import javax.swing.JFrame;
@@ -22,8 +25,15 @@
 	 */
 	public static void main(String[] args) {
-		SimpleVideoPlayer sVP = new SimpleVideoPlayer();
-		sVP.setFile(new File("C:\\TEMP\\test.mpg"));		
-		sVP.play();
-		sVP.jump(605000);
+		final SimpleVideoPlayer sVP = new SimpleVideoPlayer();
+		sVP.setFile(new File("C:\\TEMP\\test.mpg"));
+		sVP.play(); //FIXME We have a bug so we get out of sync if we jump before the video is up (and this we CAN'T DETECT!!!)
+		JButton b = new JButton("jump");
+		b.addActionListener(new ActionListener() {
+			
+			public void actionPerformed(ActionEvent e) {
+				sVP.jump(610000);				
+			}
+		});
+		sVP.add(b);
 
 	}
