[wdvltalk] Re: Search Results Relevancy

2004-01-09 Thread Paul Larue
Thanks a lot rudy, I'll be implementing that today. I'm nearly finished
with the classes and all...

Cheers

Paul

| -Original Message-
| From: rudy [mailto:[EMAIL PROTECTED] 
| Sent: Thursday, January 08, 2004 4:36 PM
| To: [EMAIL PROTECTED]
| Subject: [wdvltalk] Re: Search Results Relevancy
| 
| 
|  Rudy,
|  You're a champion. You know that, right? Yes I'm sure you do...
| 
| thanks for the kind words
| 
| i try
| 
|  Anyway, I'll try to implement that asap. Is that standard SQL?
| 
| yes
| 
|  Will that work in access2k and MySQL4??
| 
| in mysql, yes, in access, no  (why are you not surprised?)
| 
| in access you have to change the standard CASE expressions 
| to the microsoftian IIF expressions
| 
| also, the wildcard in access is * instead of %
| 
|  select *
|   , iif( name like '*str1*', .50, 0 )
|   + iif( desc like '*str2*', .30, 0 )
|   + iif( features like '*str3*', .20, 0 )
|  as relevancy
|from tbl 
|   where name like '*str1*' 
|  or desc like '*str2*' 
|  or features like '*str3*'
|   order 
|   by relevancy   
| 
| 
| rudy
| 
|  . The WDVL Discussion List from WDVL.COM . 
| To Join wdvltalk, Send An Email To: 
| mailto:[EMAIL PROTECTED] 
|Send Your Posts 
| To: [EMAIL PROTECTED]
| To set a personal password send an email to 
| [EMAIL PROTECTED] with the words: set WDVLTALK 
| pw=yourpassword in the body of the email. To change 
| subscription settings to the wdvltalk digest version:
| http://wdvl.internet.com/WDVL/Forum/#sub
| 
|   http://www.wdvl.com  ___
| 
| You are currently subscribed to wdvltalk as: 
| [EMAIL PROTECTED] To unsubscribe send a blank email to 
| %%email.unsub%%
| 
| To unsubscribe via postal mail, please contact us at: 
| Jupitermedia Corp.
| Attn: Discussion List Management
| 475 Park Avenue South
| New York, NY 10016
| 
| Please include the email address which you have been contacted with.
| 
| 
| 


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Table with equal width cells

2004-01-09 Thread Amrit Hallan
I've been working with the table/table tag for such a
long time but haven't given it a thought. Can we create
cells of equal width without mentioning the width
attribute (even that doesn't seem to work sometimes). This I
want so that no matter what's the number of td/td tags I
create, their width should be the same, along with being
liquid. Can it be done?

Thanks.

Amrit



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.560 / Virus Database: 352 - Release Date:
1/8/2004


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Table with equal width cells

2004-01-09 Thread Jon Haworth
Hi Amrit,

 Can we create cells of equal width without
 mentioning the width attribute

I don't think so - if you have different amounts of text or different width
images in the cells, browsers will usually resize them as they see fit.

 I want so that no matter what's the number of td/td
 tags I create, their width should be the same, along with
 being liquid. Can it be done?

It can, but you'll need to script it: work out how many cells there are
going to be, and then divide 100 by that number to arrive at the % width for
each cell. If you have PHP the code is something like this:

?php

  $cells = 5; // use 5 cells as an example
  $width = intval(100 / $cells);

  echo tr;

  for ($i = 1; $i = $cells; $i++) {
echo 'td width='. $width. '%';
echo 'cell #'. $cell;
echo '/td\n';
  }

  echo /tr;

?

Cheers
Jon





 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Table with equal width cells

2004-01-09 Thread Amrit Hallan
Thank you John.

Actually I'm redesigning my client's site and he has used
fixed numbers such as td width=200/td wihch, I don't
know...I wanted to avoid.

Yes, I can do it in PHP, but as you mentioned, the browser
resized the cell width according to the length of the text
string.

Thanks.

Amrit

- Original Message -
From: Jon Haworth
To: [EMAIL PROTECTED]
Sent: Friday, January 09, 2004 4:37 PM
Subject: [wdvltalk] Re: Table with equal width cells


Hi Amrit,

 Can we create cells of equal width without
 mentioning the width attribute

I don't think so - if you have different amounts of text or
different width
images in the cells, browsers will usually resize them as
they see fit.

 I want so that no matter what's the number of td/td
 tags I create, their width should be the same, along with
 being liquid. Can it be done?

It can, but you'll need to script it: work out how many
cells there are
going to be, and then divide 100 by that number to arrive at
the % width for
each cell. If you have PHP the code is something like this:

?php

  $cells = 5; // use 5 cells as an example
  $width = intval(100 / $cells);

  echo tr;

  for ($i = 1; $i = $cells; $i++) {
echo 'td width='. $width. '%';
echo 'cell #'. $cell;
echo '/td\n';
  }

  echo /tr;

?

Cheers
Jon





 . The WDVL Discussion List from WDVL.COM . 
To Join wdvltalk, Send An Email To:
mailto:[EMAIL PROTECTED]
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to
[EMAIL PROTECTED] with the words: set WDVLTALK
pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest
version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com
___

You are currently subscribed to wdvltalk as:
[EMAIL PROTECTED]
To unsubscribe send a blank email to
%%email.unsub%%

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been
contacted with.


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.560 / Virus Database: 352 - Release Date:
1/8/2004


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: can't make auto transitions

2004-01-09 Thread Jure Spik
Well I don't want to start a JavaScript tutorial here, but a short
description of to-do's is :
Each time you want to change an image :
-Apply the filter to the holder of image e.g.
document.getElementById('holder').filters[0].apply();
-Change the image in holder e.g. document.getElementById('holder').src =
someNewPic;
-Play the transition e.g.
setTimeout('document.getElementById(holder).filters[0].play(3.0);', 1000);
//i do this with 1second timeout so image has some time to load

holder being img src='y.jpg' id='holder' /
you should set constant width and heigth to #holder class so pictures fade
ok. Also #holder must have the progid:DXImageTransform style set

Jure pik
- Original Message - 
From: Gerrie Warner [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 08, 2004 8:22 PM
Subject: [wdvltalk] can't make auto transitions


 Here's the code from MS - now I wonder how to add a few more images to it:
 alo it doesn't fade from one to the other automatically - you have to hit
 the Play Transitions button

 TIA! Gerrie


 HEAD
 SCRIPT
 var startImage =fruit.gif;
 var endImage=mouse.gif;
 function doTrans() {

 imgObj.filters[0].apply();
 if (oImg.src.indexOf(startImage)!=-1) {
 oImg.src = endImage;
 imgObj.style.backgroundColor = gold;
 imgObjText.innerHTML = BRBSecond
 Page/BBRBRUsing the Bplay/B method reveals the changes in the
SPAN
 element content.}
 else {
 oImg.src = startImage;
 imgObj.style.backgroundColor = skyblue;
 imgObjText.innerHTML = BRbFirst
 Page/bBRBRUsing the Bapply/B method prepares this SPAN element
for
 content changes.}
 imgObj.filters[0].play();
 }
 /SCRIPT
 /HEAD
 BODY
 SPAN id=imgObj style=PADDING-RIGHT: 10px; PADDING-LEFT: 13px; FILTER:
 progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=50); FONT: 9pt/1.3
 verdana; WIDTH: 305px; COLOR: black; HEIGHT: 150px; BACKGROUND-COLOR:
 skyblueIMG id=oImg style=MARGIN: 8px src=fruit.gif align=left
 DIV id=imgObjTextBRBFirst Page/BBRBRUsing the Bapply/B
 method prepares this SPAN element for content
changes./DIV/SPANBRBR
 BUTTON onclick=doTrans()Play Transition/BUTTON
 /BODY


   The WDVL Discussion List from WDVL.COM  
 To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
Send Your Posts To: [EMAIL PROTECTED]
 To set a personal password send an email to [EMAIL PROTECTED] with the
words: set WDVLTALK pw=yourpassword in the body of the email.
 To change subscription settings to the wdvltalk digest version:
 http://wdvl.internet.com/WDVL/Forum/#sub

   http://www.wdvl.com  ___

 You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to %%email.unsub%%

 To unsubscribe via postal mail, please contact us at:
 Jupitermedia Corp.
 Attn: Discussion List Management
 475 Park Avenue South
 New York, NY 10016

 Please include the email address which you have been contacted with.




  The WDVL Discussion List from WDVL.COM  
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Another SCR please... :)

2004-01-09 Thread Matthew Macdonald-Wallace
Hi all,

Can you please take a look at http://www.interactwiththe.net/ict/ for me
again? 

I've checked out the stats and it would appear the majority of people
who visit the site use IE 6.0, can someone just check and see how it
looks in different resolutions? my browsercam trial's expired and I'm
too cheap to buy one! :)

As a quick warning, the only link that currently works is Services.

Thanks in advance,

Matt
--
+--+
|Matthew Macdonald-Wallace |
|The Truth Will Set you Free   |
|http://www.truthisfreedom.org.uk/ |
+--+
Yeah.  Wait a minute.  It's the guy from TV.  My kid's 
hero...Cruddy...Crummy...Krusty the Clown!

-- Homer Simpson
   Krusty Gets Busted

 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Another SCR please... :)

2004-01-09 Thread Peter Vidal

I checked on 800x600 and looks good...

I am on IE 6.0

Peter Vidal
Pall Aeropower Corp.
SR Programmer Analyst
WWW.Pall.com
My religion consists of a humble admiration of the illimitable superior
spirit who reveals himself in the slight details we are able to perceive
with our frail and feeble mind.
Albert Einstein



 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Javascript FOR statement

2004-01-09 Thread Hoenig, Robert
I'm trying to create a form validation that will validate multiple fields in
the form.  I thought the best idea would be to check the fields when the
user clicks the submit button.  I'm having some problems with the javascript
side.  Here is what I have so far. 

function verify_form(chk_fields)
{
var chk_fld = new Array(chk_fields);
for (var i=1; i(ComponentCount + 1); i++)

msg = msg;

//all we have to do is return the return value of the confirm() method
return confirm(msg)
}

My main goal is too loop through the array.  I copied this code from another
project and I'm not real sure what it's doing.  Any help/suggestions would
be awesome.

Thanks
Robert


This email has been scanned for all viruses by the MessageLabs Email
Security System. For more information on a proactive email security
service working around the clock, around the globe, visit
http://www.messagelabs.com


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Javascript FOR statement

2004-01-09 Thread andrew . trusz
Do it server side. Client side validation is much to prone to malicious
manipulation and with javascript can simply be turned off. Server side is
much more secure and protects your site and data.

drew

 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Javascript FOR statement

2004-01-09 Thread Hoenig, Robert
How could I check if it's filled in on the server side?

Thank you
Robert

*-*
Application Programmer
x4863


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 09, 2004 8:31 AM
To: [EMAIL PROTECTED]
Subject: [wdvltalk] Re: Javascript FOR statement


Do it server side. Client side validation is much to prone to malicious
manipulation and with javascript can simply be turned off. Server side is
much more secure and protects your site and data.

drew

 * The WDVL Discussion List from WDVL.COM * 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the
words: set WDVLTALK pw=yourpassword in the body of the email. To change
subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as:
[EMAIL PROTECTED]
To unsubscribe send a blank email to %%email.unsub%%

To unsubscribe via postal mail, please contact us at: Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



This email has been scanned for all viruses by the MessageLabs Email
Security System. For more information on a proactive email security service
working around the clock, around the globe, visit http://www.messagelabs.com



This email has been scanned for all viruses by the MessageLabs Email
Security System. For more information on a proactive email security
service working around the clock, around the globe, visit
http://www.messagelabs.com


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Another SCR please... :)

2004-01-09 Thread andrew . trusz
Change the order in the code to nav, content, quotes and float them all
left. That will solve both the problem of the text dropping below nav and
quotes and rudy's problem with the space between content and quotes.

Float:right sometimes creates strange issues particularly with IE.

Oh and you need a meta tag for the charset:

meta name=Content-type content=text/html; charset=ISO-8859-1

drew

 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Javascript FOR statement

2004-01-09 Thread andrew . trusz
That depends on what you are using at the backend. Mostly it would involve
checking the data using regular expressions and error messages to send
back the data and a message about what wasn't completed properly before
the data is committed to the database.

The exact coding would vary somewhat depending on if you are using cold
fusion, asp, php, etc. Which one will you use so someone can provide a
tutorial reference of a sample of code?

drew

 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: JavaScript question

2004-01-09 Thread Furry, Tim
Jim wrote:
Here are some URLs which offer chromeless window scripts: 

http://www.dhtmlshock.com/window-scripts/Chromeless/default.asp
http://www.xentrik.net/javascript/chromeless.php#

Interestingly, while both examples above have width and size specs, my
MSIE 6 browser opens them full-screen. According to 
http://www.dynamicdrive.com/dynamicindex8/chromeless.htm 
The dynamic drive script, it's not MSIE changing the specs, but the
operating system affecting the code (some kind of security precaution?).

Tim responds:
Also interestingly, none of the above work on my W2K/IE6 combination.  I
get an icon in the taskbar with no control - can't close it, can't open
it, nothing's showing on the screen.  Have to kill it with Task Manager.

Tim
___ 
Tim Furry
Web Developer 
Foulston Siefkin LLP 




 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Another SCR please... :)

2004-01-09 Thread William Stewart
Hi Matt,

I would definitely move the text only link from the top right.  It was
the first thing I saw and I think its presence is too strong on your
page.  That's just my ever so humble opinion.  :)  

Other than that it looks good!  IE 6, 1024x678, 56k.

HTH,
Will 

-Original Message-
From: rudy [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 09, 2004 9:11 AM
To: [EMAIL PROTECTED]
Subject: [wdvltalk] Re: Another SCR please... :)

 can someone just check and see how it
 looks in different resolutions? 

ie6  800x600  maximized

the copy has dropped below the nav bar

the nav bar looks great -- excellent progress

needs perhaps some more line-height to space the nav items out more

there is still...




















... too much space between the testimonial quotes at the right


rudy

 . The WDVL Discussion List from WDVL.COM . 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with
the words: set WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
%%email.unsub%%

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Splash Screens

2004-01-09 Thread Gerrie Warner
I am using window that closes it's self after 5 sec.  www.jokabakeri.se
- 



 Do people still use Splash screens?  This would give the following
 kind of site map:



 |---|
 | Splash screen |
 | displays logo to  |
 | click through to  |
 | main site |
 |---|
   |
   |
 |---|
 | Home Page   |
 |---|

 This would then link off to other sites.

 Verdicts please? The company have asked for it, I'm just wondering if
 this affects traffic in any way shape of form...

 TIA,

 Matt
 --
 +--+
 |Matthew Macdonald-Wallace  |
 |The Truth Will Set you Free  |
 |http://www.truthisfreedom.org.uk/  |
 +--+
 Verbosity leads to unclear inarticulate things. George W. Bush
 November 30, 1996

  . The WDVL Discussion List from WDVL.COM . 
 To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
Send Your Posts To: [EMAIL PROTECTED]
 To set a personal password send an email to [EMAIL PROTECTED] with the
words: set WDVLTALK pw=yourpassword in the body of the email.
 To change subscription settings to the wdvltalk digest version:
 http://wdvl.internet.com/WDVL/Forum/#sub

   http://www.wdvl.com  ___

 You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to %%email.unsub%%

 To unsubscribe via postal mail, please contact us at:
 Jupitermedia Corp.
 Attn: Discussion List Management
 475 Park Avenue South
 New York, NY 10016

 Please include the email address which you have been contacted with.



 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Splash Screens

2004-01-09 Thread Amanda Birmingham
At 04:23 PM 1/7/2004 +0100, you wrote:
I am using window that closes it's self after 5 sec.  www.jokabakeri.se
The downside of this method is that anyone running a popup blocker (like me 
:) doesn't see it.  Is that ok with you?

Amanda Birmingham
Web Application Developer
 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
  Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
   http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016
Please include the email address which you have been contacted with.



[wdvltalk] Re: JavaScript question

2004-01-09 Thread Jan
Jenni,
Glad I could help.
Jan

Pace Computing Limited wrote:
Hi Jan, 

I'll try this one out. I like your little alert message.  I
don't have one like that. That might come in really handy
:)
Thanks, 

Jenni


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
  Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
   http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016
Please include the email address which you have been contacted with.



[wdvltalk] Re: Another SCR please... :)

2004-01-09 Thread Jan
I checked in Mozilla 1.5 800x600 view is set at 100%, and IE6.0 where 
the view is set to Medium. The text on the page loads very fast, but the 
bubbles and logo take about 2-3 seconds longer.
The 2 testimonials are on the left below the main info.

Same browsers at 1024x768. Mozilla: Your page is centered nicely and the 
2 testimonials are on the right side of the main info. IE 6.0, I have 
difficulty reading the 2 testimonials, and the slogan under the logo. I 
didn't try a higher resolution with IE 6.0.

Same browsers at 1152x864. Mozilla: the page looks very good, 2 
testimonials are still on the right side. The main info text is easy for 
me to read at each of the 3 resolutions. The difficult parts to read is 
the slogan under the ICT Strategies logo, can't make it out at all. Even 
though the 2 testimonials are smaller than the main info text, I can 
still read them.

Didn't even bother with 1280x1024.

I like the white background with the blue text. The design is very
professional looking.
hth,

Jan

Matthew Macdonald-Wallace wrote:

Hi all,

Can you please take a look at http://www.interactwiththe.net/ict/ for me
again? 

I've checked out the stats and it would appear the majority of people
who visit the site use IE 6.0, can someone just check and see how it
looks in different resolutions? my browsercam trial's expired and I'm
too cheap to buy one! :)
As a quick warning, the only link that currently works is Services.

Thanks in advance,

Matt


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
  Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
   http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016
Please include the email address which you have been contacted with.



[wdvltalk] Re: Newbie: Live Web Feed

2004-01-09 Thread Bankei
The basics for live webcasting are:

Connectivity:  You should have a connection on site that can handle the
bandwidth of the streams you'll be putting out plus overhead.  DSL and
cable need a lot of overhead, T1 or Dual ISDN need very little.

Video and Audio equipment:  You're all set here.

Encoder(s):  You'll need one medium powered, solid PC for every stream
(56k, 100k, 300k, etc.).  Each one needs a capture card, e.g., Osprey 200,
and streaming software, i.e., Windows Media Encoder or Real Producer Plus.

Streaming Server:  No one should attempt to administer their own Streaming
Server unless they are extremely comfortable with Web server Admin.  A lot
of companies offer this service.  Playstream is about average and very
up-front about their prices:

http://playstream.com/services/live.asp

About 98% of people who look into live streaming find it too difficult
and too expensive.  They usually end up encoded the video after the event
and offering it on demand a few days later.

On Fri, 9 Jan 2004, Janet Russeau wrote:

 I've been approached about doing live feeds of our programs and services
 for educators and students on our web site.

 I have the following questions:

 1. Is setting up the live feed easy to do?

 2. What equipment and software will I need to purchase for this? (brands
 and prices if known would be appreciated)

 3. Is there any special requirements I need to obtain from an ISP?

 4. Any other information and assistance would be greatly appreciated.

 Thanks,
 Janet Russeau

___
[EMAIL PROTECTED] - learning UNIX very slowly
SDF Public Access UNIX System - http://sdf.lonestar.org
http://www.metroencoding.com

 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Newbie: Live Web Feed

2004-01-09 Thread Janet Russeau
Thank you so much for the response. This definitely gets me going in the 
right direction.

Janet

At 06:30 PM 1/9/2004 +, you wrote:
The basics for live webcasting are:

Connectivity:  You should have a connection on site that can handle the
bandwidth of the streams you'll be putting out plus overhead.  DSL and
cable need a lot of overhead, T1 or Dual ISDN need very little.
Video and Audio equipment:  You're all set here.

Encoder(s):  You'll need one medium powered, solid PC for every stream
(56k, 100k, 300k, etc.).  Each one needs a capture card, e.g., Osprey 200,
and streaming software, i.e., Windows Media Encoder or Real Producer Plus.
Streaming Server:  No one should attempt to administer their own Streaming
Server unless they are extremely comfortable with Web server Admin.  A lot
of companies offer this service.  Playstream is about average and very
up-front about their prices:
http://playstream.com/services/live.asp

About 98% of people who look into live streaming find it too difficult
and too expensive.  They usually end up encoded the video after the event
and offering it on demand a few days later.


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
  Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
   http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016
Please include the email address which you have been contacted with.