hi folks, i'm building this app (a video sharing app) and am having issues with layout..
app URL: http://demo.rohanpinto.com if you notice the right TileWindow titled "Desktop Control" i have an accordion which loads data from my backend webservice... here's the issue: in the control titled "Video Channels" i can't seem to get the vertical scrollbar to work.. (i need to DISABLE the horizontal scrollbar and enable just the vertical scrollbar) in the desktopcontrol mxml I have the following: <mx:Canvas scroll="false" verticalScrollPolicy="off" horizontalScrollPolicy="off" label="Video Channels" width="160"> <ns1:videochannels/> </mx:Canvas> and in videochannels mxml i have the following: <mx:VBox scroll="true" verticalScrollPolicy="on" horizontalScrollPolicy="off" width="160"> <mx:Repeater id="rp2" dataProvider="{videoFeed.channel}"> <com:Hyperlink launchUrl="true" colorNormal="#0000FF" colorHover="#00FF00" linkText="{rp2.currentItem.name}" dataUrl="/channels/{rp2.currentItem.id}/" /> </mx:Repeater> </mx:VBox> could somone tell me what i'm doing wrong? Rohan Pinto http://konkan.tv

