From: Aldo Santillo on
Hi all,

How can I get the item that was rolled over with the

"on itemRollOver" handle?

Documentation talks about a index property, which I cannot get.

Thanks


From: donaldhines on
Not quite sure what your looking for. Here's an example. Hope it helps

on exitFrame me
set currentSprite = the rollover
case currentSprite of
myMember=sprite(currentSprite).member

1: myText=member(myMember).text
--or else do something based on selection 1
2: myText=member(myMember).text
--or else do something based on selection 2
3.myText=member(myMember).text
--or else do something based on selection 1
otherwise:
--do nothing
end case

go the frame
end

From: Aldo Santillo on
Thankyou Donald,

Actually I was talking about the tree component (a flash object). I wanted
to find out how I could get the index of the item I was rolling over. I
found the answer at:
http://www.adobe.com/devnet/director/articles/flash_in_directormx2004_print.html

best,

Aldo