Select all segments in a document; copy source to target in all segments; clear all segments

While we wait for this functionality to be added to Studio, here are 3 short macros to help with segment selection.

;======================================================================

;Select up to 500 segments in a document. For more segments, simply change the number in the appropriate line.

;Press Alt+Down to activate

;=======================================================================

!DOWN::  
Send ^{Home}
Sleep 200
Send !+{Down 500}
Return

 

 

;======================================================================

;Select up to 500 segments in a document, then clear them all. For more segments, simply change the number in the appropriate line.

;Press Alt+2 to activate

;=======================================================================

!2::
Send ^{Home}
Sleep 200
Send !+{Down 500}
Sleep 200
Send !{Del}
Return

 

 

;======================================================================

;Select up to 500 segments in a document, then copy source to target. For more segments, simply change the number in the appropriate line.

;Press Alt+3 to activate

;=======================================================================

!3:: ;Select up to 500 segments at once, then copy source to target
Send ^{Home}
Send !+{Down 500}
Sleep 200
Send ^{Insert}
Return

Parents Reply Children
No Data