Jump to content

macfan55

Registered Users - Approved
  • Posts

    37
  • Joined

Everything posted by macfan55

  1. Did You go to Fusion Pro (program active) Server / Load all Fonts... ? And then restarting FusionPro and Acrobat Professional? Is that particular font showing up in the font list as You choose a font in the Text-composer field of the variable insertions? And as Dan Korn suggested - it could be a slightly different name as the one InDesign shows You.
  2. Thanks; This solution (lower-case filenames, even for FPImposer-files) also works for me as a workaround. I never expected something like this in 2018 software... In the meantime I am connected through the smb-protocol with this Helios-share and that works too for me. Not sure however if I can expect other problems now. Anyone having experience with this protocol on a Mac with FusionPro? Greetings from the Netherlands:)
  3. Hi Dan; Thanks for your reply. I work with OSX 10.12.6 FusionPro VDP Creator 10.0.16 and Acrobat Pro DC 2018.0009.20044 Our workflow server was an xserve (Mac OSX 10.4 Tiger - worked for 9 years without any problem) but has recently changed by IT-guys to another Unix server with Helios software on it. (Don't know which brand etc) I connect with this server through afp://192.168.76.110/Var_Print and in the Finder it states exactly the same info about the volume. Yesterday - I tried to connect to the same server through the smb protocol and then I noticed that my pdf-file was gone... But when I copied the same pdf file from my desktop to that particular folder I got the message that the file could not be copied there because the file was already there as an invisible file??? So I changed the name a bit and copied it again through the smb protocol. Then opened this file from the server again and voila - The composed file was o.k. But as soon as I changed the connection back to afp protocol I got the same error again on composing the job from the server file. So my guess is that FusionPro itself works under the hood with the smb protocol? Or can You figure out what the real problem could be? The guys from IT can't help me with this strange problem. Greetings from the Netherlands
  4. I have a problem with composing jobs since yesterday. The problem is that as soon as I compose a job (existing or new) I get an error saying: Graphic file ./correctiesticker maatschoenfolder.pdf missing The result is a pdf without the static background as if FusionPro can't find the very file itself from where I compose the job...??? This happend since yesterday and I can't figure out what has changes since then. In the job itself no graphic file is used; even no rules etc. just a simple job. It does however not happen if I copy the pdf-file to the desktop of my Mac computer and the composing the job instead of opening it from our workflow server...
  5. Thanks for the answer; worked flawless! Greetings from the Netherlands
  6. How do I compose a job that only contains every 250-th record? I used the Sequential Numbering rule with the start number (76751) and there is no datafile involved. So for the total of 10.000 records I need only 40 records with 249 records skipped each time. On the same page is also a number printed from 1 to 40; but that is already working with a javascript-rule. Thanks for your help! Greetings from the Netherlands
  7. Thanks for your answer; I never saw the curly braces but yes, it was probably inserted while typing in Texteditor from Apple... They think to much for their users... Now I use TextWrangler; After adding the </fieldlist> it worked without any problem. Thanks again! Greetings from the Netherlands!
  8. Hi everyone; I am trying to build my first xml rule to be used in FusionPro as a rule for every new job to choose. But I got stuck on the following error code: Fatal error: Expected an attribute value; line 2, column 21 I hereby past te xml-code in this thread: <?xml version="1.0" encoding="UTF-16" ?> <template_rule name=“Postcode spatie” version="1.0" type="text" taggedtext="false"> <Comment language="en-US">Deze rule plaatst een spate in de postcode waar die ontbreekt.</Comment> <Description language="en-US">Please select the appropriate values.</Description> <Description language="de">Wählen Sie die entsprechenden Werte.</Description> <Description language="fr">Veuillez sélectionner les valeurs appropriées.</Description> <Description language="es">Seleccione los valores que correspondan.</Description> <Description language="it">Selezionare i valori appropriati.</Description> <Description language="zh-CN">请选择相应的值。</Description> <Description language="zh-TW">請選取適當的值。</Description> <Description language="ja">該当する値を選択してください。</Description> <fieldlist> <field type="FIELDLIST" required="true"> <fieldname>Var1</fieldname> <prompt language="en-US">Kies het Postcode veld.</prompt> <prompt language="de">Wählen Sie ein Feld für die Konvertierung in die richtige Buchstabengröße aus.</prompt> <prompt language="fr">Choisissez un champ pour la conversion dans la casse appropriée.</prompt> <prompt language="es">Elija un campo para convertir al estilo de mayúsculas y minúsculas deseado.</prompt> <prompt language="it">Scegliere un campo per la conversione di maiuscole/minuscole.</prompt> <prompt language="zh-CN">选择用于转换为适当大小写的字段。</prompt> <prompt language="zh-TW">選擇要轉換成適當大小寫的欄位。</prompt> <prompt language="ja">該当する大文字/小文字に変換するフィールドを選択します。</prompt> <value></value> </field> <code> if (Len(Trim(Field(Var1))) == 6) { x = Left(Field(Var1), 4); y = Right(Field(Var1), 2); return x + " " + y; } else if (Len(Trim(Field(Var1))) == 2) { return FormatNumber("00000", Field(Var1)); } else return Field(Var1); </code> </template_rule>
  9. Thanks for your answer; The problem I now have is that the word I want to replace is mostly "Location" and sometimes "location" so I was looking for a way to use a wildcard for the first letter like "*ocation" but that does not work. Maybe You can show me the right way to do that as a part of the replace substring code. Thanks in advance!
  10. Thanks! Works great. 1 question about the search and replace field; Can I use a "wildcard" in the texttoreplace field as a part of it?
  11. Hi out there; my first question is this: How can I make a rule that removes a specific word from a text string and make a new variable out of the remaining text. Help is appreciated here!
×
×
  • Create New...