Announcement

Collapse
No announcement yet.

Receipt Page

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    Datarax,

    Change the last bit ..

    <TD BGCOLOR=\"$$::g_pSetupBlob{FORM_EMPHASIS_COLOR}\" COLSPAN=2><FONT FACE=\"ARIAL\" SIZE=\"1\">";

    Instead of \"$$::g_pSetupBlob{FORM_EMPHASIS_COLOR}\" use the hex code for the colour you use on the rest of the form.

    Then the last bit .. <FONT FACE=\"ARIAL\" SIZE=\"1\">";

    To this : <SPAN CLASS=\"ACTXSMALL\">";

    Kind regards,
    Bruce King
    SellerDeck

    Comment


      #17
      Hi Bruce,

      My script is now like this:
      $sPaymentPanel = "<TR>\n";
      @Response = ACTINIC::EncodeText($::g_PaymentInfo{'PONO'});
      $sPaymentPanel .= "<TD
      BGCOLOR=\"$$::g_pSetupBlob{FORM_EMPHASIS_COLOR}\"><SPAN
      CLASS=\"ACTXSMALL\"><B>" .
      ACTINIC::GetPhrase(-1, 81) . ":</B></SPAN></TD><TD BGCOLOR=\"#ccffff\" COLSPAN=2><SPAN CLASS=\"ACTXSMALL\">";

      This makes all the bgcolors and the Purchase Order Number: text the right size, but the actual purchase order number does not display in the box now.
      Rob Lane
      www.DATARAX.co.uk

      Comment


        #18
        Hi Rob,

        I tried this out yesterday but Bruce beat me to posting the answer . My OrderScript.pl file looks like:

        Code:
        $sPaymentPanel = "<TR>\n";
        			@Response = ACTINIC::EncodeText($::g_PaymentInfo{'PONO'});
        $sPaymentPanel .= "<TD BGCOLOR=\"$$::g_pSetupBlob{FORM_EMPHASIS_COLOR}\"><SPAN CLASS=\"actxsmall\"><B>" .
        				ACTINIC::GetPhrase(-1, 81) . ":</B></SPAN></TD><TD BGCOLOR=\"$$::g_pSetupBlob{FORM_BACKGROUND_COLOR}\" COLSPAN=2><FONT FACE=\"ARIAL\" SIZE=\"2\">";
        			$sPaymentPanel .= $Response[1] . "</FONT></TD>";
        			$sPaymentPanel .= "</TR>\n";
        			}
        and this works for me. Maybe replace the OrderScript.pl file in your site folder with a default one from c:\program files\actinic v7\Original' and then make the above change.
        ********************
        Tracey
        SellerDeck

        Comment


          #19
          Thanks Tracey,

          It worked a treat and I am a happy bunny.

          Thanks to Bruce as well and all for helping originally.
          Rob Lane
          www.DATARAX.co.uk

          Comment


            #20
            Well Tracey got there before me now... but glad it works for you..
            Bruce King
            SellerDeck

            Comment

            Working...
            X