--- In [email protected], "dleidinger" <dleidin...@...> wrote:
>
>
> local l_han_keep = win.handle("active")
> local l_han_keep = l_han_keep ++ "," ++ win.owner(l_han_keep)
> local l_han_keep = l_han_keep ++ "," ++ win.handle("=opera")
> local l_han_rest = win.handlelist("~" ++ l_han_keep)
>
Just wanted to mention the easier and shorter ++= operation, and that variables
need be declared only once; so the following is equivalent to the code above:
local l_han_keep, l_han_rest
l_han_keep = win.handle("active")
l_han_keep ++= "," ++ win.owner(l_han_keep)
l_han_keep ++= "," ++ win.owner("=opera")
l_han_rest = win.handlelist("~" ++ l_han_keep)
Regards,
Sheri