OK, That helped a little bit, I'm now doing this on rollOver "var
styleSheet:CSSStyleDeclaration =
StyleManager.getStyleDeclaration("DragManager");
styleSheet.setStyle("moveCursor", grabbingCursor);
CursorManager.setCursor(grabCursor,CursorManagerPriority.LOW);
This is giving me the correct rollover and correct drag, but if I try to add
any function to rollOut it screws up again, so now I'm stuck with the
grabCursor. It seems like when I set a rollOut on the dataGrid it's firing for
each row, same with mouseOut, is there any way to avoid that?
~Thanks
--- In [email protected], Chris <zomgfore...@...> wrote:
>
> Just a thought, as I haven't tried the method you described. What about
> setting the styles of the cursor on mouse down?
>
> var styleSheet:CSSStyleDeclaration =
> StyleManager.getStyleDeclaration("DragManager");
> styleSheet.setStyle("moveCursor", grabCursor);
>
> or
>
> styleSheet.setStyle("copyCursor", grabCursor);
>
> And you could set it back on mouse up. Just a thought because maybe
> DragManager is setting things back to what it has set in its styles.