WinShowMenu
From Wiki
| This article is written by Konrad, thus using rather nonstandard English:) |
WinShowMenu (DNM Script function) http://www.youadsite.com/network/index.php?p=blogs/viewstory/23967 http://www.youadsite.com/network/index.php?p=blogs/viewstory/23967 free dating site
http://group.ghssvalayam.com/blogs/viewstory/11908 http://group.ghssvalayam.com/blogs/viewstory/11908 free dating married
[edit]
description
Shows a menu (context menu) based on given array of commands.
Returns chosen string or "" if user cancelled.
Examples:
//let's show three menu commands (with a separator - the third array element) var $ar=Array("some command 1","some command 2","","some command 3"); var $sChosen=WinShowMenu($ar); MessageBox($sChosen);
//another example, using flags like :checked: or :grayed: var $ar2=Array(":checked:some command 1",":grayed:some command 2","","some command 3"); var $sChosen=WinShowMenu($ar2); MessageBox($sChosen);
