Hi, I am trying to catch a keypressed in view and i can't manage to get any event of type key... here is my code : l: layout [ origin 5x5 title "My window" b:...
Gilette Serge
gilette@...
Apr 30, 2001 5:23 pm
105
I have created a "Local" folder in the Bookmarks section of the http://groups.yahoo.com/group/Rebol_New/links website. This is for those of you who have...
Jack Seay
jackseay@...
May 10, 2001 2:38 pm
106
Here is a question I had from the Rebol/Core pdf file, p. 3-27: You can use any with functions like find to always return a valid result: data: [123 456 789] ...
Jack Seay
jackseay@...
May 27, 2001 2:03 am
107
What am I doing wrong here? I only want to append files that end in ".r". All files get appended REBOL [ Title: "File Appender" File: %fileappend.r Date:...
Jack Seay
jackseay@...
Jun 2, 2001 4:40 am
108
Hello, I am new to Rebol, but I may drop it due to lack of documentation. I managed to get VID running with a text area. I even figured out how to write to the...
Jim Clatfelter
hijim@...
Jun 3, 2001 2:10 am
109
... Some examples. You can enter these directly at the console... ... == "This is the hour of our discontent..." ... Note the 'text-file word used as a...
Carl Read
carl@...
Jun 3, 2001 9:22 am
110
... And we're still right :P See ya, -- James L Boyd Connected from Fife, Scotland. http://www.blitzbasic.com/ All Your Basic Are Belong To Us. --...
James L Boyd
james@...
Jun 3, 2001 1:54 pm
111
Hi Carl, Thanks for the help. I'll study the code and the section of the documentation file you mention. The load box looks great. That's the part of REBOL I...
Jim Clatfelter
hijim@...
Jun 4, 2001 1:06 am
112
... make much use of them. It's very easy to write Rebol equivalents to the BASIC string routines. This has been done on the main rebol list. You should be...
Andrew Martin
Al.Bri@...
Jun 4, 2001 2:23 am
113
Hi Andrew, I did join that list, but there were so many messages, and I didn't understand any of it, so I got off of it. I think you were the one who helped me...
Jim Clatfelter
hijim@...
Jun 4, 2001 3:06 am
114
... I've recently deleted over 500 unread messages I've got from that list. It's been very busy and I haven't had the time to read them all all. Andrew Martin ...
Andrew Martin
Al.Bri@...
Jun 4, 2001 3:57 am
115
... As an example of a BASIC function, here's how I'd go about duplicating mid$ ... First, a string to play with... ... == "abcdefg" Now we'll show how to get...
Carl Read
carl@...
Jun 5, 2001 12:39 pm
116
Carl, You should have written a book for BASIC programmers! Why not?! Geo Massar a long time programmer who knows many languages...
Geo Massar
gmassar@...
Jun 5, 2001 3:10 pm
117
Hi Carl, Your mids routine is very nice! Thanks for taking the time to share it. I'll play around with it -- best way to learn. Here's a question about REBOL....
Jim Clatfelter
hijim@...
Jun 6, 2001 3:23 am
118
... Don't really know. It's a thought, though... Perhaps there's a need for a guide to BASIC for those moving across from REBOL? Ah, but which BASIC to...
Carl Read
carl@...
Jun 6, 2001 6:17 am
119
... If REBOL knew where the cursor was, (which it most certainly must do), then yes, it should be possible. Unfortunately, while REBOL must know, I'm afraid I...
Carl Read
carl@...
Jun 6, 2001 10:50 am
120
... You might want to acquire a copy of The BASIC Handbook (3rd Ed.) by David A. Lien for your writing if you decide to commerce. In the book, you would ...
Geo Massar
gmassar@...
Jun 6, 2001 7:49 pm
121
... I think I'd rather write programs at the moment. I have done a lot of writing in the past, of the Amiga disk-magazine variety. Programming's my first love...
Carl Read
carl@...
Jun 7, 2001 6:26 am
122
... Further to that Jim, look at the attached example script. What it does is create a minimal webpage written in HTML, but with one addition - it says when...
Carl Read
carl@...
Jun 7, 2001 8:55 am
123
Hi Carl, I modified your script to the code that I use on many of my web pages. I did find a way to insert tags. Clicking a button copies the tag to the ...
Jim Clatfelter
hijim@...
Jun 11, 2001 2:10 am
124
... Yes - an advance. And if you used hot-keys you could reduce it to two key-presses - have alt-t for <table> and so on - except I don't know how to get at...
Carl Read
carl@...
Jun 12, 2001 8:54 am
125
Hi again Carl, Below is the editor script (as it stands now) with the tags entered using control keys to put them in the clipboard -- no buttons. Using the alt...
Jim Clatfelter
hijim@...
Jun 17, 2001 5:37 pm
126
I'm back again with a warning. Please don't use the script I wrote. If you open a file and save it, it seems to work ok if you quit immediately. If you open...
Jim Clatfelter
hijim@...
Jun 17, 2001 9:34 pm
127
... (: Just the learning curve Jim. I did run the script to see where you'd got to, though I didn't touch Save. (One tip regarding 'quit in the "Quit" button....
Carl Read
carl@...
Jun 17, 2001 10:53 pm
128
Thanks for the tips, Carl. I'll change the quit command. Maybe I can find out the file name loaded that way. I'm not usually clear on what is a function and...
Jim Clatfelter
hijim@...
Jun 18, 2001 4:20 am
129
Hi Jim, ... Just add a load and save button to get the file's path using request-file. Umm, an example... rebol [] view layout [ text-editor: area across ...
Carl Read
carl@...
Jun 18, 2001 8:29 am
130
Hi Carl, Thanks for all the help and hints. You've sure been generous with your time and very clear in your explanations. I really appreciate it. I think I...
Jim Clatfelter
hijim@...
Jun 19, 2001 2:27 am
131
Here's the script now. rebol [Title: "Clip and Paste HTML Tag Editor"] a-file: "" view layout [ backdrop silver text-file: area 700x350 a-file white ivory font...
Jim Clatfelter
hijim@...
Jun 19, 2001 2:28 am
132
... Not a problem. It helps to clarify my own ideas of how things work by trying to explain it to someone, so it's good for me too. Especially when I check...
Carl Read
carl@...
Jun 19, 2001 9:40 am
133
I tried it. I found I had to use ctrl-shift-h for <HTML>, which is odd as you had a lower-case "h" in the script. Will be looking into why that's...