Below is a link to check out a flash form I'm experementing with and the code I'm using to create it. My question concerns the scrollbar display. Notice when you load my form that there are two scrollbars. I don't understand why and short of removing the height specification for the PAGE, I can't make the second (outside bar) go away. I've tried messing with all of the size values, but haven't found any combination that helped. Anyone have any ideas???
Thanks, Ferg See the result of this code here: http://www.fergusonhouse.com/news.cfm **Please be patient if it's slow, as this incredibly small form sometimes inexplicably takes FOREVER to load.** <cffunction "TranslateRSSItems" (which returns a query object with 20 records)...> <cfform name="news" action="index.cfm" enctype="multipart/form-data" format="Flash" method="POST" width="350" height="325"> <cfformgroup type="ACCORDION" height="250" width="275"> <!--- all comms elements here ---> <cfformgroup type="PAGE" label="newsfeeds" height="225"> <!--- this tab is for the Private Message list ---> <cfhttp url="http://rss.news.yahoo.com/rss/mideast" method="GET" resolveurl="true" timeout="6000"> <cfif cfhttp.fileContent is not "Connection Failure"> <cfset rssFeed = TranslateRSSItems(cfhttp.FileContent)> <cfloop query="rssFeed"> <!-- only output at most 5 rows ---> <cfif currentRow lte 5> <cfoutput> <cfformitem type="html"><font color="##ff0000">#title#</font><br>#left(description, 100)#<br><a href="#link#" target="_blank"><font color="##0000ff" size="-2">::read more::</font> </a></cfformitem> <cfformitem type="hrule"></cfformitem> </cfoutput> <cfelse> <cfbreak> </cfif> </cfloop> </cfif> </cfformgroup> <cfformgroup type="PAGE" label="announcements"> <!--- this tab is for the Chat ---> </cfformgroup> <cfformgroup type="PAGE" label="upcomingevents"> <!--- this tab is for the Disc. Board latest entries list ---> </cfformgroup> </cfformgroup> </cfform> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209391 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

