so i got it working and is good i also made it work with animation...but with animation
it needs to start behind something and end behind something,, were as the scrollingtext module
it goes right off the ends hidden witch is good , i can put it in tighter spots !
Q: using "ScrollType.HORIZONTAL_LEFT" after it disapers out the end of the surface
it takes about 7 sec before it will show up on the right side again for a loop.
How can i change this so as the last tail end is going of the surface as it is starting at the other end again?
heres both codes..
//*****scrolingtext module******
local scroller1 = ScrollingText.add( "[Title]", 25, 50, 300, 45, ScrollType.HORIZONTAL_LEFT );
scroller1.set_bg_rgb(0, 220, 0, 150);
scroller1.set_rgb( 255, 0, 0 );
scroller1.text.font = "time";
scroller1.text.charsize = 25;
scroller1.set_pos( 200, 500, 400, 30 );
//*****scrolling text anime********
::OBJECTS <- {
logo = fe.add_text("[Title]", 850, 202, 195, 050 ),
}
local pac = {
when = Transition.StartLayout ,property = "x", start = 1150, end = 580, tween = Tween.Linear, time = 7000, delay = 000, loop = true
}
animation.add( PropertyAnimation( OBJECTS.logo, pac ) );
OBJECTS.logo.font="time";
OBJECTS.logo.set_rgb( 255, 0, 0 );
OBJECTS.logo.charsize = 28;
thanks bro...