Results 1 to 3 of 3

Thread: Setting the size of a single popup link inside Image Thumbnail Viewer II

  1. #1
    Join Date
    Apr 2005
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Setting the size of a single popup link inside Image Thumbnail Viewer II

    http://www.dynamicdrive.com/dynamic.../thumbnail2.htm

    Hi, I've got another question about this script.

    I have one image, that I want to link to a popup window containing a director 3D file. I can get the window to pop up just fine, but I want to make it pop up in a small window without all the buttons and such. All the standard ways of doing a javascript link don't work.

    Please help!

    Also, is there any way I can put in the director file right into the frame in place of the image?

    Thanks a lot in advance for the help!

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Quote Originally Posted by Vagrant Logic
    All the standard ways of doing a javascript link don't work.
    Such as? Did you try using one of the links provided in the markup:
    Code:
    <a href="#" onMouseover="modifyimage('dynloadarea', 0)">image 1 (onmouseover)</a><br>
    <a href="#" onMouseover="modifyimage('dynloadarea', 1)">image 2 (onmouseover)</a><br>
    <a href="#" onClick="return modifyimage('dynloadarea2', 2)">image 3 (onclick)</a><p>
    and using the window.open() method with standard params for a bare window sized to your specifications? It could be added as onClick, to an existing onClick, or as href="javascript:window.open()". window.open() is a standard JavaScript way of doing a link, especially in a new window. Two scripts you might want to check out, one would help implement this idea:
    Popup Window Generator
    and this one provides an alternative:
    DHTML Window
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Apr 2005
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I think I get what you're saying.

    Thanks.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •