Comments

jetdv wrote on 10/15/2018, 10:01 AM

Here's what Vegas Pro 16 reports:

 

VEGAS Flash - 00000000-0000-0000-0000-000000000000 UID: {Svfx:com.sonycreativesoftware:flash}  isOFX: True - Soft Flash - 3

VEGAS Dissolve - 00000000-0000-0000-0000-000000000000 UID: {Svfx:com.sonycreativesoftware:dissolve}  isOFX: True - Fade Through White - 19

 

Certainly not much help. And I didn't see the numbers listed in your image in the list at all.

 

 

using System;
using System.IO;
using System.Text;
using System.Drawing;
using System.Reflection;
using System.Diagnostics;
using System.Collections;
using System.Windows.Forms;
using System.ComponentModel;
using System.Runtime.InteropServices;
using Microsoft.Win32;
//using Sony.Vegas;
using ScriptPortal.Vegas;

public class EntryPoint
{
    Vegas myVegas;
    
    public void FromVegas(Vegas vegas)
    {
        myVegas = vegas;    FileStream inis = new FileStream("C:\\EffectsGUID.txt", FileMode.OpenOrCreate);  //Change to a good path to use
    StreamWriter iniw = new StreamWriter(inis);

//    MessageBox.Show("Checking Transitions");
    foreach (PlugInNode fx in myVegas.Transitions)
    {
        string s = fx.Name + " - " + fx.ClassID + " UID: " + fx.UniqueID + "  isOFX: " + fx.IsOFX;
        string t = "";
        int cnt2 = 0;
        foreach (EffectPreset mypreset in fx.Presets)
        {
            try
            {
                cnt2++;
                t = s + " - ";
                t += mypreset.Name + " - " + cnt2;
                iniw.WriteLine(t);
            }
            catch
            {
            }
        }
//        MessageBox.Show(s);
    }
    iniw.Close();
    inis.Close();
MessageBox.Show("Done");
    }
    
}

 

ram17 wrote on 10/18/2018, 7:52 AM

Thank you @jetdv, found the solution for this in other film maker group.

Former user wrote on 10/18/2018, 7:57 AM

Could you share the solution or the group you found it in. I am sure others would like this option as well.

 

ram17 wrote on 10/20/2018, 5:48 PM

Found it in creativecow.net, there are tons also of Vegas Pro gurus there.

These transitions can be changed in Internal preferences (Hold down the Shift key while clicking Tools-Preferences) Go to Internal tab and type "Standard Transition" in the search box (without quotes). Use the following GUIDs:

Standard Crossfade: {da6f7c17-cd66-11d1-9aa7-00a0c99b12c5}
Page Roll: {1683f168-fa47-4a82-98f4-be52a7f36a31}
Page Peel: {99418c6a-19fd-4c62-b692-24a0d315a878}
Page Loop: {f8e30798-ee56-49e1-82be-bd56e52e4007}
Portals: {5856937c-3603-4378-83cf-889423820f39}
Swap: {59caf1a5-1c2f-11d4-817e-00b0d0205515}
Split: {af080382-201f-11d4-817e-00b0d0205515}
Slide: {3f2b7302-211c-11d4-817e-00b0d0205515}
Spiral: {1d96d3e2-227c-11d4-817e-00b0d0205515}
Cross Effect: {e6206561-24cf-11d4-817e-00b0d0205515}
Venetian Blinds: {bf8ef6da-4ed5-4f9c-b549-919490f88b2f}
3D Cascade: {f4d82040-d40f-44ad-bb24-6aab29dc21f1}
3D Fly In/Out: {573fa5a1-f314-4539-9bb1-77fa92d4e7cd}
3D Shuffle: {e38b2b4a-ba99-4f67-b533-1997297850dd}
3D Blinds: {c843a552-aaeb-411c-8481-cf4c52a336e3}
Flash: {51a37fe8-9c77-430d-b32a-ab5db25739e9}
Dissolve: {a6c9ef42-1467-47be-8dff-0fc2fec07502}
Clock Wipe: {af87b431-d301-11d2-8305-00c04f68f454}
Iris: {b520e402-3dee-11d3-afd4-00c04f6b807e}
Push: {f611a8e3-d63c-11d2-8305-00c04f68f454}
Squeeze: {f611a8e7-d63c-11d2-8305-00c04f68f454}
Linear Wipe: {a09106d0-5344-11d2-95cc-00c04f8edc2d}
Barn Door: {b3b78e01-d147-11d2-8305-00c04f68f454}
Zoom: {f611a8e5-d63c-11d2-8305-00c04f68f454}