Announcement

Collapse
No announcement yet.

Can you have a Pop up link attached to a BV text box word?

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

  • Can you have a Pop up link attached to a BV text box word?

    Hi, is there a way to control the page size with a hyperlink to open in new window. I would like to highlight some key words in BV text box areas & open in a new window but only to a small size. IE pop up. I can do this with an image or with a word that is in the html area, but would like to have the link to key words in BV’s text areas.
    (Only asking as it will be a real pain to leave a space & try to align several html boxs to the middle of a sentence's in the middle of a paragraph.)

    Any suggestions would be really appreciated.

    Thanks.

    Chris.
    Regards Chris.

    Collectables, Collecting, collectors-info.com

    www.chrismorris.co.uk

    House build project

  • #2
    Re: Can you have a Pop up link attached to a BV text box word?

    you need javascript, something like this http://www.dynamicdrive.com/dynamicindex5/index.html

    below is a simple one, you can add this simple script in your body section of your html,

    <SCRIPT LANGUAGE="JavaScript">
    <!--
    function Open(page)
    {
    OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=300,height=300");
    }
    //-->
    </SCRIPT>

    and then highlight some of your key words in BV text box areas, on the link field instead of write http://www.yourdomain.com/yourpage.html you have to write
    javascript:Open('http://www.yourdomain.com/yourpage.html')

    Or onother way, add/insert transparent image/shape to cover some of your text and then link to
    "#" onClick="window.open('http://www.yourdomain.com/yourpage.html', '','width=300,height=300'); return false;"
    .
    .
    Nyoman

    Comment


    • #3
      Re: Can you have a Pop up link attached to a BV text box word?

      Thanks Nyoman,
      You have actually solved another problem that I had, so I really appreciate your info. The only thing with the script above! I believe it only relates to 1 key word & I may have more than one type of key word per page. (I should of explained it better) I think I will have to stop being lazy & learn some basic html & do all my text areas this way. I should then be able to cut & paste lots of functions into a text area as I need them.

      Many thanks for your help,


      Chris.
      Regards Chris.

      Collectables, Collecting, collectors-info.com

      www.chrismorris.co.uk

      House build project

      Comment

      Working...
      X