Jump to content

drewsimmons

Registered Users - Approved
  • Posts

    7
  • Joined

Converted

  • FusionPro Products
    No

drewsimmons's Achievements

Apprentice

Apprentice (3/14)

  • First Post Rare
  • Week One Done
  • One Month Later
  • One Year In
  • Conversation Starter Rare

Recent Badges

10

Reputation

  1. Hello all Im just trying to figure out how to create a rule that changes text to lower case but keeps acronyms in a job title all CAPS. I have attached a jpg with the example. The title in french is Spécialiste en services financiers, PME that info is pulled into the start of the paragraph which I applied a rule applied that changes it the entire Title to lowercase But I need the PME to remain all caps any help would be greatly appricated thanks Drew
  2. Hello all Im just trying to figure out how to create a rule that changes text to lower case but keeps acronyms in a job title all CAPS. I have attached a jpg with the example. The title in french is Spécialiste en services financiers, PME that info is pulled into the start of the paragraph which I applied a rule applied that changes it the entire Title to lowercase But I need the PME to remain all caps any help would be greatly appricated thanks Drew
  3. I got a question about creating text list within a library. Is there a character limit when entering your list entry. I'm typing a long entry and its not going up to the list. I'm thinking there must be a character limit with this. Thanks Drew
  4. Hi I'm having an issue. take a look at my txt file I'm trying to make a Credentials in the drop down view - Output of Credentials type data file. Weird thing is i'm able to output 17 of the 19 Credentials minus the top two. there are tabs between the drop down view and output of credential Im just really confused why the top two will not load into my template. I've attached is the data file and here is the java script i used in fusion pro any help of direction would be really appreciated thanks Andrew /* 1. we want to get the information from the xdf 2. count the qualifications filled 3. return the proper verbage */ XDF = new ExternalDataFileEx("FR_qualifications_XDF.txt", "\t"); var credArray1 = []; var credArray2 = []; var qualCounter = 0; var degreeCounter = 0; var intro = ", et je posséde le titre de "; var intro2 = ", et je posséde les titres de "; for (j = 1; j<4; j++){ myQual = "Qualifications"+j; for (i = 0; i < XDF.recordCount+1; i++){ qualification = XDF.GetFieldValue(i, 0); if (Field(myQual) == qualification && Field(myQual) != ""){ credArray1[qualCounter] = XDF.GetFieldValue(i, 1); credArray2[qualCounter] = XDF.GetFieldValue(i, 2); if (credArray2[qualCounter] == "degree"){ degreeCounter++; } qualCounter++ } } } if (qualCounter == 1){ return intro + credArray1[0]+" "+credArray2[0]+"."; } else if (qualCounter == 2){ if (credArray2[0] == credArray2[1] && credArray2[0] != "degree") // both credential endings are the same and are not "degree" return intro2 + credArray1[0]+","+credArray1[1]+" "+credArray2[0]+"s."; else if (credArray2[0] == credArray2[1] && credArray2[0] == "degree") // both credential endings are the same and are "degree" return intro2 + credArray1[0]+" "+credArray2[0]+", "+credArray1[1]+" "+credArray2[1]+"."; else // both credentials are not the same return intro2 + credArray1[0]+" "+credArray2[0]+", "+credArray1[1]+" "+credArray2[1]+"."; } else if (qualCounter == 3){
  5. Hello Is there a way to make the Proof at the store level low rez so that someone who is ordering this item can't take the pdf and have it printed on their own. right now at the store level I hit the pdf button and it spits out a pdf is there anyway for that pdf to have low rez text at all if the proof has been approved is there a way to see what the final output will look like? thanks Drew
  6. hello Im new to FusionPro and i had a quick question I'm not very knowledgeable in javascript but I'm reaching out for a bit of help with a issue I'm having Here is an example of the text I'm using "….call me at «Phone_number» ext. «FA_ext»" The ext. is optional. If a user doesn't have an extension is there a rule that can be used to delete "ext. «FA_ext»" and just put the number there? Any help or direction would be greatly appreciated Thank you Drew
×
×
  • Create New...