# Need help with kirupa gallery!

**URL:** https://forum.kirupa.com/t/need-help-with-kirupa-gallery/300483
**Category:** Uncategorized
**Created:** [November 22, 2009, 6:24am UTC](https://forum.kirupa.com/t/need-help-with-kirupa-gallery/300483 "2009-11-22T06:24:03Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ndavid06](https://avatars.discourse-cdn.com/v4/letter/n/3bc359/32.png) [@ndavid06](https://forum.kirupa.com/u/ndavid06)
#### Post date: [November 22, 2009, 6:24am UTC](https://forum.kirupa.com/t/need-help-with-kirupa-gallery/300483/1 "2009-11-22T06:24:03Z")

</div>

I’m trying to modify the Kirupa gallery but instead of fading in the images like this (see bellow) which doesn’t seem to like safari, how can i modify using a tweener (ie: tweenlite, mx etc.) instead?

///  
p = 0;  
this.onEnterFrame = function() {  
filesize = picture.getBytesTotal();  
loaded = picture.getBytesLoaded();  
preloader.\_visible = true;  
if (loaded != filesize) {  
preloader.preload\_bar.\_xscale = 100\*loaded/filesize;  
} else {  
preloader.\_visible = false;  
if (picture.\_alpha\<100) {  
picture.\_alpha += 10;  
}  
};

////
