Hi i have two clutter_actors . when i shift the focus from actor_1 to actor_2 for the first time it works. but later it does not shift back. I use the following statements.

clutter_stage_set_key_focus (CLUTTER_STAGE(stage), actor_2);
g_signal_connect (actor_1, "key-press-event", G_CALLBACK (button_key_press), NULL);
clutter_actor_set_reactive (actor_2, TRUE);

Am I missing anything ?

link|improve this question

48% accept rate
Your question is not quite clear. Do you mean when you run the application and change focus through inputs, the focus does not change? Programmatically what ever piece of code you have shared, sets the focus to actor_2. Also is actor_1 in g_signal_connect a typo? – another.anon.coward Nov 20 '11 at 17:52
the above code only shifts the focus to actor_2. The code is just to show that i use these many steps to shift the focus. My question is what extra should i do to put the focus on an actor which already had the focus before ? – northlondoner Nov 22 '11 at 10:17
feedback

1 Answer

up vote 0 down vote accepted

I solved it.

It was very easy. Its the same code i have used which i have given in the question.

Actually i was giving the key focus to actor_2 when i wanted to shift the focus from actor_2 to actor_1 . It was a logical error from my side.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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