RE: [flexcoders] Binding problems after update to 3.1

2008-11-11 Thread Mike Pearce
Of Mike Pearce Sent: Tuesday, November 11, 2008 3:43 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Binding problems after update to 3.0.1 After setting up FB to use the 3.0 SDK everything is fine again. Would be interested to hear if anyone else has experienced this issue

[flexcoders] Binding problems after update to 3.0.1

2008-11-10 Thread Mike Pearce
Hi all, Anyone else run into issues after installing the 3.0.1 update? Some simple bindings are no longer working in one of my projects. If I compile on another machine that has not been updated, the project works fine. Anyone got any info on this? Or know how to uninstall the update?

RE: [flexcoders] Binding problems after update to 3.0.1

2008-11-10 Thread Mike Pearce
After setting up FB to use the 3.0 SDK everything is fine again. Would be interested to hear if anyone else has experienced this issue with the 3.1 SDK. Cheers, Mike -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Pearce Sent: Tuesday

[flexcoders] Manually scroll a list component

2008-09-24 Thread Mike Pearce
Hi list, Been bashing away trying to remove the scrollbar from a HorizontalList so I can instead use just a forward and back button. Not having a lot of luck. Has anyone done this before? I've extended the HorizontalList class in the hope of using some of the protected methods

RE: [flexcoders] Manually scroll a list component

2008-09-24 Thread Mike Pearce
function forward():void { tl.selectedIndex += 1; } ]] /mx:Script mx:Button label= click=forward() / mx:HorizontalList id=tl dataProvider={TileListdp} width=500 horizontalScrollPolicy=off itemRenderer=mx.controls.Button / /mx:Application - Original Message - From: Mike Pearce mailto

RE: [flexcoders] Manually scroll a list component (solved)

2008-09-24 Thread Mike Pearce
Thanks Paul, That's _almost_ what I'm after, though it doesn't quite scroll as you would expect a next/previous button to (only scrolls if the chosen index is offscreen) Knew it would have to be something ridiculously simple. Just found: horizontalScrollPosition = theIndex; There's

RE: [flexcoders] Repeater Component

2008-08-27 Thread Mike Pearce
Had a similar issue. The trick is to use {index of currentItem} and not currentIndex, as currentIdex will fail when used with your secondary data source. Try this (just an example): Assumes your have * dp1 - your primary data source (collection) * dp2 - your secondary data

[flexcoders] Drag and drop steals all mouse events

2008-07-24 Thread Mike Pearce
Ok, so I guess this is fair enough. But what happens when you need to know the xmouse and ymouse position during the drag operation? Can anyone help out here? There _has_ to be a way to do this. I need to provide visual feedback in my component that requires knowing the mouse's

RE: [flexcoders] Drag and drop steals all mouse events

2008-07-24 Thread Mike Pearce
DragOver.. Have no idea how I missed it! Thanks Kenneth =)

[flexcoders] captureEndValues() not working with percentage width

2008-07-15 Thread Mike Pearce
Hi list, Anyone come across this before? I have a component that needs to re-arrange its children explicitly when it gets resized, instead of letting Flex handle it. I'm listening for the effectStart event where I check for the Resize effect. I need to pass the widthTo property to