Page 1 of 1

messages watcher in a standalone

Posted: Wed Dec 07, 2011 11:05 am
by jmburnod
Hi All,

What is the best way to have a messages watcher in a standalone ?

Jean-Marc

Re: messages watcher in a standalone

Posted: Wed Dec 07, 2011 11:59 am
by Klaus
Bonjour Jean-Marc,

insert a frontscript that catches ALL possible events and then passes them.
Like this:

Code: Select all

on mouseup
  put "mouseup" && the millisecs & CR after fld "eventlog" of cd X
  pass mouseup
end mouseup

on mousemove 
...
etc..
...
Best

Klaus

Re: messages watcher in a standalone

Posted: Wed Dec 07, 2011 1:13 pm
by jmburnod
Guten Tag Klaus,

Danke noch einmal
Ok. I'll do that
No way to use the messages watcher stack from a standalone ?


Best

Jean-Marc

Re: messages watcher in a standalone

Posted: Wed Dec 07, 2011 1:24 pm
by Klaus
Bonjour Jean-Marc,
jmburnod wrote:No way to use the messages watcher stack from a standalone ?
If you cannot select this in the "standalone inclusions" then it will be very difficult to extract
not only that little stack but all the scripts that LiveCode uses to "feed" it!


Best

Klaus

Re: messages watcher in a standalone

Posted: Wed Dec 07, 2011 1:36 pm
by jmburnod
Vielen Dank Klaus,

A doubt less

Best
Jean-Marc