Announcement

Collapse
No announcement yet.

popup window

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

    popup window

    Hi everybody,

    I would like to open a popup window from "Cliquez ici pour un rappel de vos codes d'accès" on that page :

    http://commerce.ictl.com/cgi-bin/ss0...ARGET=BROCHURE.

    Do you know how to do that in Actinic?

    Thanks,
    Mathieu Perino
    ICTL - Liaisons Optiques
    Website: www.ictl.com

    #2
    You can use the following code pasted into either a fragment or product description to create a popup window:

    Code:
    !!<<input type=button value="Open PopUp Window" onclick="ShowPopUp('http://www.domain.co.uk/page.htm',680,750)">>!!
    This launches the standard Actinic popup control. The 680 and 750 are the width and height properties of the new window.


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      If you want to open a full new browser window linking say through to a new site try:

      Code:
      !!<<a target="_new" href="http://www.domain.co.uk/page.htm"><u><b>Click Here For New Site</b></u></a>>!!
      The <b> tags emboldens the text and the <u> tags underline the text - either can be removed depending on how you want the text to appear

      The "_new" opens the site in a new window - to open in the same simply delete

      Again the above can be pasted into fragments or produc descriptions etc.

      HTH


      Bikster
      SellerDeck Designs and Responsive Themes

      Comment


        #4
        Thanks jont for your help, it works.

        Yet I still have a little problem : the signs !!< and >!! appear on my page!

        here is the exact code I used :

        !!<<br><a href="javascript:void();" onClick="ShowPopUp('http://www.teraoptic.org/database/form_codes.php','','width=510,height=320')">Cliquez ici</a> pour un rappel de vos codes d'accès.>!!
        Any suggestion?
        Mathieu Perino
        ICTL - Liaisons Optiques
        Website: www.ictl.com

        Comment


          #5
          You need to move the closing >!!

          !!<<br><a href="javascript:void();" onClick="ShowPopUp('http://www.teraoptic.org/database/form_codes.php','','width=510,height=320')">Cliquez ici</a>>!! pour un rappel de vos codes d'accès.

          to after the </a> tags


          Bikster
          SellerDeck Designs and Responsive Themes

          Comment


            #6

            It didn't really help.... now I see :
            !!<Cliquez ici>!! pour un rappel de vos codes d'accès.
            Mathieu Perino
            ICTL - Liaisons Optiques
            Website: www.ictl.com

            Comment


              #7
              Have you tried removing the !!< and >!! .. depending on where you put the code the !!< tags are not always needed


              Bikster
              SellerDeck Designs and Responsive Themes

              Comment


                #8

                yes indeed!!

                thanks,
                Mathieu Perino
                ICTL - Liaisons Optiques
                Website: www.ictl.com

                Comment


                  #9
                  One of the many little quirks by Actinic to make us all go grey and bald very quickly - glad you got it sorted


                  Bikster
                  SellerDeck Designs and Responsive Themes

                  Comment

                  Working...
                  X