change MSN weather to centigrade

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I change the MSN weather display of the automated weblink generated
in Frontpage to show Centigrade instead of Fahrenheit?

In FrontPage while in Design select Insert - Web Components -MSNBC
Components -- Weather Forecast. Code automatically generated for chosen
city only for display in Fahrenheit. Presumable you must edit manually?
 
I know of no way to do that.
That said... you could add a conversion form below it.

<FORM>
<FONT FACE="ARIAL,HELVETICA" SIZE=2><B>Conversions</B> - enter a number in
either field, then click outside the text box<BR>
<FONT FACE="ARIAL,HELVETICA" SIZE=2><B>Temperature</B>&nbsp;&nbsp;
F:<INPUT type="text" name="F" value="" SIZE="15"
onChange="eval('C.value = ' + this.form.C_expr.value)">
<INPUT type="hidden" name="F_expr" value="(Math.round(((212-32)/100 *
C.value + 32)*100))/100 ">
C:<INPUT type="text" name="C" value="" SIZE="15"
onChange="eval('F.value = ' + this.form.F_expr.value)">
<INPUT type="hidden" name="C_expr" value="(Math.round((100/(212-32) *
(F.value - 32))*100))/100 ">
<INPUT type=reset name=reset value=reset>
</FORM>

That is one that I have use in the past works good.
http://www.xmas-i-am.com/test/temp_conversion.htm

John Malone
==================
| How do I change the MSN weather display of the automated weblink generated
| in Frontpage to show Centigrade instead of Fahrenheit?
|
| In FrontPage while in Design select Insert - Web Components -MSNBC
| Components -- Weather Forecast. Code automatically generated for chosen
| city only for display in Fahrenheit. Presumable you must edit manually?
 
Back
Top