event.Copy problem MikeGW wrote on 12/29/2005, 2:16 AM I am getting an error with the following line Vegas.Project.Tracks(6).Events(0).Copy(8,Timecode.FromString(0)); Can anyone tell me what I am doing wrong? I just want to copy the event from one track and put it into another track. Thanks. Back to post
Comments jetdv wrote on 12/29/2005, 6:25 AM Where you have 8 should be a TRACK. i.e. something like: var destTrack : Track = Vegas.Project.Tracks(8); Vegas.Project.Tracks(6).Events(0).Copy(destTrack,Timecode.FromString(0)); MikeGW wrote on 12/29/2005, 8:14 AM Thanks!!! That did it. 1