Colin Holgate wrote:
For something I'm trying, I want to know the color of a specified pixel on the card. I haven't yet found a built in function for that, so I made one:

function getPixel x,y
  put the screenMouseLoc into ml
set the screenMouseLoc to x+the left of this stack,y+the top of this stack
  put the mouseColor into mc
  set the screenMouseLoc to ml
  return mc
end getPixel

It works really well, and quickly, so I can carry on with what I'm trying. Was there a built in way that I should have found in the help?

I asked Scott Raney for a function like that many years ago, and he replied that I should do it exactly as you are doing it now. So I guess that's the officially sanctioned method.

--
Jacqueline Landman Gay         |     [EMAIL PROTECTED]
HyperActive Software           |     http://www.hyperactivesw.com
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to