Go to advanced search

by Embedder
Mon May 12, 2014 3:32 pm
Forum: OpenVG
Topic: Scrolling Text
Replies: 3
Views: 2243

Re: Scrolling Text

Thanks i will try that !
by Embedder
Wed May 07, 2014 5:43 pm
Forum: OpenVG
Topic: Scrolling Text
Replies: 3
Views: 2243

Re: Scrolling Text

i found this method for scrolling a string horizontally:

void Scroll(char const *str)
{
while (*str++)
{
puts(stdin,getsInLen(), MAX_SCROLL_CHAR);
}
}

i will use openvg Text() function instead of puts.

Any thoughts ?
by Embedder
Wed May 07, 2014 2:03 pm
Forum: OpenVG
Topic: Scrolling Text
Replies: 3
Views: 2243

Scrolling Text

Hello,
i installed and tested openvg library on my rasmberry pi board. Examples are a good starting point for learning but i still can't figure out how to make a text move-scroll. in fact i want to make a newsticker in the bottom of the screen.
Can anybody give me a starting point for that.
Thanks

Go to advanced search