Difference between revisions of "Gallery.as"
m |
m |
||
| Line 1: | Line 1: | ||
| − | |||
layer = 99999; | layer = 99999; | ||
| Line 27: | Line 26: | ||
count = 0; | count = 0; | ||
| − | for ( | + | for ( y = 0; y < maxRows; y++) { |
| − | for ( | + | for ( x = 0; x < maxColumns; x++) { |
| + | |||
var temp = new thumb( _root, layer--, thumbPath + pic[count++], x * (100+thumbSpacing), y * (100+thumbSpacing)); | var temp = new thumb( _root, layer--, thumbPath + pic[count++], x * (100+thumbSpacing), y * (100+thumbSpacing)); | ||
} | } | ||
Revision as of 02:58, 11 April 2006
layer = 99999;
// paths in webspace for image access imageRoot = "/w/angela-images"; thumbPath = imageRoot + "/small"; imagePath = imageRoot + "/big";
// gallery metrics maxColumns = 3; maxRows = 4; thumbSpacing = 10;
// list of images // TODO get this from socket or GET var pic = new Array(); pic.push( "/purple.jpg"); pic.push( "/purple.jpg"); pic.push( "/purple.jpg"); pic.push( "/purple.jpg"); pic.push( "/purple.jpg"); pic.push( "/purple.jpg"); pic.push( "/purple.jpg"); pic.push( "/purple.jpg"); pic.push( "/purple.jpg");
count = 0;
for ( y = 0; y < maxRows; y++) { for ( x = 0; x < maxColumns; x++) {
var temp = new thumb( _root, layer--, thumbPath + pic[count++], x * (100+thumbSpacing), y * (100+thumbSpacing)); }
}
function thumb( parentMovieClip, layer, imageUrl, x, y ) {
var name = 'thumb'+layer; parentMovieClip.createEmptyMovieClip( name, layer ); this.thumb = parentMovieClip[name]; this.thumb.loadMovie( imageUrl ); this.thumb._x = x; this.thumb._y = y;
this.thumb.onRollOver = function() {
this.thumb._alpha = 60;
};
this.thumb.onRollOut = function() {
this.thumb._alpha = 100;
};
}
//something = new thumb( _root, layer--, "/w/angela-images/small/purple.jpg", 10, 10 );
// per-frame function function reduce() { }



