To modify the width of the thumbnails, open HScroller.as file an serach for:
private static var tw:Number = 80;
change it to the value you desire.
To modify the height, simply use the properties panel and alter the height of the rectangular placeholder on the stage. You should notice that the height altering will also include the thumbnail border and the label’s block height. So if you want you thumbnail to be 100px in height and your border is 2px and the text block has 20px in height, you should put a value of 100+2+2+20 = 124px in the properties panel. You can also modify the height of the label block and the border width by opening the Thumbnail.as file and altering the coresponding variables, “bw” for border width and “lbh” for label height (every variable is commented right above it’s definition)
Hope this clears things a little bit
Adrian
|