Search found 3 matches

by gbv34
Sun Apr 25, 2021 8:42 am
Forum: Flare's General Discussion
Topic: Index entry
Replies: 1
Views: 722

Index entry

Hello, I created an auto-generated index in my project. I didn't want to keep the alphabetical letters as IndexHeading but to replace them with the first level terms of the index. For that, I modified the css to hide the IndexHeading and applied a change to the p.index1. If it works fine, I have a s...
by gbv34
Sun Apr 25, 2021 8:28 am
Forum: Flare's General Discussion
Topic: Post-build event command
Replies: 4
Views: 2181

Re: Post-build event command

Hi David, Thanks for your feedback. Actually, the example I provided was intentionally simple and a way to understand the principle of post-event builds. I agree, it is easier to implement it in the "Publish destination", however my point is more to understand how it works. If I understood...
by gbv34
Mon Apr 19, 2021 2:31 am
Forum: Flare's General Discussion
Topic: Post-build event command
Replies: 4
Views: 2181

Post-build event command

Hello, I'm trying to implement post-build event command for a PDF target. My goal is simple. I just want to copy the PDF published from the Output directory to another directory. i used this command for this: for %I in "$(OutputDirectory)\*.pdf" do copy %I in (C:\Users\User\Contacts\Deskto...