16
Graphics / Scrolling Text..
« on: March 17, 2010, 04:40:54 pm »
Voila ... ! It worked ..
But The point is , i want it to scroll it continuously , then wat do i do .
I tried putting that text scroll inside App.GetEvent
and i observed the scroll was in compliance to my mouse action , i mean if my mouse was moving then only the text was scrolling down .
But The point is , i want it to scroll it continuously , then wat do i do .
I tried putting that text scroll inside App.GetEvent
Code: [Select]
Text.Move( 0 ,App.GetFrameTime() * SCROLL_SPEED) ;
and i observed the scroll was in compliance to my mouse action , i mean if my mouse was moving then only the text was scrolling down .

But the problem is , i have also developed a small game in it and it has few window key events , will those still be functional if i run it under sfml , since the sfml has its own way of handling it , i was thinking there should not be any problem.