Jump to content

Output Files arbitrary chunks


Recommended Posts

Hi, I am using the latest version of VDP 9.0.3 on Mac 6.8

 

I found similar code to this through a search. I modified the if statement a little ... when I compose I get a single output file even though my fields are changing. Does anyone see what I have done wrong? ... I do not get any errors.

 

    
if(FieldChanged(Field("Sack")) || FieldChanged(Field("Pack"))) 
{
   	FusionPro.Composition.OpenNewOutputFile(Field("Sack") + "-" + Field("Pack") + "." + FusionPro.Composition.outputFormatExtension);
	 }

Link to comment
Share on other sites

Hi, I am using the latest version of VDP 9.0.3 on Mac 6.8

 

I found similar code to this through a search. I modified the if statement a little ... when I compose I get a single output file even though my fields are changing. Does anyone see what I have done wrong? ... I do not get any errors.

 

    
if(FieldChanged(Field("Sack")) || FieldChanged(Field("Pack"))) 
   {
       FusionPro.Composition.OpenNewOutputFile(Field("Sack") + "-" + Field("Pack") + "." + FusionPro.Composition.outputFormatExtension);
     }

The first line should be:

if (FieldChanged("Sack") || FieldChanged("Pack"))

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...