I have an image (mx) and i want to get the uint of the pixel that was clicked.
Any ideas?
|
1
|
I have an image (mx) and i want to get the uint of the pixel that was clicked. Any ideas?
|
|||
|
|
|
|
A few minutes on the BitmapData LiveDoc Page will take you where you need to go. Once you have your image loaded into a Bitmap variable, you can access its BitmapData property. Add a Mouse Click Event Listener to the image and then use BitmapData::getPixel. The example for getPixel shows how to convert the uint response to an rgb hex code. Here's a modification of the Example given on the BitmapData page that worked for me (using mxmlc - YMMV):
|
|||
|
|
|
|
Here's an even simpler implementation. All you do is take a snapshot of the stage using the draw() method of bitmapData, then use getPixel() on the pixel under the mouse. The advantage of this is that you can sample anything that's been drawn to the stage, not just a given bitmap.
Hope this is helpfull! |
||
|
|