That can be done. My tutorials show how to access that information. It really is very easy to just right-click and choose "Channels", though. What, exactly, are you looking for?
@jetdv@rraud I know the right clicking and scrolling method..... But my specific request is due to how i have my personal workflow in Vegas set up when doing face paced edits when working simultaneously on TV & Radio Spots, Audio Edits + Mastering etc.... Scripting is just so much more streamlined to work with, with a simple click that allows me to complete my edits a tad bit faster for waiting clients..... Man, tried creating one myself earlier but no darn luck.lol.....Was even trying to create one where when you press the script, it easily toggles between "Combine, Both, Right Only, Left Only and Swap", that was even a greater failure lol.
using System;
using System.Collections.Generic;
using System.Collections;
using System.IO;
using System.Text;
using System.Windows.Forms;
using System.Globalization;
using System.Drawing;
using System.Runtime;
using System.Xml;
using ScriptPortal.Vegas;
namespace Test_Script
{
public class Class1
{
public Vegas myVegas;
public void Main(Vegas vegas)
{
Vegas myVegas = vegas;
foreach(Track myTrack in myVegas.Project.Tracks)
{
foreach(TrackEvent evnt in myTrack.Events)
{
if (evnt.Selected && evnt.IsAudio())
{
AudioEvent aevnt = (AudioEvent)evnt;
aevnt.Channels = ChannelRemapping.DisableLeft;
}
}
}
}
}
}
public class EntryPoint
{
public void FromVegas(Vegas vegas)
//public void FromVegas(Vegas vegas, String scriptFile, XmlDocument scriptSettings, ScriptArgs args)
{
Test_Script.Class1 test = new Test_Script.Class1();
test.Main(vegas);
}
}
Here's the various remapping options:
And see here to see how I toggled between the four different rotation options. You can do something similar to toggle through the remapping options.