voice_control / mouse_grid_showing.talon
1# Mouse grid targets2tag: labels.grid_active3-45# Interact with grid6choose <labels.target>:7 # help: Make the grid around the region with the mouse grid label8 labels.select(labels.target)9<labels.target>:10 # help: Make the grid around the region with the mouse grid label11 labels.select(labels.target)12double click [at] <labels.target>:13 # help: Double click at the mouse grid label14 labels.mouse_move(labels.target)15 mouse_click()16 mouse_click()17 labels.hide()18<modifiers> double click [at] <labels.target>:19 # help: Double click at the mouse grid label while pressing the modifier keys20 key("{modifiers}:down")21 labels.mouse_move(labels.target)22 mouse_click()23 mouse_click()24 labels.hide()25 key("{modifiers}:up")26drag [from] <labels.target> to <labels.target>:27 # help: Drag the mouse from the first label to the second label28 labels.mouse_move(labels.target_1)29 sleep(200ms)30 mouse_drag()31 sleep(200ms)32 labels.mouse_move(labels.target_2)33 sleep(200ms)34 mouse_release()35 labels.hide()36drop [at] <labels.target> | release mouse [at] <labels.target> | release hold [at] <labels.target> | end drag [at] <labels.target>:37 # help: Move the mouse to the mouse grid label and stop holding the left mouse button down38 labels.mouse_move(labels.target)39 sleep(200ms)40 mouse_release()41 labels.hide()42long press [at] <labels.target>:43 # help: Click the mouse grid label and hold the left mouse button down for one second before releasing it44 labels.mouse_move(labels.target)45 mouse_drag()46 sleep(1)47 mouse_release()48 labels.hide()49move mouse to <labels.target> | move cursor to <labels.target>:50 # help: Move the mouse to the mouse grid label51 labels.mouse_move(labels.target)52 labels.hide()53click and hold [at] <labels.target> | press and hold <labels.target>:54 # help: Click at the mouse grid label and hold the left mouse button down55 labels.mouse_move(labels.target)56 mouse_drag()57 labels.hide()58<modifiers> click and hold [at] <labels.target>:59 # help: Click at the mouse grid label and hold the left mouse button down while pressing the modifier keys60 key("{modifiers}:down")61 labels.mouse_move(labels.target)62 mouse_drag()63 labels.hide()64 key("{modifiers}:up")65show menu for <labels.target>:66 # help: Right click at the mouse grid label67 labels.mouse_move(labels.target)68 mouse_click(1)69 labels.hide()70click [at] <labels.target> | press <labels.target> | tap <labels.target>:71 # help: Click at the mouse grid label72 labels.mouse_move(labels.target)73 mouse_click()74 labels.hide()75<modifiers> click [at] <labels.target>:76 # help: Click at the mouse grid label while pressing the modifier keys77 key("{modifiers}:down")78 labels.mouse_move(labels.target)79 mouse_click()80 labels.hide()81 key("{modifiers}:up")82start drag [at] <labels.target>:83 # help: Move the mouse to the mouse grid label and hold the left mouse button down without closing the grid84 labels.mouse_move(labels.target)85 sleep(200ms)86 mouse_drag()87triple click [at] <labels.target>:88 # help: Triple click at the mouse grid label89 labels.mouse_move(labels.target)90 mouse_click()91 mouse_click()92 mouse_click()93 labels.hide()94<modifiers> triple click [at] <labels.target>:95 # help: Triple click at the mouse grid label while pressing the modifier keys96 key("{modifiers}:down")97 labels.mouse_move(labels.target)98 mouse_click()99 mouse_click()100 mouse_click()101 labels.hide()102 key("{modifiers}:up")