Skip to content

QueScript / Reference / <print>

<print>message arg1 arg2 {expr}</print>

Simple Example

    <anim name="simpleRamp" duration="5s" fadeout="2s">
        <track name="t1">0. 1.</track>
        <print>message ramp {t1}</print>
    </anim>
    <wait anim="simpleRamp"/>

Content

Any List of Strings, numbers and {expr}

Attributes

  • None

Child Commands

  • None

Explained

Like all messages, <print> will create a Max-message that is printed directly to the Max Console. With the above example it would be a line in the console that looks like this:

QueScript * message ramp 0.

(if the above animation has just started).