Quote:
Originally Posted by dmann
Hi
I am using this gallery in another flash file..
How do i remove the background color.. i want to have my flash design in the background?
And the placement too.. i want to place it somewhere on the top.. may be few pixels down the top.. how do i change the placement??
|
Hello, sorry about the delay, I was really busy. Well, the background color can be easily removed in your .fla, you must change the scene's color and that's it.
In order to change the placement you must go to main.as and play with these for a bit:
_root["bigImage"]._y = 2;
_root["bigImage"]._x = 2;
_root["thumbHolder"]._y = _root["bigImage"]._y + 15;
_root["thumbHolder"]._x = _root["bigImage"]._width-5;
The components can be moved anywhere you want.
