Jump to content

dleahy

Registered Users - Approved
  • Posts

    51
  • Joined

Everything posted by dleahy

  1. Ya but how do I stop Agenda from duplicating down the rows and only stay in the first one. http://s7.postimage.org/oedjg6wmj/Screen_shot_2012_07_06_at_12_44_20_PM.png var table = new FPTable; table.AddColumns(0,10810, 5200,7200); // set column widths here for (var i = 1; i <= 5; i++) { var row = table.AddRow(); row.Cells[1].Content = "Agenda"; row.Cells[2].Content = TaggedDataField("Time " + i) + " " + TaggedDataField("ampm " + i) ; row.Cells[3].Content = TaggedDataField("Agenda " + i); row.Cells[0].Margins = { Top:0, Bottom:2, Left:0, Right:0 }; row.Cells[0].Font="SmithNephew"; row.Cells[0].TextColor="Black"; row.Cells[0].PointSize="9"; row.Cells[1].Font="SmithNephew"; row.Cells[1].Margins = { Top:0, Bottom:2, Left:0, Right:0 }; row.Cells[1].PointSize="9"; row.Cells[2].Font="SmithNephew"; row.Cells[2].TextColor="Black"; row.Cells[2].Margins = { Top:0, Bottom:2, Left:0, Right:0 }; row.Cells[2].PointSize="9"; row.Cells[3].Font="SmithNephew"; row.Cells[3].TextColor="Black"; row.Cells[3].PointSize="9"; row.Cells[3].Margins = { Top:0, Bottom:2, Left:0, Right:0 }; } return table.MakeTags(); I surely could benefit from a javascript 101 class or webinar...
  2. Haha! Ya...I'd skip it too! Alright..I thought it might have something to do with the margins.. Also If I have to add a row that is separate from the dynamic rows. Like so: http://s15.postimage.org/v5ejt2cl7/Screen_shot_2012_07_06_at_11_25_54_AM.png See the Agenda all the way to the far left? Everything else has to stay aligned as is. How can I work the static text "Agenda" into your code on the same row? Cheers, -Dan
  3. Thanks Dan! That's going to save me some serious time. Is there a way to set line height of text or cell height? I couldn't find it in the TablerBuilder tutorial... Getting some serious crunching of type... Here is a screenshot: http://s8.postimage.org/k6o18m8bp/Screen_shot_2012_07_06_at_9_50_08_AM.png Cheers, -Dano
  4. Hadrian, To the best of my knowledge, the iForms Dynamic Pricing option does NOT support the Static w/Attributes product type. However iForms Form Load Pricing is supported. Cheers, -Dan
  5. Olivier, I can't think of any way to accomplish this. Sorry man. -Dan
  6. * Having trouble programming my first table. I keep getting ugliness in the FP preview... Can anyone point me in the right direction here? Here is what I have to accomplish: http://postimage.org/image/ak802f4i9/http://s8.postimage.org/z0q5ww591/Screen_shot_2012_07_05_at_4_06_21_PM.png We are going to be utilizing this as a FP template imported in MarcomCentral. The Agenda fields will all be prefilled. Any help is greatly appreciated! Cheers, -Dano
  7. To the best of my knowledge...no, you cannot have a user upload to a gallery in Marcom when utilizing an Exact Target email template.
  8. It's not too difficult... Just enable it when using a Text Area -Multiline field type. Like so: http://forums.pti.com/attachment.php?attachmentid=666&stc=1&d=1340644606 The rest should be pretty self explainatory. Any more questions...just ask.
  9. I've never met a programmer who used the word succinct before. You must of minored in English...
  10. All, I'm using the switch rule, like Dan mentioned above, on a new template I'm constructing. I need to be able to nest a else if statement in the switch rule yet I don't know quite how to do it. I have to take the code above: switch (Field("SelectStyle")) { case "FJ Icon (M)": FusionPro.Composition.SetBodyPageUsage("Body2", true); break; case "DryJoys Tour (M)": FusionPro.Composition.SetBodyPageUsage("Body3", true); break; default: FusionPro.Composition.SetBodyPageUsage("Body1", true); }and be able to say something like this logic: switch (Field("SelectStyle")) { case "FJ Icon (M)": FusionPro.Composition.SetBodyPageUsage("Body2", true); else if Field("MemberGuestNameofEvent") == "" return FusionPro.Composition.SetBodyPageUsage("Body4", true); break; case "DryJoys Tour (M)": FusionPro.Composition.SetBodyPageUsage("Body3", true); break; default: FusionPro.Composition.SetBodyPageUsage("Body1", true); }So basically I need to be able to say if SelectStyle = "FJ Icon (M)" then return "Body2" unless MemberGuestNameofEvent = "" then return "Body4" Any help with that would be most appreciated! -Dan
  11. Big thanks to both of you on responding so quickly! I actually found an example of the switch rule and applied it similar to what Dan just laid out...
  12. Have three pages in my PDF (Body 1, Body 2, Body 3) Trying to get them to displayed based on values entered in a field called "SelectStyle" Basically what I want to accomplish is this: IF Field SelectStyle = "FJ Icon (M)" then display Body 2 IF Field SelectStyle = "DryJoys Tour (M)" then display Body 3 ELSE display Body 1 Here is what I got that's not working: if (GetFileName(Field("SelectStyle")) == "FJ Icon (M)") { FusionPro.Composition.SetBodyPageUsage("Body2", true); FusionPro.Composition.SetBodyPageUsage("Body1", false); FusionPro.Composition.SetBodyPageUsage("Body3", false) { if (GetFileName(Field("SelectStyle")) == "DryJoys Tour (M)") { FusionPro.Composition.SetBodyPageUsage("Body3", true); FusionPro.Composition.SetBodyPageUsage("Body2", false); FusionPro.Composition.SetBodyPageUsage("Body1", false) } else FusionPro.Composition.SetBodyPageUsage("Body1", true); FusionPro.Composition.SetBodyPageUsage("Body2",false); FusionPro.Composition.SetBodyPageUsage("Body3",false) }} Can anyone see what I'm doing wrong?!? Thanks ahead of time!
  13. We really need the ability to set shipping preferences at the user or group level. To restrict it by product seems inane. Any workarounds? If not consider this a feature request. -Dano
×
×
  • Create New...