Im not really sure if you guys do graphics.h questions here but here it goes. Im trying to find out how to get text to scroll similar to credits at the end of a movie from top to bottom but to have it repeat. I cant find online anywhere that has a function to do this. Can someone just show me how i would go about scrolling a simple message like this.
#include <iostream>
#include "graphics.h"
using namespace std;
int main()
{
{initwindow(1000,800);
settextjustify(CENTER_TEXT,TOP_TEXT);
settextstyle(4,0,8);
outtextxy(500,200,"Scrolling Text");
}
while(!kbhit());
}