forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Horizontally Scroll Text

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Visual DialogScript 4 Source Code
View previous topic :: View next topic  
Author Message
LiquidCode
Moderator Team


Joined: 05 Dec 2000
Posts: 1753
Location: Space and Time

PostPosted: Fri Jan 11, 2002 7:26 pm    Post subject: Horizontally Scroll Text Reply with quote

This script scrolls text horizontally

Code:

   dialog create,dummy,0,0,0,0
   dialog CREATE,Scroll,-1,0,252,74
   dialog add,status,s1
   dialog ADD,TEXT,text1,16,38,163,13,The text below should be scrolling.
   dialog SHOW

   %%orig = -------------------- http://www.CGingerich.cc --------------------
   %%text = %%orig
   %t = @pred(@len(%%orig))
   %%len = %t
   gosub space
   %%text2 = %f@substr(%%text,1,1)


:evloop
   wait event,.1
   goto @event()
   
:Timer
   if %%text
      %%text = @substr(%%text,2,@len(%%text))
   else
      %t = @pred(%%len)
      if @greater(%t,0)
         gosub space
         %%len = %t
         %%text2 = %f@substr(%%orig,1,@diff(@len(%%orig),%%len))
      else
         %t = @pred(@len(%%orig))
         %%len = %t
         gosub space
         %%text2 = %f@substr(%%text,1,1)
         %%text = %%orig
      end
   end
   if %%text
      dialog set,s1,%%text
   else
      dialog set,s1,%%text2
   end
   goto evloop

:close
   stop
   
:Space
   %i = " "
   %f =
   repeat
      %f = %F%i
   until @equal(@len(%F),%t)
   exit


_________________
Chris
Http://theblindhouse.com
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Visual DialogScript 4 Source Code All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group