Viewing 2 posts - 1 through 2 (of 2 total)
- AuthorPosts
- February 22, 2012 at 11:55 am #10060LTTParticipant
[VBScript]
popupmenu.Add strText, id, flags
id can be a negative integer.
But in:
strText = popupmenu.GetText( id )
“Unspecified error” occured if id = -1.
Is this normal?
February 22, 2012 at 12:11 pm #10061StefanParticipantHi LTT,
why can you get negative numbers?
I think you self add this numbers to your menu
and take care to use positive nbr only?Here is my PopUp menu example (click)
And in your code you can check for negative nbr and just “break;”
OTOH:
MyMenu.Add(“Execute Function &one”,-1);
gives me no error on EmEditor 11.0.3, portable, XP SP3
It just do nothing, or, if the case-label exists, it works with “-1” too.EDIT:
Ah, now i see…alert( MyMenu.GetText( -1 ) );
did not work for me too. Unknown error.alert( MyMenu.GetText( 2 ) );
works. - AuthorPosts
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.