Edited 2020-08-12
I edited this post to inform that HappyOtterScripts (https://tools4vegas.com/home/) has just released the tool KwikZoom that performs quickly Zoom In and Zoom Out, similar and as easy to use as the Camtasia zoom discussed in the original post. Thanks to @wwaag for developing this convenient, time-saving tool!
I've attached a demonstration of KwikZoom in action:
Ps.: The AHK script available for download ahead in this thread is still a workaround to deal with Zoom In and Zoom Out in Vegas.
----------------------------------------------------------------
Original post:
Hi,
I'm used to Camtasia very practical zoom functionality, and was trying to find out in Vegas the easier method to zoom into areas of the screen, then zoom out from the Event Pan/Crop interface.
This is aimed at software tutorials production.
I record my screen illustrating the steps below, that were the easiest way to perform the task that I found out.
I used a script structure to detail the steps, just as a reference.
The syntax doesn't exist, and here is my question:
=> Is this script possible to be implemented?
class EntryPoint { public void FromVegas(Vegas vegas) { Step 1 (Restore output - Event Pan/Crop) Step 2 (Move cursor right by 0.5sec): vegas.Transport.CursorPosition = vegas.Transport.CursorPosition + Timecode.FromSeconds(0.5); Step 3 (Create keyframe) Step 4 (Go to Last keyframe) Step 5 (Create keyframe) Step 6 (Move cursor left by 0.5sec): vegas.Transport.CursorPosition = vegas.Transport.CursorPosition - Timecode.FromSeconds(0.5); Step 7 (Create keyframe) } }
Thank you!
Carlos