You are probably going to have to monkeypatch Seb's component. Adding:
_shape.useHandCursor = true; to line 166 of CoverPlane.as seems to go somewhat towards the functionality you need. Note that you will need to download the source from http://www.sebastiaanholtrop.com/sebcoverflowprojectpage . Don't use the source from the demo page as this appears to be older than the source at the link above. HTH. Steve --- In [email protected], "fotis.chatzinikos" <fotis.chatzini...@...> wrote: > > Hello all, > > I am trying to do what the subject suggests, ie enable the hand cursor > when a user mouse overs an item/picture in Seb's CoverFlow component. > > Any ideas? > > TIA, > Fotis > > PS: I extended It to provide a new event coverClicked, because the > click event did not fire every time and i needed to catch a click on > any cover not just the selected one (selectedCoverClicked). If anybody > is interested the following addition are needed: > > SebCoverFlow.as > > //just after the imports on top of the file: > > [Event(name="coverClicked", type="flash.events.Event")] > > In function _coverClickedHandler, add the following (@ the bottom/last > line): > > this.dispatchEvent(new Event("coverClicked")) ; >

