Skip to content

Commit 5008619

Browse files
committed
Added template for mode 3.
1 parent 450ab9e commit 5008619

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pyAutoClicker.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,13 @@ def mode_2(total_run_time, time_between_clicks, max_random_time_value, should_lo
142142
if should_lock:
143143
lock_computer()
144144

145+
# Define mouse event follower function (mode 3)
146+
def mode_3():
147+
# Click or press special key to start tracking (F6)
148+
# Populate a data structure with click event coordinates and time
149+
# Click or press special key to stop tracking (F7)
150+
# Iterate through key events at the same time intervals they occured
151+
145152
# Run PyAutoClicker
146153
if __name__ == '__main__':
147154
main()

0 commit comments

Comments
 (0)