Hi Steve, This will open Photoshop in a script
==============
using System;using System.Diagnostics;using Sony.Vegas;public class EntryPoint{ public void FromVegas(Vegas vegas) { TrackEvent evnt =
FindFirstSelectedEvent(vegas.Project); if (evnt != null) { Process.Start(@”C:\Program Files (x86)\Adobe\Adobe Photoshop
CS2\photoshop.exe”,”\””+evnt.ActiveTake.MediaPath+”\””); } } public TrackEvent FindFirstSelectedEvent(Project project) { foreach
(Track testedTrack in project.Tracks) foreach (TrackEvent testedEvent in testedTrack.Events) if (testedEvent.Selected)
====
Adjust the PATH to where your Photoshop is
Copy and paste to Notepad and save as something you can remember like Open Photoshiop.CS ( I guess you know that anyway )
Then drop it into the Script folder
It does open Photoshop in 10e 64bit for Photoshop 32bit on my system and any changes in Photoshop you save are reflected in the Clip you selected on the time line
Hope this is what you are looking for
JB