Comments on: Open Source Flex Component: PopUpThumbnail https://joshblog.net/2008/12/04/open-source-flex-component-popupthumbnail/ Archive of older blog posts written by Josh Tynjala about Flash, Flex, and ActionScript Wed, 26 Jun 2013 02:52:46 +0000 hourly 1 https://wordpress.org/?v=4.9.9 By: Josh Tynjala https://joshblog.net/2008/12/04/open-source-flex-component-popupthumbnail/#comment-1175 Thu, 15 Apr 2010 20:24:13 +0000 http://joshblog.net/?p=439#comment-1175 Thanks, CoCoChannel. I don’t think I ever tried double-clicking.

]]>
By: CoCoChannel https://joshblog.net/2008/12/04/open-source-flex-component-popupthumbnail/#comment-1174 Thu, 15 Apr 2010 18:51:46 +0000 http://joshblog.net/?p=439#comment-1174 Cool !!
But I found 1 bug whith the double click:

in systemManagerClickHandler method, I think problem here:

this.popUpEffect.removeEventListener(EffectEvent.EFFECT_END, growEndHandler);
this.popUpEffect.stop();

I change:

this.popUpEffect.stop();
this.popUpEffect.removeEventListener(EffectEvent.EFFECT_END, growEndHandler);

It worked!!!

]]>
By: Open Source Flex Component: PopUpInitializer - Josh Talks Flash https://joshblog.net/2008/12/04/open-source-flex-component-popupthumbnail/#comment-1173 Thu, 25 Feb 2010 00:59:50 +0000 http://joshblog.net/?p=439#comment-1173 […] of the common documentation with my other “Flex Toolbox” controls like ZoomFrame and PopUpThumbnail. As with most of my other open source code, PopUpInitializer is available under the terms of an […]

]]>
By: Chirox https://joshblog.net/2008/12/04/open-source-flex-component-popupthumbnail/#comment-1172 Sat, 19 Dec 2009 09:50:06 +0000 http://joshblog.net/?p=439#comment-1172 Thanks a lot.
But i found 1 problem:
My Demo i use only one PopUpThumbnail and one button.
Click event of button change source and thumbnailSource then thumbnail changed but when i click on thumbnail source not change.

I think problem here:

if(this.thumbnailSourceChanged)	{
    super.source = this._thumbnailSource;
    this.thumbnailSourceChanged = false;
}

I change:

if(this.thumbnailSourceChanged)	{
    super.source = this._thumbnailSource;
    this.thumbnailSourceChanged = false;
    this.loadPopUpContent();
}

It worked!!!

]]>
By: handoyo https://joshblog.net/2008/12/04/open-source-flex-component-popupthumbnail/#comment-1171 Thu, 16 Jul 2009 03:04:19 +0000 http://joshblog.net/?p=439#comment-1171 Thanks a lot…

]]>
By: Flickr Flip Book | tarasnovak.com https://joshblog.net/2008/12/04/open-source-flex-component-popupthumbnail/#comment-1170 Tue, 06 Jan 2009 22:56:42 +0000 http://joshblog.net/?p=439#comment-1170 […] used Josh’s PopUpThumbnail component for this one, with minor adjustments to hide popup image on slideshow playback and adding […]

]]>
By: Another hit… | tarasnovak.com https://joshblog.net/2008/12/04/open-source-flex-component-popupthumbnail/#comment-1169 Fri, 19 Dec 2008 18:21:30 +0000 http://joshblog.net/?p=439#comment-1169 […] really liked the Popup Thumbnail component Josh posted recently with the Lightbox popup effect. I think that will make my large photo view […]

]]>
By: Michael van Leest https://joshblog.net/2008/12/04/open-source-flex-component-popupthumbnail/#comment-1168 Mon, 08 Dec 2008 09:51:24 +0000 http://joshblog.net/?p=439#comment-1168 Great stuff! I’ve created a similar component in the past with Flex 2, but not as pretty as yours!

Keep up the great work!

]]>
By: Frank HT https://joshblog.net/2008/12/04/open-source-flex-component-popupthumbnail/#comment-1167 Fri, 05 Dec 2008 07:46:35 +0000 http://joshblog.net/?p=439#comment-1167 Looks very slick, nicely done.

Having used lightbox myself, what you’ve done has definitely taken it to the next level (can only imagine it being quite painful trying to replicate what you’ve done in js, but hey that’s not your problem 🙂 ).

Great stuff.

]]>