>From your message i take it you mean you want to change the drag proxy image
>(for something you are already dragging) and not the cursor?
in this case you need to look at DragSource.
something like this:
var dragInitiator:Image=Image(event.currentTarget);
var ds:DragSource = new DragSource();
ds.addData(dragInitiator, "img");
DragManager.doDrag(dragInitiator, ds, event);
see the help under Drag and rop examples. there are also other posts on this in
flexcoders, but this only applies if you are indeed changing the dragproxy and
not the cursor. if it is the cursor you want then as the previous reply says
you need to look DragManager showFeedback but I'll admit i did not have a whole
lot of luck with this myself.
hope this helps
joss
--- In [email protected], "bhaq1972" <mbha...@...> wrote:
>
> During a dragOver event I want to manually show the green plus or red cross
> icon on the dragProxy image. How do I do that?
>
> thanks
>