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
[Issue migrated from SourceForge | ID: 2833957 | Submitted by 'nobody'] [http://sourceforge.net/support/tracker.php?aid=2833957]
Here is an example combining two help files that show the problem.
( //from SCWindow help file w = Window.new(border: false);
w.view.background_(Color.rand);
w.front;
w.fullScreen;
Button.new(w, Rect(200,200,200,200)).states_([["Close Window"]]).action_({w.endFullScreen;w.close});
// from PopUpMenu help file m = PopUpMenu(w,Rect(10,10,180,20));
m.items = ["linear","exponential","sine","welch","squared","cubed"];
m.action = { arg menu;
[menu.value, menu.item].postln;
};
)
The text was updated successfully, but these errors were encountered:
Works fine now.
Sorry, something went wrong.
Merge pull request #92 from supercollider/issue/59
9b5cc5c
clients page: update link
No branches or pull requests
[Issue migrated from SourceForge | ID: 2833957 | Submitted by 'nobody']
[http://sourceforge.net/support/tracker.php?aid=2833957]
Here is an example combining two help files that show the problem.
(
//from SCWindow help file
w = Window.new(border: false);
w.view.background_(Color.rand);
w.front;
w.fullScreen;
Button.new(w, Rect(200,200,200,200)).states_([["Close Window"]]).action_({w.endFullScreen;w.close});
// from PopUpMenu help file
m = PopUpMenu(w,Rect(10,10,180,20));
m.items = ["linear","exponential","sine","welch","squared","cubed"];
m.action = { arg menu;
[menu.value, menu.item].postln;
};
)
The text was updated successfully, but these errors were encountered: