mhazaru's Forum Posts

  • 5 posts
  • You do not have permission to view this post

  • You do not have permission to view this post

  • You do not have permission to view this post

  • You do not have permission to view this post

  • You do not have permission to view this post

  • My main objective for the post was just to make sure that if I do indeed go with C2, that I won't be sacrificing major functionality or performance by virtue of it exporting HTML via wrappers. Everything I've read about C2's functionalities, ease of use, speed of development and capability has been stellar.

    I'm going to play with them both a bunch this weekend and then decide. Thanks again!

    To add to that, what I also like about C2, compared to other engines I've tried, is that the layout of the program is, for the most part, very intuitive and pleasing aesthetic-wise. I like how it looks and got comfortable with it quite quickly since it's very clean.

  • You do not have permission to view this post

  • You do not have permission to view this post

  • You do not have permission to view this post

  • This looks awesome! Keep up the great work.

  • Figured it out. I found an entry about Wait and Loops and changed it to work off the loopindex. Yay!

  • Those are the threads I referred to...that's how I initially figured it out through a single event.

    What I'm talking about is doing it through a Function. It works until a Wait or Every x Seconds statement is included, and then it breaks. So basically, I can get the message through it, but I can't get it to wait between each character at all.

  • Hello! I've successfully implemented a typewriter text effect into my project, after finding out how on these forums. What I wanted to do now though was see if I could make a function out of it, so that I could use it to feed any text into.

    So far this is working for me

    +Function on "typeWriter"

    (sub) +For "typeWriter" from 0 to (len(Function.Param(0))

    -left(Function.Param(0), counter)

    -Add 1 to counter

    So I pass the text string to it, and it does write it out. The problem I'm having is that I can't delay the characters to make the actual 'typewriter' effect. I've tried putting a Wait in the function, but either it gets ignored or returns 0 to the textbox. I'm not sure on how to get it working from there. Am I just doing it wrong? Thanks!

  • 5 posts