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());
link|improve this question

add that as an answer to your own question, and mark it best answer (after a few days you can). – Topener Dec 26 '11 at 23:45
I could also add it for you so you can close the question right away – Topener Dec 26 '11 at 23:45
feedback

1 Answer

up vote 1 down vote accepted

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());
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.