messages watcher in a standalone

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
jmburnod
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 2729
Joined: Sat Dec 22, 2007 5:35 pm
Contact:

messages watcher in a standalone

Post by jmburnod » Wed Dec 07, 2011 11:05 am

Hi All,

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

Jean-Marc
https://alternatic.ch

Klaus
Posts: 14199
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: messages watcher in a standalone

Post by Klaus » Wed Dec 07, 2011 11:59 am

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

jmburnod
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 2729
Joined: Sat Dec 22, 2007 5:35 pm
Contact:

Re: messages watcher in a standalone

Post by jmburnod » Wed Dec 07, 2011 1:13 pm

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
https://alternatic.ch

Klaus
Posts: 14199
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: messages watcher in a standalone

Post by Klaus » Wed Dec 07, 2011 1:24 pm

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

jmburnod
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 2729
Joined: Sat Dec 22, 2007 5:35 pm
Contact:

Re: messages watcher in a standalone

Post by jmburnod » Wed Dec 07, 2011 1:36 pm

Vielen Dank Klaus,

A doubt less

Best
Jean-Marc
https://alternatic.ch

Post Reply