On Tue, 16 Dec 2008 13:28:01 -0000, "majesticartz" <[email protected]> wrote:
>Greetings, I'm trying to accomplish a COnditionally shown bar based on >two parameters. Active Window and Mouse Position. > >(=acdsee) & (ymouse>10) > >I'm getting a sytax error when I test this expression. Help You are mixing different types of terms. The first is only valid in a caption list, the second is a general logical expression. You used & which is the bitwise and operator, you probably want to use && which is the logical and operator. Where are you using the expression? Are you trying to construct a caption list or a logical expression? -- Carroll Robbins
