Forum Replies Created

  • Husam Sibai

    September 15, 2015 at 7:21 am in reply to: Move or copy with reference to a point in other objects

    Thank you Kalle, that answered my question 🙂

  • Husam Sibai

    August 9, 2015 at 9:12 am in reply to: Expression for list of words

    this happens because the provided code only works as long as time does not exceed the number of words in your matrix.
    once that happens it breaks.
    What i suggest is using the operand % (reminder) to cycle through the words like this:
    (the number 10 would become 12 if you provide 12 words etc..)

    myText = ["After Effects",
    "Encore DVD",
    "Photoshop",
    "Premiere Pro",
    "Final Cut Pro",
    "Motion",
    "Broadcast",
    "Commotion",
    "Cinema 4D",
    "Particle Illusion"];
    t = Math.floor(time)%10;
    myText[t]

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy