Quote:
Originally Posted by jehrlich616
I bought your gallery and i love it but i am having trouble
positioning it specifically on my stage, it is on my stage, but in the
top left corner, and i want it to be lower right corner, and I want to
make it a bit smaller as well, how do I go about this?
|
Hello, in main.as you have
_root["bigImage"]._y = 2;
_root["bigImage"]._x = 2; (this is the position for the big picture)
and...
_root["thumbHolder"]._y = _root["bigImage"]._y + 15;
_root["thumbHolder"]._x = _root["bigImage"]._width-5; (this is the position for the scroller), please modify these values.
If you want to make it smaller you should understand that this gallery is fixed size... you could find a workaround this... something like _xscale and _yscale, _root["bigImage"]._xscale= 100; _root["bigImage"]._yscale= 100; _root["thumbHolder"]._xscale = 100; _root["thumbHolder"]._yscale = 100; this is the current scalling of the gallery, you could insert these into main.as in the constructor. Remember this is just a workaround... I can't guarantee that your gallery will look good...