| Previous | Next | |
STF.getFolder() : StringA string.; This value is returned as a parameter to the registered callback. See the example below or STF.registerCallBack() for more information on return variable handling.
Method; Returns the path to the screen saver. This function has been replaced. Use STF.getSpecialFolder() instead.
The following example returns the path to the folder containing the screen saver.
var folderPath:String;
//define the callback
function onGetFolderReturn(returnValue:String){
folderPath = returnValue;
}
//register callback
STF.registerCallBack("getFolder", onGetFolderReturn, this);
STF.getFolder();
| Questions or Feedback? | Previous | Next |