Search found 4 matches

by roeg11
Fri Jul 16, 2010 12:36 pm
Forum: Multimedia
Topic: image graphic picture??
Replies: 2
Views: 4707

image graphic picture??

Forgive a posting that shows that I"ve not read and studied all the documentation for RunRev Studio.

But the subject line has my question: what's the difference between those three terms?

I'm trying to build a stack that imports a little BW drawing on each page; and I can import it using "import ...
by roeg11
Wed Aug 05, 2009 7:03 pm
Forum: Mac OS
Topic: no mouseup message passed
Replies: 3
Views: 5005

Dear roeg11,

Why don't you simply put the syntax from the mouseUp handler at the end of the mouseDown handler? That will work for sure.

Best regards,

Mark

funny you should suggest that, that's exactly what I did with something like "send mouseup to cd btn...." and it works every time now! and ...
by roeg11
Wed Aug 05, 2009 3:22 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: flushEvents("mouseUp")
Replies: 4
Views: 4710

(sorry for the crosslisting--but my problem relates, maybe)

sometimes the mouseup message doesn't happen. I'm clicking and dragging and evaluating the new location on mouseup. But sometimes (I haven't seen a pattern) the mouseup doesn't appear in the message watcher and the location doesn't get ...
by roeg11
Wed Aug 05, 2009 2:37 pm
Forum: Mac OS
Topic: no mouseup message passed
Replies: 3
Views: 5005

no mouseup message passed

I'm building a very simple little program for language learning called a "cloze." In it I ask the user to drag and drop a button into a sentence that has a blank. The button has the script :

on mousedown
repeat while the mouse is down
set the loc of card button "dragndrop" to the mouseloc
end ...