#1
|
|||
|
|||
![]()
I have a Christmas card that allows the user to type in up to 5 names and they will appear on top of Christmas Stockings. I have set up rules for the text frames that change the location of the name based on how many names are entered. (see attached VariableFrames.jpg for a screen shot of the frames)
For example: If there are only two names entered, I don't want them appearing in the two left-most frames, that would look weird. I wanted them to appear in the two center text frames. Then I want a sock to appear behind the name based on the variable text frame, not a particular field, since the information in that field is not always in the same frame. In each variable text frame I placed a rule (the rule below is called RuleName1st): Code:
var1 = Field("1stName") var2 = Field("2ndName") var3 = Field("3rdName") var4 = Field("4thName") var5 = Field("5thName") if (var1 != "" && var2 != "" && var3 != "" && var4 != "" && var5 != "") { return Field("1stName"); } else return "" Then I made rules for each graphic frame: Code:
if (Rule("RuleName1st") != "") { return Resource("1stNameSock.eps"); } else return Resource("blank.eps")
__________________
-Megan I am Using: EFI Digital Storefront v7.0.0.20391 / FusionPro Designer 9.2.25 / Mac OS 10.6.8 / Acrobat 10.1.9 and Acrobat 11.0.06 / InDesign CC v9.2 and InDesign CS5.5 v7.5.3 Last edited by mstanton; November 18th, 2009 at 07:18 AM.. |
#2
|
|||
|
|||
![]()
I've never used the "Collect for output" option, but I'm guessing that your resource references refer to a hard-coded directory path (/Volumes/User/...) on your computer instead of a soft path in relation to the directory your template resides (./graphics/). This would cause the server to skip over the files it couldn't find. Hopefully someone with more experience uploading files to a server for processing can provide the workaround if necessary.
|
#3
|
|||
|
|||
![]()
If you're right and it has to do with the path of the file, I'm in for a world of trouble unless someone in these forums knows how FusionPro Desktop and EFI Digital Storefront 4.0 work together. But even if I am able to find out what the file path would be (haha, I have my doubts), how can I change the path in my PDF? Every time I try to change the path of my resource, no matter what I put in, an error comes up saying "File does not exist" and it does not allow me to save that path, even if I just delete the first parts of the path (removing the "/Users/Megan/Desktop/....." at the beginning and leaving the "images/1stNameSock.eps" part)
__________________
-Megan I am Using: EFI Digital Storefront v7.0.0.20391 / FusionPro Designer 9.2.25 / Mac OS 10.6.8 / Acrobat 10.1.9 and Acrobat 11.0.06 / InDesign CC v9.2 and InDesign CS5.5 v7.5.3 |
#4
|
|||
|
|||
![]()
Just an update: the problem did not end up being with the path name. When a PDF is collected for output a zip file is created including all graphic resources. The issue was with my file type. Apparently, either DSF or FP doesn't like .eps files. When I changed them to .jpg everything worked fine. I don't know if this was an FP problem or a DSF problem because when I looked in the zip files and the FusionPro_collect.msg files I noticed that sometimes the .eps files had been collected and sometimes they had not.
__________________
-Megan I am Using: EFI Digital Storefront v7.0.0.20391 / FusionPro Designer 9.2.25 / Mac OS 10.6.8 / Acrobat 10.1.9 and Acrobat 11.0.06 / InDesign CC v9.2 and InDesign CS5.5 v7.5.3 |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|