Results 1 to 4 of 4

Thread: Non resizable windows and removing scroll/tool bar

  1. #1
    Join Date
    Apr 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Non resizable windows and removing scroll/tool bar

    Hi, I'm new and I need some help! I know every place I have read that it is a bad idea to make a window non resizable but... I am trying to make a graphic design portfolio and the pop up with a large image of my work would look cleaner on a non resizable window with no scrollbar or navigation.

    I made my window in flash so I cannot use the pop up behavior in dreamweaver. Can anyone tell me what code I can write in the window that will open so that it will no longer be resizable and to remove navigation and scrollbars.

    I finally figured out how to size it but I don't know how to make it fixed.

    So far this is the code I have:

    <script language="JavaScript">
    self.resizeTo(W,H);
    </script>

    Please help! I have been searching all day...

    thanks,

    iris

  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

    What did you do in Flash to make your window?

    Anyways, you're right, not such a hot idea. It will look horrible on anyone's screen that isn't big enough for the window/image, and they won't be able to scroll the rest of the image into view. And, there are the pop up blockers, and the new windows to existing window, and new window to tab settings many folks have so really, the appearance for any given user is out of your hands.

    Lightbox:

    http://www.dynamicdrive.com/dynamici...box2/index.htm

    Is a very nice alternative to opening a window.

    Back to your question, if you use the javascript window open method in Flash, something like (I'm not much up on Flash):

    Code:
    URL="javascript:window.open('some.jpg','','width=300, height=250')"
    It will use the minimum stuff allowed, like no address bar, scroll bar, etc. But, all modern browsers now have some minimum requirements for new windows.
    - John
    ________________________

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

  3. #3
    Join Date
    Apr 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks for the lightbox suggestion. I will give it a try. I do think if I managed to make popups they would be fine, I've seen it done on other portfolio websites before and it makes the work more clear and clean than cluttered with navigation and scrollbars.

  4. #4
    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 ir_is_21 View Post
    I've seen it done on other portfolio websites before and it makes the work more clear and clean than cluttered with navigation and scrollbars.
    As I said -

    the appearance for any given user is out of your hands.

    So, yes it looks good to you but may look very poorly to others. The web is not TV and even with TV, the way something looks depends to a degree upon one's TV. On the web, and especially with pop ups, there is a much greater range of variation in the user experience.

    What you choose to do though, of course is up to you.
    - John
    ________________________

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

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
  •