Regarding RunTime Revolution
Ken Ray
kray at sonsothunder.com
Wed Apr 11 11:50:42 EDT 2007
On Tue, 10 Apr 2007 13:54:01 -0700 (PDT), DAVID DEATON wrote:
> Will Someone please Tell me how to make A button i created in one of my
> applications in run-time revolution only click on The left button of
> the mouse, it
> clicks on all three buttons of the mouse i don't like that. I have Searched
> And Look on line in The Documentations A everything to figure this
> out. And I
> can find it. Please help. Thanks.
There is a parameter to the mouse messages (mouseUp, etc.) that
includes the mouse button that was clicked (see the docs on "mouseUp",
etc.). You could filter for it:
on mouseUp pBtn
if pBtn <> 1 then exit to top -- don't do anything
-- the rest of your script here
end mouseUp
> And another Thing, Is it possible to keep an application that is
> running to not show up in the Task Manager of windows. so that it
> cannot be closed?
Not that I'm aware of, but why would you want to do that?
Ken Ray
Sons of Thunder Software, Inc.
Email: kray at sonsothunder.com
Web Site: http://www.sonsothunder.com/
More information about the use-livecode
mailing list