@jetdv I'm getting it all going rather well now and I am nearly ready with my first script, just some finalizing things that I am not sure of on how to do.
1) Scale & Pan (10s)
I have a 1024x1024 png file on my timeline of a 1920x1080 videoTrack. I want to upscale my image to 1920x1920 so that it fits the screen and then pan it from bottom to top. I found 2 ways: 1) Pan & Crop on the VideoEvent and 2) MotionKeyFrames on the track. With Pan & Crop the scaling is really weird and I cannot figure out how to get the wanted result (it keeps cropping in the original square as well). With Motion Track I am not manipulating my 1024x1024 image, but my 1920x1080 video. So I am also scaling the black sides of the 1920 side to ??? So what would be the right approach for this?
2) Add Blur (10s)
The panning on 1) should also slowly unblur the image. Should I somehow add an effect on the VideoEvent? Does this influence the choice above? I havent found a good example for a blureffect.
3) Starting a script from a script
Is it possible to start a script from a script? I'm thinking of making a listener script that awaits (through a socket) a command to start a script. This way I can have Vegas open and listening and control it remotely. The alternative is to start and stop vegas. But starting is not really stable and pops up some errors now and then. Also I haven't found a way to close it through scripting. Hence my listener idea.....