Announcement

Collapse
No announcement yet.

open a link on brochure fragment into _blank

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

    open a link on brochure fragment into _blank

    is there a simple way of adding into the [LINK] some clever bit of something funky which allows the actual page addressed to open into it's own browser window .. better still to be able to further control that new window with size, scrollbar address bar (or not) etc., I am getting nowhere with it at the moment.

    thanks

    David

    #2
    Hi there

    Rather than using [LINK], You could use html expression inside the fragment. HTML expression are tags which you can put in, to let actinic know the following are html

    An example would be

    Code:
    !!<
    <a href="http://www.yahoo.com" target="_blank">Click Here</a>
    >!!
    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      Taking that further you would need to use Javascript to handle the window size, tool bars etc.

      You would need to put the following into the Act_Primary.html <head> section:

      <script language="JavaScript">
      <!--
      function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
      }
      //-->
      </script>

      and then using the following code as per Nadeem's suggestion:

      !!<<a href="javascript:;" onClick="MM_openBrWindow('www.domain.com','','toolbar=no,menubar=yes,status=yes,scrollbars=no,width=600,height=500')" onFocus="if(this.blur)this.blur()">Click Here</a>>!!

      You can toggle the required features using "yes" or "no" and set the window size accordingly


      Bikster
      SellerDeck Designs and Responsive Themes

      Comment


        #4
        I got the !!< >!! to work fine, but hadn't seen the later posting .. that is very cool stuff so thanks everyone.

        ... is it just me or is anyone else having problems getting onto the community .. I have had a devil of game getting on over the past couple of days.?

        D

        Comment

        Working...
        X