View Single Post
  #5 (permalink)  
Old 01-19-2005, 04:37 AM
SWFKit SWFKit is offline
Senior Member
 
Join Date: Dec 2002
Posts: 2,015
Default Re:targetCallLabel doesn't work when using installer

You can do this by handling an event

Code:
Menu.onUpdateItem = function (id, state)
{
    switch (id)
    {
    case "id0":
        // disable the menu item
        state.enable = false;
        break;
    }
}
Reply With Quote