...
Scroll tablelayout | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Name | Flag arguments | Argument type | Exclusive to | Comments |
---|---|---|---|---|
r | 0 | — | — | Start and end times specified are relative to the existing playrange start and end times |
start | 0 | — | end | inTime is the start time, outTime is not specified |
end | 0 | — | start | outTime is the end Time, inTime is not specified |
Return value
void
Examples
Code Block | ||
---|---|---|
| ||
// set the play Range to 50 -200 |
...
playRange 50 200; |
...
...
// set the start of the play Range to 50 |
...
playRange 50 -start; |
...
...
// set the end of the play Range to 200 |
...
playRange 200 -end; |
...
...
// when existing play range start is frame 50 |
...
// sets the start to 150 ( 50 + 100 ) |
...
playRange 100 -r -start; |
Additional information
Related commands
...