Search found 6 matches

by jterrano
Thu Jan 12, 2023 6:36 pm
Forum: Node.js scripting
Topic: Switch Script 2024
Replies: 1
Views: 4485

Switch Script 2024

It has been stated that come 2024 - Switch Scripting will only support nodejs scripting.

With that said - would there be any methods available of executing excel macros with nodejs?
by jterrano
Fri May 20, 2022 12:20 am
Forum: PitStop Pro
Topic: Adding multi-line text to PDF with VariableSets
Replies: 3
Views: 3020

Adding multi-line text to PDF with VariableSets

I am attempting to apply multi-line text to an action list through a variable set. The multi-line text shows : in x-path : <Column Name="DetailDescription" DataType="STRING">LUX_CP 3030347 Standard Hours Sign 18"x30" .020 Stryene Dead White 4/0 4-Holes Drilled in Corner...
by jterrano
Wed Apr 20, 2022 6:17 am
Forum: Flows
Topic: Switch.Counter ID
Replies: 1
Views: 1296

Switch.Counter ID

I am attempting to assign a counter to each PDF contained within a folder labeled with a job number. (e.g. jobfolder: 1111111 contains 5 files : abc.pdf | def.pdf | ghi.pdf | jkl.pdf | mno.pdf abc.pdf = 01 def.pdf = 02 ghi.pdf = 03 jkl.pdf = 04 mno.pdf = 05 My flow includes in the following order : ...
by jterrano
Wed Dec 01, 2021 11:05 pm
Forum: Flows
Topic: Saxonica Saxon
Replies: 4
Views: 2928

Re: Saxonica Saxon

So I saw what you meant about the tabs and we successfully processed this xml through saxonica saxon without using contains() but only if we MANUALLY remove the tabs... Do you happen to know of any saxonica saxon PE scripts that can be used to remove the tabs from the XML? prodTypeCode - tabs.png We...
by jterrano
Tue Nov 30, 2021 7:56 pm
Forum: Flows
Topic: Saxonica Saxon
Replies: 4
Views: 2928

Re: Saxonica Saxon

<?xml version="1.0" ?> <orders> <order> <items> <item> <prodTypeCode> MOD </prodTypeCode> </item> <item> <prodTypeCode> FFS </prodTypeCode> </item> <item> <prodTypeCode> MOD </prodTypeCode> </item> </items> </order> </orders> (ive removed all unnecessary nodes...
by jterrano
Tue Nov 30, 2021 7:52 pm
Forum: Flows
Topic: Saxonica Saxon
Replies: 4
Views: 2928

Saxonica Saxon

We are attempting to remove an parent element that contains a child element of prodTypeCode='FFS' When using Saxonica Saxon script, I have the script styled as followed : <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml&...