If you'll send me the code in the TranslateRSSItems function, I will play with it a little.
Mike -----Original Message----- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 8:58 AM To: CF-Talk Subject: flash forms accordian scrollbars 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> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209394 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=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

