My impression is this is not possible, but on the off-chance, the idea would be something along these lines...
thisSourceTrack = app.project.activeSource.audioTracks[0]; //"activeSource": a made-up property thisProgramTrack = app.project.activeSequence.audioTracks[5]; thisSourceTrack.patchTo(thisProgramTrack); // "patch-to": made=up function thisSourceTrack.active(true); // "active": made-up function
Goal: We're interested in developing custom keyboard shortcuts to patch source to sequence.
Current options are mostly mouse-driven.