Search found 107 matches

by Zoranj
Wed Feb 26, 2020 1:11 am
Forum: PDF Creation
Topic: Conversion to PDF
Replies: 7
Views: 10069

Re: Conversion to PDF

Maybe if you post screenshot and give bit more info?
by Zoranj
Tue Feb 25, 2020 2:20 pm
Forum: Flows
Topic: Delete data automatically after a certain time
Replies: 7
Views: 6974

Re: Delete data automatically after a certain time

You should be able to use any one of many free utilities to delete files.
Also command line is an option.
Particular application I am using is Deletefiles
https://github.com/RickStrahl/DeleteFiles
by Zoranj
Sat Feb 22, 2020 7:13 pm
Forum: Flows
Topic: Delete data automatically after a certain time
Replies: 7
Views: 6974

Re: Delete data automatically after a certain time

There are various ways to achieve this.
One example that I use would be to use third party app that will delete files in folder that are older than xx time.
App will not add unique name since it executes on timer or cron job.
by Zoranj
Wed Feb 19, 2020 3:42 pm
Forum: Flows
Topic: Delete data automatically after a certain time
Replies: 7
Views: 6974

Re: Delete data automatically after a certain time

Do not use Auto-Managed folders, instead pick a "hard" location on network or local drive, unique name will be stripped when saved there.
by Zoranj
Thu Feb 13, 2020 4:45 pm
Forum: Action Lists
Topic: Removing Traps
Replies: 4
Views: 6188

Re: Removing Traps

If you are using Assemble PDF sequence to send PDF's, just check box next to "Remove Traps" under "Combine Documents" menu.
See screenshot and circled in red.
Screen Shot 2020-02-13 at 10.42.48 AM.png
Screen Shot 2020-02-13 at 10.42.48 AM.png (95.65 KiB) Viewed 5889 times
by Zoranj
Sat Dec 21, 2019 4:42 pm
Forum: Action Lists
Topic: Removing Traps
Replies: 4
Views: 6188

Re: Removing Traps

Your workflow should have an option to remove traps when exporting PDF.
What workflow are you using?
by Zoranj
Fri Nov 22, 2019 10:32 pm
Forum: Flows
Topic: Ungroup timeout
Replies: 12
Views: 12871

Re: Ungroup timeout

Thanks Arthur, but it appears PDF Merge is Mac only, unfortunately our Switch is on Windows server.
by Zoranj
Fri Nov 22, 2019 7:13 pm
Forum: Flows
Topic: Ungroup timeout
Replies: 12
Views: 12871

Re: Ungroup timeout

From my experience, Split and Merge PDF are the slowest configurators in Switch. If you are dealing with large files in thousands of pages, you will be loosing your hair pretty soon, like me :) For splitting PDF's my solution was to use Quite Hot imposing instead, it is at least 10 times faster in s...
by Zoranj
Tue Nov 12, 2019 1:18 am
Forum: Flows
Topic: [SOLVED] Unzipping files zipped on a Mac
Replies: 4
Views: 4730

Re: [SOLVED] Unzipping files zipped on a Mac

To work around it, setup Switch on Mac instead of Windows.
by Zoranj
Fri Nov 08, 2019 2:34 pm
Forum: Flows
Topic: [SOLVED] Unzipping files zipped on a Mac
Replies: 4
Views: 4730

Re: Unzipping files zipped on a Mac

Billy is on the money.
Old Postscript fonts will be corrupted as they are not cross platform.
I've gotten around this limitation by buying TransType (font converter) and converting all our old PostScript fonts to Open Type.
All fonts we have are now cross platform and no issues.
by Zoranj
Thu Oct 10, 2019 10:37 pm
Forum: Flows
Topic: Send files one at a time from a folder
Replies: 2
Views: 3521

Re: Send files one at a time from a folder

Use Hold jobs configurator but instead of setting it up, setup outgoing connection.
In the bottom of the properties you will find "Space jobs apart" option.
Set it to 10 seconds, or whatever and off you go.
Screen Shot 2019-10-10 at 4.36.05 PM.png
Screen Shot 2019-10-10 at 4.36.05 PM.png (21.03 KiB) Viewed 3514 times
by Zoranj
Sat Oct 05, 2019 1:20 am
Forum: Flows
Topic: Pause processing until another flow completes
Replies: 1
Views: 2871

Re: Pause processing until another flow completes

Perhaps you could "store" zip file in local folder and when your csv processing is done, inject zip file into flow from folder.
by Zoranj
Fri Oct 04, 2019 1:57 pm
Forum: LEGACY scripting
Topic: Need help breaking text file with multi lines into individual one line text files
Replies: 4
Views: 6242

Re: Need help breaking text file with multi lines into individual one line text files

This works like a charm.
Much appreciated Mathew.

Saved me some significant time.
Let me know if I can repay somehow.
by Zoranj
Fri Oct 04, 2019 1:37 am
Forum: LEGACY scripting
Topic: Need help breaking text file with multi lines into individual one line text files
Replies: 4
Views: 6242

Re: Need help breaking text file with multi lines into individual one line text files

Awesome help Mathew, thank you very much.

Not to be too greedy, but can you edit add function to remove blank lines as well? :oops:
by Zoranj
Thu Oct 03, 2019 9:57 pm
Forum: LEGACY scripting
Topic: Need help breaking text file with multi lines into individual one line text files
Replies: 4
Views: 6242

Need help breaking text file with multi lines into individual one line text files

I hope I am explaining it right. I have a single text file with 50 lines of text line1 line2 line3 ... I want to get 50 text files with one line of text: line1.txt line2.txt line3.txt ... Gabriel had Javascript that does similar thing but it logs individual lines only, does not output them. Is it po...