Why this bug happens occasionally? (Send Expects Scriptable Object)
Hi all,I am writing a UI and I include a section for the user to select output directory to save the generated data files. Following is the script:// press the select button
selectDirectoryButtonPress = Function( {this},
outputLocation = Pick Directory( "Select output location." );
outputDir << setText( outputLocation );
);
// press the clear button
ClearDirectoryButtonPress = Function( {this},
...