Scripting - cursorPosition

I’ve been trying to write a bit of script, and whilst troubleshooting it I’ve written another (much simpler) piece of script to just display the current numbers for various variables.

Everything about this works, except the part where it’s supposed to report the cursor position

logWindow.printInfo("This wave file has " + activeWave.size() + " samples");
logWindow.printInfo("Its sample rate is " + activeWave.sampleRate());
logWindow.printInfo("It has " + activeWave.numChannels() + " channels");
logWindow.printInfo("The cursor is at " + cursorPosition() + " samples");

The error I’m getting is “Can’t find variable: cursorPosition”
Can anyone see what I’m doing wrongly?

You must write:

activeWave.cursorPosition()

and not only

cursorPosition()

Thank you!