Can you give an example of EXACTLY what you are looking for?
The RSS feed has multiple Areas, and Multiple levels...
If you can show me what you are going for, I can show you how to get there...
I'm not sure what you mean by:
only contain 1 line saying something like "3-4 + surf occasional head high."
Does that mean that you don't want to tell Where?
Such as TAMARACK, SWAMIS/CARDIFF, PACIFIC BEACH, etc...
Better yet, is there a site that you know of that has something similar to what you are looking for?
RSS feeds usually scroll, or are placed in tables...
Also, did I miss understand you above, did you Only want the items with "2-3 ft.+ - knee to chest high and poor+" or only show that part of the report for ALL items...?
Such as:
Code:
OCEANSIDE
2-3 ft.+ - knee to chest high and poor-fair
O-SIDE PIER
2-3 ft.+ - knee to chest high and poor-fair
O-SIDE PIER NS
2-3 ft.+ - knee to chest high and poor-fair
TAMARACK
2-3 ft.+ - knee to chest high and poor+
SWAMIS/CARDIFF
2-3 ft.+ - knee to chest high and poor+
DEL MAR
2-3 ft.+ - knee to chest high with occasional 4 ft. and poor+
BLACK'S
2-3 ft.+ - knee to chest high with occasional 4 ft. and fair-good
SCRIPPS
2-3 ft.+ - knee to chest high and fair -
HORSESHOES
2-3 ft.+ - knee to chest high with occasional 4 ft. and poor
WINDANSEA
2-3 ft.+ - knee to chest high with occasional 4 ft. and poor+
BIRDROCK
2-3 ft.+ - knee to chest high with occasional 4 ft. and poor
PACIFIC BEACH
2-3 ft.+ - knee to chest high and poor+
MISSION BEACH
2-3 ft.+ - knee to chest high and poor+
OCEAN BEACH
2-3 ft.+ - knee to chest high and poor
SUNSET CLIFFS
1-3 ft - ankle to waist high and poor
IMPERIAL PIER NS
2-3 ft.+ - knee to chest high and poor+
IMPERIAL PIER SS
2-3 ft.+ - knee to chest high and poor+
Here is some code to place in an HTML file: (SurfRSS.html)
Code:
<html>
<body>
<marquee width=100% height=100% scrollamount=2 direction=up loop=true>
<script language="vbscript">
set Dom=CreateObject("Microsoft.XMLDOM")
Dom.ASync = False
Dom.setProperty "SelectionLanguage", "XPath"
Dom.Load "[URL unfurl="true"]http://www.surfline.com/rss/region.cfm?alias=oceansidecam"[/URL]
For Each e In Dom.SelectNodes("//item")
sArea = e.SelectSingleNode("title").text
x = instr(1, sArea, ":")
document.write "<b>" & Left(sArea, x-1) & "</b><br/>"
document.write Mid(sArea, x + 2) & "<br/><br/>"
Next
document.write sText
</script>
</marquee>
</body>
</html>
Then simply point your iFrame at it... (myPage.html)
Code:
<html>
<body>
<table height=100%>
<col width="15%"/>
<col width="50%"/>
<col width="15%"/>
<tr height="10">
<td colspan=3><center><h1>Title</h1></center></td>
</tr>
<tr>
<td rowspan=2>
RSSFeed:<br/>
[b]<iframe [COLOR=blue]src="surfrss.html"[/color] width="200" height="300" marginheight="0" marginheight="0"></iframe>[/b]
</td>
<td>Some Text</td>
<td>Some Ad</td>
</tr>
<tr>
<td>Some Other Text</td>
<td>Some More Text</td>
</tr>
<tr>
<td colspan="3" align="center">Closing Footer</td>
</tr>
</table>
</body>
</html>
Hope This Helps...
Visit My Site
PROGRAMMER:
Red-eyed, mumbling mammal capable of conversing with inanimate objects.