Featured FLA
» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden
Featured Site
» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.
'
Line Tutorial Page Two
Now that we have initialized our variables, let's start calculating
//First we check if the x and y coordinates of our points are the same
//If both points have identical x and y coordinates
// then they are in the same spot and we no longer have a line
// we need to 'clear' our line so that we
// do not try to draw a line that does not exist!
{
drawLineInThisClip.clear();
}
else
{
//first: clear last rendering of line before redrawing
//If you didn't clear you would leave a trail of lines
drawLineInThisClip.clear();
//Set the lineStyle of our lines based on the variables we initialized
//
at the top of our function
drawLineInThisClip.lineStyle(lineThickNess,lineRGB,lineAlpa, true ,'normal','round', 'miter');
// If the slope is Infinity or -Infinity, it's a vertical line
if(_slope == Infinity || _slope == -Infinity)
{
//Move the "pen" of our line ('moveTo') to the x value of 1
// point & a y value of '0' which is the top of the Stage
drawLineInThisClip.moveTo(myClip1._x, 0);
//Draw the line to ('lineTo') the same x value of our point
// point and a y value of Stage.height which is the
//the very bottom of theStage
// Using
myClip1 was arbitrary. Both clips have the same x.