I have created an option menu for my app like this:
var activity = Ti.Android.currentActivity;
activity.onCreateOptionsMenu = function(e){
var menu = e.menu;
var reply = menu.add({});
var share = menu.add({});
var facebook = menu.add({});
reply.setIcon('mail_reply.png');
share.setIcon('mail-replied.png');
facebook.setIcon('facebook.png');
reply.addEventListener('click', emailReply());
share.addEventListener('click', emailPublish());
facebook.addEventListener('click', FBpublish());
}
the problem is, when I press the options button on my device, all the events trigger at once. after discarding them, the menu comes up but all the events won't fire anymore. is it because I added empty objects? I don't want them to have a title and I couldn't find a default empty menu item to add.
thanks for all the help... happy Xmas/Hanuka/Festivus
**********update****************
found the answer. apparently adding the parentesis to the function name runs the function automatically. i should've wrote:
reply.addEventListener('click', emailReply);
instead of:
reply.addEventListener('click', emailReply());