Hi everyone,
I’ve been having some problems with “beginBitmapFill”; I simply want to use it to draw a single, un-tiled image at a certain point on the screen, like so:
graphics.beginBitmapFill(bitmap, null, false, false);
graphics.drawRect(100, 100, test_image.width, test_image.height);
graphics.endFill();
The problem is that if you set the “tile” value in beginBitmapFill to false, then it will only draw the image once, at (0, 0). Is there anyway to offset the drawing of the image to a specific point (in my case (100, 100))? Thanks for reading, hope it’s not too much of a lame question!
Cheers,
Mike.