UndergroundScene Forums  

Welcome to the UndergroundScene Forums forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!


Go Back   UndergroundScene Forums > SPECIAL AREAS > Information Technology > Web and Computer Arts
Register FAQ Site Areas Gig Guides Members Calendar Arcade Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
Old 19th July 2006, 01:34 PM   #1 (permalink)
I_got_a_mohawk
Senior Member
 
I_got_a_mohawk's Avatar
 
Join Date: Dec 2003
Location: Blairgowrie
Posts: 4,749
Band: Spengler
I_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of light
html question

Im trying to setup a new website, i want to have the basic index.html setup to redirect to another page, the other page being a specific size. I know how to setup a redirect, and i know how to setup a link that opens a page in a new window of a set size. I just dont know how to have both together

So, automatic redirect which opens a new window of a set size.

Anyone be able to help out?

Cheers guys
I_got_a_mohawk is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 19th July 2006, 02:17 PM   #2 (permalink)
kj
gimp
 
kj's Avatar
 
Join Date: Aug 2001
Location: Scotland
Posts: 13,600
Band: A band of merry men
kj has disabled reputation
Not recommended because what will happen is the browser window will resize and this pisses off everyone that uses the net. An alternative is to leave the index page and have java script which opens up a new window in your specified size in front of the browser window that causes the popup. This is what many sites use that try and do something similar to what you are looking for.

Taking control of browser windows and sizes away from the user is bad usability.

In saying that, here is the code you should put in your page that resizes when loaded.

Quote:
<body onload="window.resizeTo(400,400)">
replace the numbers with the width and height you require. It works in both latest versions of IE and Firefox.

Last edited by kj : 19th July 2006 at 02:28 PM.
kj is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 19th July 2006, 02:47 PM   #3 (permalink)
pixelsink
Senior Member
 
pixelsink's Avatar
 
Join Date: Sep 2002
Location: www.carbonhideout.com
Posts: 4,689
pixelsink is a name known to allpixelsink is a name known to allpixelsink is a name known to allpixelsink is a name known to allpixelsink is a name known to allpixelsink is a name known to allpixelsink is a name known to allpixelsink is a name known to allpixelsink is a name known to allpixelsink is a name known to allpixelsink is a name known to all
what KJ said.
pixelsink is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 19th July 2006, 08:28 PM   #4 (permalink)
I_got_a_mohawk
Senior Member
 
I_got_a_mohawk's Avatar
 
Join Date: Dec 2003
Location: Blairgowrie
Posts: 4,749
Band: Spengler
I_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of lightI_got_a_mohawk is a glorious beacon of light
Fair play, what you were meaning by having a new window open like a popup was what i was going for

Ill have a think about it, see if it really needs it

Again tho, cheers!
I_got_a_mohawk is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 19th July 2006, 10:36 PM   #5 (permalink)
kj
gimp
 
kj's Avatar
 
Join Date: Aug 2001
Location: Scotland
Posts: 13,600
Band: A band of merry men
kj has disabled reputation
also remember that may people have popup blockers, Firefox comes with one as default as does the new IE7.
kj is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 2nd January 2007, 11:54 PM   #6 (permalink)
freakster
Registered User
 
freakster's Avatar
 
Join Date: Jan 2007
Posts: 7
Band: -
freakster is an unknown quantity at this point
Besides Firefox and, I assume, other browsers are pretty good at directing popups into the kind of window the user has specified, too. The most my browser will give you is a new tab.
freakster is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 3rd January 2007, 12:18 AM   #7 (permalink)
Hometown Zero
Senior Member
 
Hometown Zero's Avatar
 
Join Date: Dec 2005
Location: the 'dee
Posts: 1,306
Band: Wasted Nation
Hometown Zero has a spectacular aura aboutHometown Zero has a spectacular aura aboutHometown Zero has a spectacular aura aboutHometown Zero has a spectacular aura aboutHometown Zero has a spectacular aura aboutHometown Zero has a spectacular aura aboutHometown Zero has a spectacular aura about
Quote:
Originally Posted by kj View Post
also remember that may people have popup blockers, Firefox comes with one as default as does the new IE7.
and maxthon and flock...
Hometown Zero is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 3rd January 2007, 01:55 AM   #8 (permalink)
GaryM
Registered User
 
GaryM's Avatar
 
Join Date: Jun 2006
Location: Dundee
Posts: 328
Band: Illicit Still - A Tribute to Classic Metal
GaryM will become famous soon enoughGaryM will become famous soon enoughGaryM will become famous soon enoughGaryM will become famous soon enoughGaryM will become famous soon enough
Quote:
Originally Posted by I_got_a_mohawk View Post
So, automatic redirect which opens a new window of a set size.
Every site that does this, I just get the address of the child window and paste it back into the regular browser pane.
GaryM is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 3rd January 2007, 03:11 AM   #9 (permalink)
humndislocation
Hardcore is serious guys
 
humndislocation's Avatar
 
Join Date: Mar 2003
Location: Dundee
Posts: 5,840
Band: Blasphemous Necrorapist
humndislocation has a reputation beyond reputehumndislocation has a reputation beyond reputehumndislocation has a reputation beyond reputehumndislocation has a reputation beyond reputehumndislocation has a reputation beyond reputehumndislocation has a reputation beyond reputehumndislocation has a reputation beyond reputehumndislocation has a reputation beyond reputehumndislocation has a reputation beyond reputehumndislocation has a reputation beyond reputehumndislocation has a reputation beyond repute
I'm surprised that I didn't reply to this the first time around, but yeah, never do this, it's really annoying.

In my opinion, a good rule of thumb when designing a user-interface, is never to unnecessarily take choice away from the user. It just pisses people off.

Also, other people mentioned popup blockers. I use Firefox, which has a built-in popup blocker. If I click on a link it gets blocked, then I'll leave that site, unless there's something I specifically want at that site, and I really want to visit it.
humndislocation is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 7th January 2007, 08:05 PM   #10 (permalink)
RiseAgainst
rambling boy of pleasure
 
RiseAgainst's Avatar
 
Join Date: Aug 2004
Location: Work id presume
Posts: 2,967
Band: Cheat To Win
RiseAgainst is a jewel in the roughRiseAgainst is a jewel in the roughRiseAgainst is a jewel in the roughRiseAgainst is a jewel in the roughRiseAgainst is a jewel in the roughRiseAgainst is a jewel in the roughRiseAgainst is a jewel in the roughRiseAgainst is a jewel in the roughRiseAgainst is a jewel in the roughRiseAgainst is a jewel in the rough
Quote:
Originally Posted by humndislocation View Post
I'm surprised that I didn't reply to this the first time around, but yeah, never do this, it's really annoying.

In my opinion, a good rule of thumb when designing a user-interface, is never to unnecessarily take choice away from the user. It just pisses people off.

Also, other people mentioned popup blockers. I use Firefox, which has a built-in popup blocker. If I click on a link it gets blocked, then I'll leave that site, unless there's something I specifically want at that site, and I really want to visit it.
good post. it annoys me when i have to go adding things to popup blockers.
RiseAgainst is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Similar Threads
Thread Thread Starter Forum Replies Last Post
Ask a question to the LAST poster... DissolveD_JameS Bollocks 30 24th March 2006 11:57 PM
Another amp question. A Quatorze Musicians Corner 7 7th October 2005 08:06 AM
HTML hell. DissolveD_JameS Information Technology 8 6th May 2005 02:10 PM
Question My Theory QMTSinger Contacts and Goods Trading 0 7th September 2004 11:23 PM
Distroing at gigs question TGO Gig / Event Announcements & Gig Seeking 28 16th April 2004 08:11 AM


All times are GMT. The time now is 04:52 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0 RC8
UndergroundScene.co.uk is bad-ass and under copyright