There are built in methods in Wick that allow you to
access extra information about your project’s assets.
Examples:
Assign an asset to a variable.
projAsset =wickEditor.project.library.getAssetByName(‘bam.mp3’);
Alert the asset’s uuid.
alert(projAsset.uuid);
Alert name of track.
alert(projAsset.filename);
Alert duration of a track.
alert( wickEditor.audioPlayer.getDurationOfSound(projAsset) );
The project runs fine in the editor, but when exporting it, you
get an error…
Is there a way around this?
All help is good help!