I feel I should know this... Well I would love any help. So I've made a image slider Class and works fine up to the position of the mask. In my Home Class I make an instance of the image slider Class and position it accordingly. The images in the slider Class are position at 0, 0 as well as the shape I use for the mask. Here is the problem the mask placement is at stage.x = 0 , stage.y = 0 rather then the slider's Class x:0, x:0. Why is the slider instance showing the in right position but the mask in the instance isn't? Thanks for any help
This is in my HomePage Class
private function buildSlider() : void {
slider = new Slider(arrSilde);
slider.x = btnWidth + 15;
addChild(slider);
}
And this is the Slider Class
private var t : Timer;
private var counter : int;
private var slideArr : Array;
private var currentSlide : HomeSliderPageObj;
private var oldSlide : HomeSliderPageObj;
private var masker : Shape;
public function Slider(_arr : Array) {
super();
slideArr = _arr;
currentSlide = _arr[counter];
buldSlider();
addChild(currentSlide.image);
t = new Timer(2000);
t.addEventListener(TimerEvent.TIMER, changeSlide);
t.start();
}
private function buldSlider() : void {
masker = new Shape;
masker.graphics.lineStyle();
masker.graphics.beginFill(0x000000, 1);
masker.graphics.drawRect(0,0, currentSlide.image.width, currentSlide.image.height);
masker.graphics.endFill();
masker.x = currentSlide.image.x;
masker.y = currentSlide.image.y;
this.mask = masker;
}
private function changeSlide (event : TimerEvent) : void {
if (counter >= slideArr.length){ counter = 0; }
else { ++counter; }
oldSlide = currentSlide as HomeSliderPageObj;
addChild(oldSlide.image);
removeChild(currentSlide.image);
currentSlide = slideArr[counter];
currentSlide.image.x = currentSlide.image.width;
addChild(currentSlide.image);
TweenMax.to(oldSlide.image, .5, {x:oldSlide.image.width*(-1), onComplete:clean});
TweenMax.to(currentSlide.image, .5, {x:0});
}
private function clean () : void {
removeChild(oldSlide.image);
oldSlide = null;
}