Community Forums Archive

Go Back

Subject:Scripting "Create CD Tracks From Regions"?
Posted by: Gatekeeper
Date:10/5/2009 9:26:54 AM

Hello,
In Sound Forge 10.0, I have written a jscript that adds markers and converts them to regions. I would like to add one more function to the script:
The menu sequence for this function is:
"Edit > Track List > Create CD Tracks From Regions".
Is there a way to execute this in jscript?

Subject:RE: Scripting "Create CD Tracks From Regions"?
Reply by: ForumAdmin
Date:10/6/2009 9:26:57 AM

Not directly on the IFileHost object, but you can do it through the menu for the active file:

app.DoMenu("TrackList.CreateCDTracksFromRegions", false);

J.

Message last edited on10/6/2009 9:27:17 AM byForumAdmin.

Go Back