getSoundFileRoot()
Previous Top Next
getSoundFileRoot()
Returns the full path to the eSignal Sound Files folder.
Parameters
Usage
Previous Top Next
getSoundFileRoot()
Returns the full path to the eSignal Sound Files folder.
Note: you can view/change the location of the Sound Files folder from within the eSignal program. Click on Tools-->EFS-->Settings to pull up the Formula Engine Settings window. |
Parameters
none |
function takes no parameters |
Usage
function main() { ... ... if ( isLastBarOnChart() == true ) { //clear the Formula Output Window debugClear(); //print a line of text to that window debugPrint( "Your Sound Files folder is located here: " + getSoundFileRoot() + "\n" ); } }