function yoyo():void{
TweenMax.killTweensOf(yoyo_MC);
yoyo_MC.x = 0;
yoyo_MC.sndTicker.text = ""+snd.id3.artist;
yoyo_MC.sndTicker.autoSize = TextFieldAutoSize.LEFT;
var xWidth = int(yoyo_MC.width)-193;
TweenMax.to(yoyo_MC, 3, {x:-xWidth, y:155, ease:Sine.easeInOut, repeat:-1, yoyo:true});
}
Hi guys
I have a mp3 tag text scroller left to right with tweenmax.to ....
..but I cant seem to get it to start at with the left side of text finishing at left point of window x=0,
and the right side finishing in the end of the right window x=193. so the text is yo-yoing inside the window.
I tried loads of ways but to no avail ... heres what I have that does work but not as I would like
Thanks in advance
Steven