Well i have been using SFML for past 3-4 days and have completely fallen in love with it , its awesome ..

Well i have uploaded an image and also , text (arial) .
Now , i want the text to be scrolling , how do i do that .. ?
I am attaching the code in here :
#include <SFML/Graphics.hpp>
#include<iostream>
int main()
{
// Create the main window
sf::RenderWindow App(sf::VideoMode(703, 493), "Rahul.Reincarnated ");
// Load a sprite to display
sf::Image Image;
if (!Image.LoadFromFile("image1.jpg"))
return EXIT_FAILURE;
sf::Sprite Sprite(Image);
// Create a graphical string to display
sf::Font Arial;
if (!Arial.LoadFromFile("arial.ttf"))
return EXIT_FAILURE;
sf::String Text("\t \t Welcome to OpenGL Project \n \t \t \t \t \t \t \t \t \t \t \t By Rahul ", Arial, 50);
while (App.IsOpened())
{
// Process events
sf::Event Event;
while (App.GetEvent(Event))
{
// Close window : exit
if (Event.Type == sf::Event::Closed)
App.Close();
if ((Event.Type == sf::Event::KeyPressed) && (Event.Key.Code == sf::Key::Escape))
App.Close();
}
// Clear screen
App.Clear();
// Draw the sprite
App.Draw(Sprite);
// Draw the string
App.Draw(Text);
// Update the window
App.Display();
}
std::cout<<" thank you for using the program ";
getchar();
return EXIT_SUCCESS;
}
Now , if i want the welcome text to be entering into the window (scroll) is there any way to do that.. ?