Psd Layer Splitter Script

Comments

ansonmccosh wrote on 2/5/2025, 1:43 PM

@zzzzzz9125 Thanks, i made more teste and work very well!
It's a good option to working fast in 3Dcomps, in the most cases, i use the rate until 100 and pffet in until, i'm not overpass this values, and works great.

Only left some adjustments that will need depending of the result wich I want to reach.
So thanks for more that efforts, You Rock dude!
This will save MUCH time in my next projects

does this script still work? i tried it and i get an error

Intermediate Vegas User (VP22)

Windows 10 Version    10.0.19045 Build 19045

AMD Ryzen 7 5800X 8-Core Processor, 3801 Mhz, 8 Core(s), 16 Logical Processor(s)

32GB DDR4 3200 OLOy 

NVIDIA GeForce RTX 3070 12gb Driver  32.0.15.8157

B450M DS3H V2 Motherboard

Boris FX Continuum Complete 2025.5.1, Newblue FX Total FX360, Ignite Pro V4

 

jetdv wrote on 2/5/2025, 2:01 PM

@ansonmccosh, it ought to still work. I've never tried it.

You might look at this tutorial too:

ansonmccosh wrote on 2/5/2025, 3:52 PM

@ansonmccosh, it ought to still work. I've never tried it.

You might look at this tutorial too:

Thanks il check it out...but any ideas on what that error means?

Intermediate Vegas User (VP22)

Windows 10 Version    10.0.19045 Build 19045

AMD Ryzen 7 5800X 8-Core Processor, 3801 Mhz, 8 Core(s), 16 Logical Processor(s)

32GB DDR4 3200 OLOy 

NVIDIA GeForce RTX 3070 12gb Driver  32.0.15.8157

B450M DS3H V2 Motherboard

Boris FX Continuum Complete 2025.5.1, Newblue FX Total FX360, Ignite Pro V4

 

jetdv wrote on 2/6/2025, 9:01 AM

@ansonmccosh not without testing the script using your VEG file (some media would probably need be required too) in order to test out where/how it is crashing.

ansonmccosh wrote on 2/6/2025, 9:26 AM

@ansonmccosh not without testing the script using your VEG file (some media would probably need be required too) in order to test out where/how it is crashing.

so it works on my v19 after defaulting all settings. so it looks like i have a setting on v22 that is creating a conflict.

Intermediate Vegas User (VP22)

Windows 10 Version    10.0.19045 Build 19045

AMD Ryzen 7 5800X 8-Core Processor, 3801 Mhz, 8 Core(s), 16 Logical Processor(s)

32GB DDR4 3200 OLOy 

NVIDIA GeForce RTX 3070 12gb Driver  32.0.15.8157

B450M DS3H V2 Motherboard

Boris FX Continuum Complete 2025.5.1, Newblue FX Total FX360, Ignite Pro V4

 

zzzzzz9125 wrote on 2/6/2025, 9:34 AM

does this script still work? i tried it and i get an error

@ansonmccosh I can't reproduce your problem in my VEGAS Pro 22 build 239.

However, I can see the error lines in your screenshot. They should be:

if (track.IsCompositingParent)
{
    track.SetParentCompositeMode(trackCM, false);
}
newTrack.SetCompositeMode(COMPOSITEMODE, false);

Perhaps in some ways you can't use VideoTrack.SetCompositeMode() and VideoTrack.SetParentCompositeMode().

You can try replacing all similar lines in the script with something like the following:

if (track.IsCompositingParent)
{
    track.ParentCompositeMode = trackCM;
}
newTrack.CompositeMode = COMPOSITEMODE;

If you have a problem with a particular project, you can send it to me and discuss where the problem is.

Using VEGAS Pro 22 build 250 & VEGAS Pro 21 build 208.

Information about my PC:
Brand Name: HP VICTUS Laptop
System: Windows 11.0 (64-bit) 10.00.22631
CPU: 12th Gen Intel(R) Core(TM) i7-12700H
GPU: NVIDIA GeForce RTX 3050 Laptop GPU
GPU Driver: NVIDIA Studio Driver 560.70

ansonmccosh wrote on 2/6/2025, 4:20 PM

does this script still work? i tried it and i get an error

@ansonmccosh I can't reproduce your problem in my VEGAS Pro 22 build 239.

However, I can see the error lines in your screenshot. They should be:

if (track.IsCompositingParent)
{
    track.SetParentCompositeMode(trackCM, false);
}
newTrack.SetCompositeMode(COMPOSITEMODE, false);

Perhaps in some ways you can't use VideoTrack.SetCompositeMode() and VideoTrack.SetParentCompositeMode().

You can try replacing all similar lines in the script with something like the following:

if (track.IsCompositingParent)
{
    track.ParentCompositeMode = trackCM;
}
newTrack.CompositeMode = COMPOSITEMODE;

If you have a problem with a particular project, you can send it to me and discuss where the problem is.

Thanks for the response i did try it out and got the same error but i fixed it by simply restoring vegas 22 to default setting and i could use the original script..all good now...Thanks guys

Intermediate Vegas User (VP22)

Windows 10 Version    10.0.19045 Build 19045

AMD Ryzen 7 5800X 8-Core Processor, 3801 Mhz, 8 Core(s), 16 Logical Processor(s)

32GB DDR4 3200 OLOy 

NVIDIA GeForce RTX 3070 12gb Driver  32.0.15.8157

B450M DS3H V2 Motherboard

Boris FX Continuum Complete 2025.5.1, Newblue FX Total FX360, Ignite Pro V4

 

Steve_Rhoden wrote on 2/7/2025, 1:42 AM

Still, splitting complex psd files on the vegas timeline does not comes out looking anywhere near how they originally look in photoshop...... Not a fault with the script, its just the way it is.

ansonmccosh wrote on 2/13/2025, 2:55 PM

does this script still work? i tried it and i get an error

@ansonmccosh I can't reproduce your problem in my VEGAS Pro 22 build 239.

However, I can see the error lines in your screenshot. They should be:

if (track.IsCompositingParent)
{
    track.SetParentCompositeMode(trackCM, false);
}
newTrack.SetCompositeMode(COMPOSITEMODE, false);

Perhaps in some ways you can't use VideoTrack.SetCompositeMode() and VideoTrack.SetParentCompositeMode().

You can try replacing all similar lines in the script with something like the following:

if (track.IsCompositingParent)
{
    track.ParentCompositeMode = trackCM;
}
newTrack.CompositeMode = COMPOSITEMODE;

If you have a problem with a particular project, you can send it to me and discuss where the problem is.

it's very weird and im not too sure what the issue is but after a while the script stopped working again but resetting vegas to default settings fixes it. its basically a cycle.

so essentially the script works fine > Fails randomly > stops working after repeating attempts > reset Vegas to default setting > starts working again. i'm starting to think it might just be a Vegas issue perhaps?

Intermediate Vegas User (VP22)

Windows 10 Version    10.0.19045 Build 19045

AMD Ryzen 7 5800X 8-Core Processor, 3801 Mhz, 8 Core(s), 16 Logical Processor(s)

32GB DDR4 3200 OLOy 

NVIDIA GeForce RTX 3070 12gb Driver  32.0.15.8157

B450M DS3H V2 Motherboard

Boris FX Continuum Complete 2025.5.1, Newblue FX Total FX360, Ignite Pro V4