!752 static S musicID = "#1001093"; p { File mp3 = loadLibrary(musicID); // deh polish music int n = 1; while (true) { Player player = playMP3(mp3); long start = now(); while (!player.isComplete()) { long pos = player.getPosition(), ofs = pos-now()+start; print("Position: " + pos + ", ofs: " + ofs); sleep(500); } print("...aaaand again!! (n=" + ++n + ")"); } }