Hi Friends,
Please help me.....in Scrolling of images from xml infinity loop (after
last image it should start again from first image at the end it should
continue until right arrow scrolling clicking)
my Left arrow and right arrow code below.........
function LeftArrowDown(evt:Event)
{
scroller.x = scroller.x - 60;
trace(scroller.x);
var vidxvalue:Number = scroller.x;
var _flashTransitions:Tween = new
Tween(scroller,"x",Elastic.easeOut,5,vidxvalue - 85,2,true);
trace("scroller.x::" + scroller.x);
if (scroller.x >= 5)
{
}
}
function rightArrowDown(evt:Event)
{
trace("event::" + evt);
scroller.x = scroller.x + 60;
var vidxvalue:Number = scroller.x;
var _flashTransitions:Tween = new
Tween(scroller,"x",Elastic.easeOut,5,vidxvalue + 85,2,true);
if (vidxvalue > 70)
{
trace("greater than 70 vidxvalue::");
}
}
Thanks in Advance...
By
R.Denesh Kumar
+9952018252
--
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en.