Menu

[solved] – Question 917

I need help with how to set the height of the viewing area to one pixel less
than the y-position of our dividing line and how to position the thumbCanvas thumbnail container movie clip as shown in the .swf setting its x and y properties??

Code:
import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;

var numPics:Number;
var thumbIndex:Number = 0;
var thumbRowCount:Number = 6;

var numThumbsX:Number = 0;
var numThumbsY:Number = 0;

var xSpacing:Number = 115;
var ySpacing:Number = 110;

var largePics:Array = new Array();
var thumbPics:Array = new Array();

var thumbCanvas:MovieClip = new MovieClip();
addChild(thumbCanvas);

var picCanvas:MovieClip = new MovieClip();
addChild(picCanvas);

// set the height of our viewing area to one pixel less
// than the y-position of our dividing line

// position the thumbCanvas thumbnail container movie clip as shown in the .swf
// setting its x and y properties

Expert Answer


OR


Leave a Reply

Your email address will not be published. Required fields are marked *