Results 1 to 2 of 2

Thread: words

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 1999
    Location
    Rauma, Finland
    Posts
    4

    Post

    How do I do a script that shows a word and after few seconds another word? Like first "blood" and then "skin"

    Can you help me?

  2. #2
    PowerPoster Fox's Avatar
    Join Date
    Jan 2000
    Location
    *afk*
    Posts
    2,088

    Post

    U can use GetTickCount() from the API to get the actual time in ms. Store this value and make a loop while the pause-time is reached.
    I'll show ya:

    -

    Public Sub PrintText( Text1 as String, Text2 as String )
    Dim Temp as Long
    Dim Wait as Long

    Temp = GetTickCount()
    Wait = 1000 'Wait for a second

    Print Text1

    While Temp + Wait > GetTickCount()
    'Here the program is waiting
    Wend

    Print Text2

    -

    You should be able to understand this. If not, ask me again



    ------------------
    Fox

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width