We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see in the code traces for saving and loading settings to the file : "settings.txt"
if( ofGetKeyPressed(MUI_KEY_ACTION) && key == ',' ){ ofSystemAlertDialog("All settings are in the editable file '" + ofxToReadWriteableDataPath("settings.txt") + "' \n" "\n" "1. Edit settings.txt\n" "2. Switch back to the oscilloscope application" ); ofxNative::showFile(ofxToReadWriteableDataPath("settings.txt")); } if( ofGetKeyPressed(MUI_KEY_ACTION) && key == 'r'){ globals.loadFromFile(); playerOverlay->fromGlobals(); }
But it seems to be inoperative. I run it under Windows so MUI_KEY_ACTION is the Ctrl key. What do I do wrong?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I see in the code traces for saving and loading settings to the file : "settings.txt"
if( ofGetKeyPressed(MUI_KEY_ACTION) && key == ',' ){
ofSystemAlertDialog("All settings are in the editable file '" + ofxToReadWriteableDataPath("settings.txt") + "' \n"
"\n"
"1. Edit settings.txt\n"
"2. Switch back to the oscilloscope application"
);
ofxNative::showFile(ofxToReadWriteableDataPath("settings.txt"));
}
if( ofGetKeyPressed(MUI_KEY_ACTION) && key == 'r'){
globals.loadFromFile();
playerOverlay->fromGlobals();
}
But it seems to be inoperative. I run it under Windows so MUI_KEY_ACTION is the Ctrl key.
What do I do wrong?
The text was updated successfully, but these errors were encountered: