Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!apple!bionet!ig!arizona!sandra From: sandra@arizona.edu (Sandy Miller) Newsgroups: comp.windows.x Subject: Help with MenuPopup and MenuPopdown Keywords: Athena Widgets Message-ID: <11360@megaron.arizona.edu> Date: 6 Jun 89 00:51:21 GMT Organization: U of Arizona CS Dept, Tucson Lines: 29 I am trying to use the translation actions MenuPopup and MenuPopdown in an application I am designing. According to the X Toolkit Intrinsics - C Language Interface manual, "MenuPopup is known to the translation manager" and "The Intrinsics register an action table for MenuPopup and MenuPopdown as part of X Toolkit initialization." However, when I use these names on the right-hand side of a translation table, I get the following message when the window is mapped: "X Toolkit Warning: Actions not found: MenuPopup, MenuPopdown: Can someone who has used these translation actions successfully tell me what I am doing wrong? Following are the pertinant code sections: static String translations = "\ : MenuPopup(shellname)\n\ : MenuPopdown(shellname)\ "; . . . trans_table = XtParseTranslationTable(translations); . . . XtOverrideTranslations(shell, trans_table); Thank you for any help.