diff --git a/TaskAndTimeTimJahn.txt b/TaskAndTimeTimJahn.txt
index 0923f055f93986b2cc96f797e9481cc8d518a114..c15ce693a6c2c35a88acc5938d23cd9efd249375 100644
--- a/TaskAndTimeTimJahn.txt
+++ b/TaskAndTimeTimJahn.txt
@@ -59,7 +59,7 @@ hours:
 27.01.25  2h -
 06.03.25  8h -
 07.03.25  8h -
-09.03.25  4h
+09.03.25  4h -
 //------------------------------------------------------------------------------------------------------
 
 see https://github.com/eclipse-theia/theia/blob/master/doc/Developing.md#prerequisite_native_keymap
@@ -280,3 +280,19 @@ Here’s what you can do:
    make sure that the foreground elements are being added to a 
    layer or group that has the highest stacking context. 
    This ensures they appear on top of other graphical elements.
+
+
+//==================================================================
+
+function simulateAltC() {
+let event = new KeyboardEvent("keydown", {
+key: "c",
+code: "KeyC",
+altKey: true,
+bubbles: true
+});
+document.dispatchEvent(event);
+}
+
+// Simulation starten
+simulateAltC();
\ No newline at end of file