r3-gui

How do you start a Rebol3 GUI script without the console showing?

邮差的信 提交于 2020-01-05 09:49:06
问题 Currently I start a GUI from the console which involves first loading the GUI with load-gui and then run the script which shows the GUI. How can I start the GUI without a console showing? 回答1: You have to specify the open/exe action for the R3 script : the R3 exe. 来源: https://stackoverflow.com/questions/24717336/how-do-you-start-a-rebol3-gui-script-without-the-console-showing

REBOL 3 - How to update a layout that has already been viewed?

雨燕双飞 提交于 2020-01-04 02:46:06
问题 I'm trying to add a field to a layout after it has been viewed view/no-wait m: [field "hello"] insert tail m 'field insert tail m "hello" update-face m ** Script error: update-face does not allow block! for its face argument I want to update the whole layout, not just the field or some part of it. If I try to use view m , it opens a new window. Do I just have to un-view it and then view again? 回答1: You can use the LAYOUT function in R3-GUI as well. See the example below: view/no-wait m: