in my screen there are 3 managers h1 h2 bmpf = new BitmapField
added in order like this as
backgroundmanager.add(h1)
backgroundmanager.add(bmpf)
backgroundmanager.add(h2)
add(background manager);
protected boolesn navigationClick()
{
int index1 = h1.getFieldWithFocusIndex();
int index2 = h2.getFieldWithFocusIndex();
return true;
}
mow i get the focus index of all focussable fields in managers h1 and h2
but i cant get index of the bitnmapfield on focus i need to execute some code on its click
what to do