Search found 279 matches

by sander
Wed May 29, 2024 9:11 am
Forum: Applications
Topic: Sender Name with Mail Send with OAuth2.0
Replies: 4
Views: 339

Re: Sender Name with Mail Send with OAuth2.0

We use Microsoft 365 Business and I can't modify my own name. It always displays the configured name, so I tested the app with a custom sender name and as expected: that didn't work haha.

Maybe such a restriction is also in place with Google mail?
by sander
Tue May 28, 2024 3:54 pm
Forum: Flows
Topic: hotfolder
Replies: 1
Views: 99

Re: hotfolder

It looks like your hot folder is disabled. When enabled it should show a white V. Right click the hot folder and enable it.

Check attached screenshots!
by sander
Fri May 24, 2024 3:42 pm
Forum: Switch
Topic: Dark Mode for Switch web portal
Replies: 3
Views: 196

Re: Dark Mode for Switch web portal

+1!

I'm totally for this idea! Might be nice to have the messages in dark mode as well.
by sander
Fri Apr 19, 2024 12:05 pm
Forum: Switch
Topic: Search for Flows in Designer
Replies: 5
Views: 838

Re: Search for Flows in Designer

I have been using Switch for so long now that I think I've become a bit set in my ways in some things. I just noticed this haha :mrgreen:

Both json pickups are found this way, enable names and values at the bottom:
Image
by sander
Fri Apr 19, 2024 10:54 am
Forum: Switch
Topic: Search for Flows in Designer
Replies: 5
Views: 838

Re: Search for Flows in Designer

I'm using the notepad++ method too, however not with the html files. Instead I search the flow xml's.

Not the most elegant way, but using this trick for some time now :)

Image
by sander
Wed Mar 06, 2024 3:04 pm
Forum: PitStop Pro
Topic: Acrobat Update 2023.008.20533
Replies: 16
Views: 5377

Re: Acrobat Update 2023.008.20533

Am I missing a check mark? I have disabled all automatic updates for Adobe, in the CC Application and Acrobat Pro itself! And Acrobat was updated this morning to version 2023.008.20555! I really double checked everything after the rollback to version 2023.008.204xx!!! I had the same problem a coupl...
by sander
Wed Oct 25, 2023 2:28 pm
Forum: Node.js scripting
Topic: Update Values in xml files
Replies: 5
Views: 11166

Re: Update Values in xml files

Great :)

Just to be sure you know this: Switch XSLT transform only supports XSLT 1.0.

If you go with the Saxonica Saxon configurator you can use 2.0 and 3.0 too:
https://www.enfocus.com/en/appstore/pro ... nica-saxon
by sander
Wed Oct 25, 2023 2:20 pm
Forum: Preflighting
Topic: Using Submit Metadata in Pitstop Varibale Set
Replies: 7
Views: 25666

Re: Using Submit Metadata in Pitstop Varibale Set

Do you open the variable set via Switch or directly via PitStop server?

PitStop server:
switch2.png
switch2.png (21.11 KiB) Viewed 25650 times
Via Switch:
switch3.png
switch3.png (19.33 KiB) Viewed 25650 times
Notice the difference? :)
by sander
Wed Oct 25, 2023 2:01 pm
Forum: Preflighting
Topic: Using Submit Metadata in Pitstop Varibale Set
Replies: 7
Views: 25666

Re: Using Submit Metadata in Pitstop Varibale Set

This is the way.

1+2. Select your Variable Set.
3. Go with Text with Variables.
4+5. Define your Switch variable over here.
switch1.png
switch1.png (133.4 KiB) Viewed 25658 times
by sander
Wed Oct 25, 2023 10:43 am
Forum: Node.js scripting
Topic: Update Values in xml files
Replies: 5
Views: 11166

Re: Update Values in xml files

I would go with Saxon and an xslt: Input: <order> <jobs> <job> <jobID>A</jobID> <fileName>*/abcdef.pdf</fileName> </job> <job> <jobID>B</jobID> <fileName>*/abcdef.pdf</fileName> </job> </jobs> </order> XSLT: <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="3.0...
by sander
Fri Oct 20, 2023 4:45 pm
Forum: Switch
Topic: HTTP request POST
Replies: 4
Views: 8775

Re: HTTP request POST

I intended to ask a similar question and found this article. Can anyone tell me how to use that json file after creating a json file?
This will do:
pic.png
pic.png (30.79 KiB) Viewed 8012 times
by sander
Thu Jul 07, 2022 6:14 pm
Forum: PitStop Pro
Topic: Trimbox value in "variable value".
Replies: 2
Views: 2875

Re: Trimbox value in "variable value".

Coincidentally, I was playing around with something like this last week. Create a variable set. Acrobat -> PitStop Pro -> Variable Sets -> Variable Set Preferences... https://i.imgur.com/c0ybESQ.png 1. Enable Variable Names 2. Click this blue thing to select the Variable Set https://i.imgur.com/V8it...
by sander
Fri Aug 21, 2020 10:40 am
Forum: LEGACY scripting
Topic: XML-path to string
Replies: 14
Views: 26066

Re: XML-path to string

Escape your " with \ like this

Code: Select all

var xml = job.getVariableAsString("[Metadata.Text:Path=\"/lieferung/\",Dataset=\"Xml\",Model=\"XML\"]");
by sander
Wed Aug 12, 2020 10:30 am
Forum: Flows
Topic: Best way to delete files in a folder older then X?
Replies: 12
Views: 17435

Re: Best way to delete files in a folder older then X?

You might be interested in my approach with Powershell which supports UNC paths. Fire up via execute command: $paths = @( ("d:\sftp\sander\nl"), ("d:\sftp\sander\de") ) foreach ($path in $paths) { $limit = (Get-Date).AddDays(-7) Get-ChildItem $path -Recurse | ? { -not $_.PSIsCon...
by sander
Fri Mar 06, 2020 10:42 am
Forum: LEGACY scripting
Topic: Get part of an API Response(JSON)
Replies: 6
Views: 10070

Re: Get part of an API Response(JSON)

Define your var outside your function or use return?