If a have a sprite and i draw a rectangle of more then 65535, all then content is repeated.
(not working example)
public class UserViewEntry extends Sprite
{
public function UserViewEntry(entryData:EntryData){
//create ONE label and add it
this.addChild(label)
label.x=0//be sure to move to 0
this.graphics.drawRect(0,0,100000,20);
}
public function click():void{
//why the label is visible in position 0, 65535, 131070...
this.x+=65535
}
}

