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
We use global bindings to provide access to the current script step, the pane, and the view:
{ [:object | { #text -> 'Save'. #clicked -> [[ thisView saveAndClose ]] } ] -> { #view -> ButtonBar }. } asScript.
However, the user has to create a local binding when the exeuction time is deferred such as in this button-bar example:
{ [:object | | v | v := thisView. { #text -> 'Save'. #clicked -> [[ v saveAndClose ]] } ] -> { #view -> ButtonBar }. } asScript.
Maybe we can replace or shadow those global (dynamic) bindings during script interpretation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We use global bindings to provide access to the current script step, the pane, and the view:
However, the user has to create a local binding when the exeuction time is deferred such as in this button-bar example:
Maybe we can replace or shadow those global (dynamic) bindings during script interpretation.
The text was updated successfully, but these errors were encountered: