JorgeP Posted June 26, 2013 Share Posted June 26, 2013 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); } Quote Link to comment Share on other sites More sharing options...
Dan Korn Posted June 26, 2013 Share Posted June 26, 2013 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")) Quote Link to comment Share on other sites More sharing options...
JorgeP Posted June 26, 2013 Author Share Posted June 26, 2013 Thank you!! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.