Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Victsantgt

#1
Thank you! Afer adapting the code for labels it worked like a charm!

Really grateful for your help!
#2
Hello! I've seen searching through the manual and the forum all day, but couldn't find a solution to a problem I've been having.

Basically, I am trying to create a typewriter styled dialogue box using displays and substrings.

However, I've managed to get everything working as I wanted, except for one thing. Despite all my efforts, the displays don't skip automatically, and you need to click with the mouse to advance through the display letter by letter.

Is there any way to make the display skip to the next one?

This is the code I have for reference:
Code: ags
String text = "test";
  for (int i = 0; i <= text.Length; i++)
  {
    String substring = text.Substring(0, i);
    DisplayAt(50,400,500, substring);
  }
SMF spam blocked by CleanTalk