REBOL Forum Recent REBOL Forum Topics http://rebolforum.com surprise can't read one dimensional array Try using one of the following: xxdata/:j xxdata/(j) pick xxdata j xxdata/j ;this tries to find J word in xxdata block: xxdata: [1 2 j 4 5] >> xxdata/j == 4 , Posted by: Endo 14-May-2012/2:49:15-7:00 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=46&archiveflag=new AltME REBOL3 world is down The REBOL4 world, simply named so, because it's the fourth one in existence, has begun making its posts web-public at: http://www.rebol.org/aga-groups-index.r?world=r4wp, Posted by: Henrik 30-Apr-2012/2:50:56-7:00 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=45&archiveflag=new Guitar LED Tablature I have a student with Down Syndrome who's been using the Optek LED guitar for years. It's nice to see other options!, Posted by: Nick 12-Apr-2012/8:08:18-7:00 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=44&archiveflag=new RFO Basic for Android It's nice to be able to edit on Android, and I have forced myself to write a bit entirely on the device (AI keyboard is helpful with it's undo and advanced editing features). My preference, though, is to write on PC and then transfer using WIFI file transfer pro: https://play.google.com/store/apps/details?id=com.smarterdroid.wififiletransferpro&hl=en No cables to attach. Just edit, transfer the file(s) over air, and load/run on Android., Posted by: Nick 12-Apr-2012/8:05:10-7:00 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=43&archiveflag=new Key hooker Take a look at http://re-bol.com/rebol.html#section-9.8 to learn how to actions Windows API functions. Here's the first VB example above converted to a REBOL function: lib: load/library %user32.dll RegisterHotKey: make routine! [ return: [integer!] hwnd [integer!] id [integer!] fsModifiers [integer!] vk [integer!] ] lib "RegisterHotKey" ; Once an imported function is defined, use it like any other REBOL function: RegisterHotKey hwnd id fsModifiers vk ; Close the library when done: free lib, Posted by: Nick 23-Mar-2012/21:21:31-7:00 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=42&archiveflag=new Script Error - Cannot use path on Integer! object It looks the problem is somewhere else. Could you provide the rest of the script? One little note: Your function changes the x in global scope (it may be used somewhere else and leads to the problem you have) No need for Return. This will be a bit better: factor: func [arg1 [integer!] /local x] [ x: 1 while [ arg1 > 1 ] [ arg1: arg1 - 1 x: x * arg1 ] ] , Posted by: Endo 21-Mar-2012/7:42:17-7:00 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=41&archiveflag=new Strange behave when read files Sounds good. I'll do some tests using this. Thanx a lot :), Posted by: Holger 27-Feb-2012/16:38:29-8:00 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=40&archiveflag=new How to jump to another buttons Action from another point in script I'm not sure what is meant here. If you are referring to running a button action, you can do so by: view layout [b: button "hello" [print "world"]] and then, somewhere else: b/action b There is a value parameter as well, although I didn't use it above, but it would be: b/action b some-value, Posted by: Henrik 31-Jan-2012/6:48:04-8:00 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=39&archiveflag=new Parsing with to Happy scraping! That is what's made me want to learn REBOL in the first place, twelve years ago. ;-), Posted by: DocKimbel 30-Jan-2012/13:47:12-8:00 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=38&archiveflag=new Button in one gui creates another gui but first gui disappears You can also use VIEW/NEW to create a new window. If you want a modal dialog (main window is blocked and the new window is kept at the front), use INFORM., Posted by: Henrik 29-Jan-2012/3:46:24-8:00 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=37&archiveflag=new