World: r3wp
[View] discuss view related issues
older newer | first last |
Pekr 25-Apr-2006 [4904] | now the thing is, if we want to reinvent the wheel. I do remember very powerfull consoles (even with coloring modes) from Amiga days, and if we talk non X-windows Linux installation, we do want to use text based console anyway ... |
Henrik 25-Apr-2006 [4905] | having a separate console seems to me causes a problem with rebol processes that do not initially print anything on a console. the problem arises when needing to print to a console. where to go? If another rebol process is already running, the new process starts printing there, "merging" the two consoles and rendering the console useless. |
BrianH 25-Apr-2006 [4906] | I'd like the option to use a native console. I'm frequently using Windows remotely and that can be a little awkward to do cross-platform, and can be high bandwidth as well. The NT console is powerful enough. |
Pekr 25-Apr-2006 [4907x2] | yes, at least it can jump by words :-) |
as for Windows, I am used to own graphical one. And how do we get cross-platform console, which behaves the same way, if not having rebol own one? | |
BrianH 25-Apr-2006 [4909] | Windows console apps can run on some other platforms as well, where GUI support is spotty. They integrate with batch scripts better too. |
Pekr 25-Apr-2006 [4910] | but then maybe someone writes async visual console as Cyphre did some time ago ... |
Henrik 25-Apr-2006 [4911] | pekr, yes it would be interesting to see a console written in View |
Rebolek 25-Apr-2006 [4912] | Henrik, Cyphre's vconsole is still available on his rebsite. |
BrianH 25-Apr-2006 [4913] | I can run Windows console apps on DOS, for instance. |
Pekr 25-Apr-2006 [4914x2] | why the amiga console was so powerfull and windows is so weak? it even can't use tab to form form commands ... without that feature I am agains using native windows console ... |
arrow-down does nothing too - it should discard the input .... it is a bad joke, not a console ... | |
Henrik 25-Apr-2006 [4916] | the windows rebol console has one thing I hate.... when you type in a long sentence and accidentally press arrow-up, the sentence is lost |
BrianH 25-Apr-2006 [4917] | Hey, I just want as an option, like a seperate build or something. What Windows are you using? Sounds like you need doskey. |
Pekr 25-Apr-2006 [4918x2] | yes, that is bad ... |
Win2K .... talking the standard ... | |
BrianH 25-Apr-2006 [4920] | Win2k has tab completion and arrow keys cycling through your history, doskey built in. |
Pekr 25-Apr-2006 [4921x2] | rebol native console is not perfect, but I do remember that old 1.x days and unless windows console provides better experience, it becomes denerving pretty quickly .... slowing you down ... |
tab completion? where? | |
BrianH 25-Apr-2006 [4923x2] | Search for TweakUI on Microsoft's site. |
It just changes an existing registry setting, but it is easier. | |
Pekr 25-Apr-2006 [4925x2] | I don't want any TweakUI - I talk about what comes with os as default .... I want to use rebol on many machines and am not willing/nor I will not be probably able, to install TweakUI on each of them .... |
will look at TweakUI though, I use windows console often ... | |
BrianH 25-Apr-2006 [4927] | Well, I want native console mode REBOL to integrate with other console mode apps and scripts, and for when I am already in console mode and need to do something without switching to a GUI. When I am in GUI mode already, the existing console is fine. I need both. |
Henrik 25-Apr-2006 [4928] | the problem with TweakUI is that it's a tool that makes windows usable :-) one has to wonder why MS engineers would write a tool to remove a lot of the nuisances in Windows, if Windows is already so great :-) |
Pekr 25-Apr-2006 [4929x2] | I would like to know though, if ppl do prefer identical behavior of console on each platform, some extended console functionality - e.g. multirow arrow navigation, coloring (simply close to editor), or they prefer to use OS native console ... |
Brian - good point - both modes are probably usefull and both have its own advantages ... | |
BrianH 25-Apr-2006 [4931x3] | TweakUI for Win9x through 2k: http://download.microsoft.com/download/winme/Install/1.0/WinMe/EN-US/Tweakui.exe And for WinXP/2003: http://download.microsoft.com/download/f/c/a/fca6767b-9ed9-45a6-b352-839afb2a2679/TweakUiPowertoySetup.exe |
Sorry, tripped up by the AltMe bug. The second link is for WinXP/2003. | |
Win2003 might have it installed by default. It is here, but I can't remember doing so. | |
Pekr 25-Apr-2006 [4934] | powertoys are other tools? |
BrianH 25-Apr-2006 [4935x3] | See for yourself. http://www.microsoft.com/windowsxp/downloads/powertoys/xppowertoys.mspx |
I find myself using TweakUI and the calculator (not available for Win2k) the most. | |
No, most of all I use "Open Command Window Here". | |
Pekr 25-Apr-2006 [4938] | I will try that at home, as here at work I run W2K ... thanks for the pointer .... |
BrianH 25-Apr-2006 [4939] | Many of these are installers wrapped around registry settings, no more complicated than that. |
Volker 25-Apr-2006 [4940] | Using rebol as shell is quitge nice. I wrap my favorit commands in functions, tab-completion for filenames and commands is there, call/console. i can mix pure rebol in, and want wrappers anyway for some long options. |
ScottT 25-Apr-2006 [4941] | don't forget ATTRIB for fast file finds from DOS console. Quickest way I know. |
Anton 25-Apr-2006 [4942] | It is fast, but I don't think it's able to look inside file contents as well. |
Ingo 28-Apr-2006 [4943] | Did anyone try to patch the behaviour of area? Especially I'd like to have: - autoindent - doubleclick on words in the area to do something interesting - e.g. look up in dictionary, use like a wiki word, ... - maybe add additional shortcut keys. I've tried to patch ctx-text/edit-text, but only was able to get no change at all, or crashes. Seems to be a bind problem: ctx-text/edit-text: func[][] ;no change ctx-text/edit-text: func[] bind [] in ctx-text 'edit-text ; unknown word ... |
DideC 29-Apr-2006 [4944] | You need to bind in ctx-text AND system/view (double bind) |
Ingo 30-Apr-2006 [4945] | Thanks Didier! |
Graham 1-May-2006 [4946x4] | One of the challenges I am facing in expanding my EMR is how to capture the consultation. At the moment I am using free text. But some products use lots of check boxes and based upon those ... more check boxes appear. And then a natural language sentence is constructed. |
Another way is to have the sentence prebuilt .. and there are active words eg yes/no in the sentence you can click on to change, or to enter values eg. temperature of xxx C. | |
How feasible is it to do the latter in View? | |
In some ways I guess it is like trying to build a rich text display where the words are active. | |
Allen 1-May-2006 [4950] | Graham, you could use the link style to popup an option list when clicked. Though that will be tedious for data entry. alternately use the autofill style for text boxes when you want both free text and or a standard list. |
Graham 1-May-2006 [4951] | I was thinking of the link style .. something unobtrusive. |
Henrik 2-May-2006 [4952] | >> get first [help.gif] == make image! ..... how do I get the size of the image this way? |
Gabriele 2-May-2006 [4953] | hmm, i guess you don't. you'll need a temp var. |
older newer | first last |