Author Topic: String Help  (Read 6500 times)

0 Members and 1 Guest are viewing this topic.

Offline Quigibo

  • The Executioner
  • CoT Emeritus
  • LV11 Super Veteran (Next: 3000)
  • *
  • Posts: 2031
  • Rating: +1075/-24
  • I wish real life had a "Save" and "Load" button...
    • View Profile
Re: String Help
« Reply #15 on: June 22, 2010, 09:09:13 pm »
I think he means smooth scrolling, not block by block scrolling.  Both can be done with the Copy() command, but when the letters get to the edge with smooth scrolling, they disappear suddenly.  You can fix that by copying the non-text part of the screen to the back buffer, using the Horizontal Scroll command, and then copying the buffer back, but that's more complicated and can't always be done.

EDIT: Ninja'd
« Last Edit: June 22, 2010, 09:10:12 pm by Quigibo »
___Axe_Parser___
Today the calculator, tomorrow the world!

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: String Help
« Reply #16 on: June 23, 2010, 02:01:13 am »
Personally if I want to draw text out of the screen, I migth just use custom fonts or something, so it won't end up too complicated if I do not have a lot of text to display or if I am using a routine to display it all. But I guess your tricks could work too (with Copy() and stuff)