rebol3 - view error Rebol 3 -


i'm trying add gui program have difficulties doing so.

>> system/version == 3.0.0.4.40 

downloaded http://atronixengineering.com/downloads.html

first, can find examples , documentation guie of interpreter version?

there documentation, doesn't work.

rebol [] %./r3-gui.r3  view [     title "simple form"     panel 2 [         label "name:"         field         label "message:"         area     ]     button "cancel" close ] 

the error message:

** gui error: cannot parse gui dialect at: panel 2 [     label "name:"     field     label "message:"     area ] button "cancel" 

edit: panel 2 returns error. if remove it, there's error button.

i tried development release. working.

load-gui  view [   title "simple form"   vpanel  [     label "name:"     field     label "message:"     area   ] options [box-model: 'frame]   button "cancel" on-action [close-window face] ] 

there demo application, can start demo, serves example.

the documentation mention refers implementation of carl s. different atronix , saphirion version.


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -