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;
  }
link|improve this question
Where do you addChild() the masker object? I can't see it anywhere in your code. And: have you tried to trace masker.x and masker.y? – Sr.Richie Jan 17 at 14:58
Thank you so much totally over look that – Wesley DuSell Jan 19 at 9:12
feedback

1 Answer

up vote 0 down vote accepted

See if this works.

    currentSlide = _arr[counter];
    buldSlider(); //this creates the mask shape

    addChild(currentSlide); //this add the image movieclip
    currentSlide.mask = masker; //this sets the masking

 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;
     addChild(masker);
  }
link|improve this answer
I forgot to add the masker to the display list thank you – Wesley DuSell Jan 19 at 9:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.