StrongED 4.69f9 released
Pages: 1 2
Steve Drain (222) 1620 posts |
Basalt currently has 274 – I could not do that without throwback. ;-) |
Steve Drain (222) 1620 posts |
Writing this brought up memories of the ZX Spectrum, where you did effectively edit the bytecode using the single-key entry system. I would not return there. |
Fred Graute (114) 645 posts |
There’s been another release of StrongED 4.69f9 to fix a few more bugs. http://www.stronged.iconbar.com/archives/releases/se469f9.zip If you already have StrongED 4.69f9, an update can be found here: http://www.stronged.iconbar.com/archives/releases/up469f9.zip Changes from the previous 4.69 (31-01-2016) release:
As always, all feedback is welcome and appreciated! |
Ronald May (387) 407 posts |
I notice when entering a new line in BASIC mode, the permission window pops up, I guess I could just use my old config, but if you could refresh my memory how to fix that please. |
Ronald May (387) 407 posts |
I have been using a mac keyboard with my Iyonix for a while. It is the clear type with a concave top and two sideways usb ports. |
Fred Graute (114) 645 posts |
The BASIC mode is configured to perform a number of actions when Return is pressed.
Casting keywords to uppercase is done by running a small add-on and it is the ‘Process’ function that triggers the permission window (so that you’re aware that external code is being called). When you click ‘Allow action’ then you can see what it does. If you’re happy with the result, you can click ‘Allow always’ next time and the action will be carried out in future without being asked for permission. If the result is not to your liking then there are two ways to deal with it. Click on ‘Deny always’, this will permanently disable the Process function (in BASIC mode). The down side of this is that it may also block Process based actions that you do want to use. The other way to deal with this is to alter the functions tied to the Return key so that it does what you want. Removing the Process function would stop the permission window being triggered, but keywords are then not uppercased. |
Fred Graute (114) 645 posts |
Default StrongED ties the DeleteRight function to the Delete key, it does not map it to another keycode. TaskWindow mode is different as most keys are passed on to the underlying task. You can change the keycode sent to a TaskWindow task by using the CharsToBuffer function, as you’ve already found.
If you want to have it set up globally then you’ll need to edit BaseMode. This will make it available in all modes (as long as they don’t override it). I doubt whether it would be useful though. It would just trigger whatever is tied to Ctrl-D (<4>) in a mode (or BaseMode). |
Ronald May (387) 407 posts |
Thanks for the explanation on BASIC mode, I’ll keep a copy in my store directory, along with the program archives. |
Pages: 1 2