--- In [email protected], "dleidinger" <[EMAIL PROTECTED]> wrote: > > I would like to determine the contents of the more-command-box of an > commandlist-item. In the help-file i can find: > cl.GetLeftCmd(clname, clitem, i)
>From the help: "cl.GetLeftCmd(clname, clitem, i) or hitem.GetLeftCmd(i) Returns the ith command name from the Left Command of the specified command list. Returns the first command if i is 0 or 1, the second if it is two, and so on. You use cl.GetRightCmd for the Right command and cl.GetMiddleCmd for the middle command. " Use a loop to sequence through all the commands 1... until cl.getleftcmd returns "". It does not distinguish "more commands"; it just returns the commands one by one. After all, the more commands could contain more than one command.
