> Is there a way to script powerpro to send windows normal wheel
click for
> certain windows. Maybe like:
> If(win.exename(winhandle) == "soffice")
> Send_Normal_Scroll_Wheel_Event_To_Window
Possibly using win.sendmessage to send the wm_mousewheel message
might work.
> On a side note:
> Is there a way to check the transparency level of a window? Like:
> win.gettrans("under"") or something?
No. There does not seem to be any way to do this even in the
Windows API (if you find one, you could use dll plugin).
> And lastly, is there a way to reliably tell that the mouse is over
the
> desktop?
> I'm currently using:
> If((winhandle.clientwidth == xscreen) and (winhandle.clientheight
==
> yscreen) and (winhandle.class == "Progman"))Do
I usually just check that the window class is progman.