Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to select the id of a textArea when it's focused in

<s:TextArea id="textarea1" focusIn="selectId(event)" />

selectId(event){
   event.target.id;
}

Problem is TextArea is made up of RichEditableText so target doesn't actually refer to TextArea. I've tried event.target.parent.id but still not getting there. Anyone knows how to get to the bottom of this?

share|improve this question
5  
Did you try event.currentTarget.id? – Robusto Jun 17 '10 at 2:33
That was it, if you post it I will accept as an answer. Note, it also worked after some testing with event.target but had to add 4 parent in the middle. Not sure why, I guess that's how many it takes to get from RichEditableText to TextArea – duder Jun 17 '10 at 3:00
1  
@Robusto Why didn't you post it as an answer. @duder event.target would be the innermost item that was clicked on - on a button, it can be the text field that displays the label or a skinning component and so on. Don't rely on it here as it needn't always be 4 steps; might vary based on where you clicked. – Amarghosh Jun 17 '10 at 4:11

2 Answers

up vote 3 down vote accepted

At @Amargosh's request, I'm posting this as an answer. Try:

event.currentTarget.id
share|improve this answer
<s:TextArea id="textarea1" focusIn="selectId(event,this.textarea1)" />

private function selectId(event, item) : void
{
   // Your code to do stuff with item
}

In fact, you don't need to send the event argument at all if you aren't going to use it:

<s:TextArea id="textarea1" focusIn="selectId(this.textarea1)" />

private function selectId(item) : void
{
   // Your code to do stuff with item
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.