vote up 0 vote down star

Hi!
I would like to make some kind of thumbnail with capturing BitmapData or ImageSnapshot of some UNINITIALIZED components in my Flex application.
Is it possible?

Thanks in advance!
m.

flag

2 Answers

vote up 2 vote down check

No. I believe you will end up getting null references if the components are not initialized (The graphics and stuff will all be uninitialized). You can simply initialize the components but make them hidden and take a thumbnail.

link|flag
Thanks for answer. But let me ask you, what if I actually have an instance of component in my application but it is not yet 'rendered'? It is in some custom container which doesn't 'render' its children until user ask for specific child... Hmmm, I hope you understand what I mean =) Thanks! – bomb_on Oct 21 at 9:28
Hmmm... maybe you could have it render some fake children and thumbnail that? Or you could replace the children part of it with an image as you take the thumbnail. – CookieOfFortune Oct 21 at 14:12
bomb on you would be best served by adding it to the display list but out of view, such as x = 10000 and y = 10000... that would probably do it. I'd be surprised if it didn't. – Jasconius Oct 21 at 14:35
@Jasconius You think just to delete that line tempHolder.visible = false and put him to x=something_out_of_stage and y=something_out_of_stage? Hmmm, I will try it and report back =) Thanks! – bomb_on Oct 21 at 14:40
vote up 0 vote down

@CookieOfFortune Thanks for help man =)
I tried to make something like this in my main application

private function createThumbs():void{

    thumbsData = new ArrayCollection();

    tempHolder.addChild(_32);

    var bm:BitmapData = getBitmapData(tempHolder);
    var img:Image = new Image();
    img.source = new Bitmap(bm);
    thumbsData.addItem(img);

    tempHolder.visible = false;

    testImg.source = new Bitmap(bm);
}

_32 is my component which I would like to take thumbnail. tempHolder is Canvas, testImg is Image class. tempHolder displays what I want to capture, while testImg in my case is always white...
I don't understand it =)

Thanks one more time ;-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.