Jump to content

sbellia

Registered Users - Approved
  • Posts

    11
  • Joined

Converted

  • FusionPro Products
    Yes

Converted

  • FusionPro VDP software version
    8.2.7

Converted

  • OS
    Windows 10

Converted

  • Acrobat Version
    Acrobat X (10)

sbellia's Achievements

Apprentice

Apprentice (3/14)

  • First Post Rare
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

10

Reputation

  1. Thanks merski007, But im pretty noob to this. Can you more specific in the language of the code? Thanks
  2. Hi everybody, I'm looking to count the amount of times the Insert picture rule returns a certain value and return it to a log file or on the screen after I compose the template. Whatever is easier. I want to count the amount of times the rule spits out the default value which is the final else return. What do you recommend? var Var1 = "@PHOTO"; var Var2 = ".jpg"; var Var3 = "S:\\Customer Files COPY CENTER\\Prosdigital\\HOLIDAY MAILER 12-11-17\\ARTWORK"; var Var4 = "000000_SA0.jpg"; temp = ''; var_extension = ''; has_extension = ''; if (Var3 == "") Var3 = Var3; else { if (FusionPro.isMac) Var3 = Var3 + ":"; else Var3 = Var3 + "\\"; } for (i=0; i<Field(Var1).length; i++) { temp = Mid(Field(Var1), Field(Var1).length-i,1); var_extension = temp + var_extension; var_extension = ToLower(var_extension); if(var_extension == ".png" || var_extension == ".pdf" || var_extension == ".gif" || var_extension == ".eps" || var_extension == ".tif" || var_extension == ".tiff" || var_extension == ".jpg" || var_extension == ".jpeg") { has_extension = "true"; i=Field(Var1).length; } else has_extension = "false"; } if(has_extension == "true") Pic = CreateResource(Var3 + Field(Var1), "graphic", true); else { if(Var2 == ".jpg") { Pic = CreateResource(Var3 + Field(Var1) + ".jpeg", "graphic", true); if (Pic.exists) Pic = Pic; else Pic = CreateResource(Var3 + Field(Var1) + ".jpg", "graphic", true); } if(Var2 == ".tif") { Pic = CreateResource(Var3 + Field(Var1) + ".tif", "graphic", true); if (Pic.exists) Pic = Pic; else Pic = CreateResource(Var3 + Field(Var1) + ".tiff", "graphic", true); } if(Var2 == ".png" || Var2 == ".pdf" || Var2 == ".eps" || Var2 == ".gif") { Pic = CreateResource(Var3 + Field(Var1) + Var2, "graphic", true); } } if (Pic.exists) { return Pic; } else { return CreateResource(Var3 + Var4, "graphic", true); }
  3. Has anyone come across this error: "Tax calculation Error: An internal Error Occured.(ID 60)" It happens when my customer tries to check out of the shopping cart. It appears that our taxes are set up properly to each state we do business in. Any help would be appreciated!
  4. Record 1 is D000001 Record 2 is D000029 Record 3 is D000056 ... THanks for the help. I'll try your first suggestion.
  5. Hello, Im trying to merge a csv file 1696 records on to a five page document with one text frame on each page. I need the first page to call the first record and the second page to call the 2nd record and the third page to call the 3rd record...so on until the five pages are used. After the fifth page the documents needs to merge the 6th record on the first page and the 7th record on the 2nd page so on until all 1696 records are used and i have a total of 1696 pages in a series of 5. In other words, I am trying to create printed tabs so they can go into approx 80 binders. Its one large document with 1696 different tabs non-sequential. I appreciate the help! Sal
  6. Hi, Im composing an 8 page booklet with 50 seperate records. The booklet has variable data on every page. Im outputing to a Canon Imagepress 6000. What is the best strategy for composing an ouput file that will allow for Command Workstation to impose and print a file. Normally an 8 page booklet with 50 records would create a file with 400 pages that i cannot impose in command workstation. What is the best strategy in my situation? I really appreciate any advice here. thanks Sal
  7. Hey guys, Im using UPS as my carrier. I have used the test shipping option in manager and it gives me one rate of 8.57 using Ground. I tested with my store in the shopping cart and I get 9.07. I then went to UPS.com and entered all the same info as the earlier and got a price of 11.30. Anybody have any thoughts. I dont have a markup set on my carrier setup. Thanks!
×
×
  • Create New...