Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

Saving script with the rebol console?

 [1/3] from: vdallaporta::wanadoo::fr at: 2-Oct-2002 22:17


I Can't save any thing i create with rebol console !!! Have to create the code with another text editor then to save VDTEST1.R as the exemple a.m. How are u saving scripts under Rebol Console ? Tks to make me progress under Rebol by giving a syntax exemple if possible Happy new year with rebol ----- Original Message ----- From: "Gregg Irwin" <[greggirwin--mindspring--com]> To: <[rebol-list--rebol--com]> Sent: Wednesday, October 02, 2002 7:03 PM Subject: [REBOL] Re: how to drag'n'drop ?
> Bryan, et al > <<Drag and Drop is handled via a DropHandler shell extension, this comes
<<quoted lines omitted: 3>>
> be done. Euphoria has a COM library, so REBOL could probably support one > too. The question is: Is it worth it? :) For me, I'd rather spend time on
a
> DnD system that worked between REBOL apps on all platforms. > > View/Pro and Command support a system port which they say can be used to > catch WM_ messages, but it isn't doc'd anywhere yet. With that you could
at
> least catch WM_DROPFILES to support DnD from Explorer. > > --Gregg > > -- > To unsubscribe from this list, please send an email to > [rebol-request--rebol--com] with "unsubscribe" in the > subject, without the quotes. >
-- Attached file included as plaintext by Listar -- -- File: VDTEST1.R REBOL[ title: "XXXX" author: "Vince" date: "30/10/2002" comments:{Enregister avec Rebol un script sous environnement W98} ] print "What is the Syntax to save under Rebol!!!" input Print "I don't want to work via Note pad !" input Print "Does someone is listening me !" input Print "Tks for your Help" input quit

 [2/3] from: greggirwin:mindspring at: 2-Oct-2002 15:22


Hi Vincent, << I Can't save any thing i create with rebol console !!! Have to create the code with another text editor then to save VDTEST1.R as the exemple a.m. How are u saving scripts under Rebol Console ? >> I save the output of my console sessions a couple different ways: 1) Use ECHO to send all console output to a file.
>>echo %myfile.txt ; send console output to %my-file.txt >>echo none ; turn echoing off
2) Copy and paste out of the console. I generally do most of my editing in an editor, but there are times where I fiddle around in the console quite a bit and it's handy to get things out of it. --Gregg

 [3/3] from: chris:ross-gill at: 2-Oct-2002 22:07


Hi Vincent and Gregg,
> << I Can't save any thing i create with rebol console !!! > Have to create the code with another text editor then to save VDTEST1.R as
<<quoted lines omitted: 3>>
> 1) Use ECHO to send all console output to a file. > 2) Copy and paste out of the console.
You can also do: write/lines %vdtest1.r head reverse system/console/history - Chris

Notes
  • Quoted lines have been omitted from some messages.
    View the message alone to see the lines that have been omitted