Search found 1038 matches

by Rickard Johansson
01 Nov 2014 11:46
Forum: Scripts
Topic: Simple script - works slightly differently with RJTE upgrade
Replies: 3
Views: 14247

Re: Simple script - works slightly differently with RJTE upg

I've made a couple of changes in v10 (beta 1) that may help. The "Clipboard" object enables access to the Windows clipboard. Ex. String s = Clipboard.AsText; ... Clipboard.AsText = s; I also added an argument to the close function. bool Document.Close(bool bDiscardChanges = false); If you ...
by Rickard Johansson
10 Jul 2014 17:58
Forum: News
Topic: 64 bit version and Delphi XE6...
Replies: 2
Views: 13704

Re: 64 bit version and Delphi XE6...

These are superb news and what I really like about your wording is that it is "we" who get those compilers :) Yet another sign of your grandeur. Well, it does benefit us all. Right 8) Btw my Comodo AV gives me warning about 32-bit file, purportedly containing ApplicUnwnt.Win32.Hoax.ArchSM...
by Rickard Johansson
08 Jul 2014 18:37
Forum: News
Topic: 64 bit version and Delphi XE6...
Replies: 2
Views: 13704

64 bit version and Delphi XE6...

I've upgraded my Delphi 2007 version to Delphi XE6. This means we get a 32-bit and 64-bit compiler, a huge number of new components, native Unicode support... Converting the entire project will take some time, but it does give me an opportunity to clean up some things... It may take a month or two t...
by Rickard Johansson
11 Jun 2014 09:36
Forum: Syntax files
Topic: Quote characters in HTML text blocks
Replies: 2
Views: 13023

Re: Quote characters in HTML text blocks

Are you creating your own highlighter? If so, could you post it?

If you're not creating your own highlighter, is it a plain HTML file? I can't reproduce your issue using the few lines you've posted.
by Rickard Johansson
16 Apr 2014 11:30
Forum: Scripts
Topic: Help with script
Replies: 6
Views: 17861

Re: Help with script

Try this // C++ script { string s; int i,n; int startx,startLine,endx,endLine; if (Document.SelLength > 0) { Document.GetSelection(startx,startLine,endx,endLine); } else { startLine = 0; endLine = Document.LineCount - 1; }; Document.BeginUpdate(); try { i = startLine; while (i <= endLine) { // Get l...
by Rickard Johansson
26 Mar 2014 11:10
Forum: Scripts
Topic: Numeric base translator
Replies: 5
Views: 17465

Re: Numeric base translator

I implemented a different solution. Instead of replacing all components I simply made some changes to the event handlers. E.g. void KeyPress(TObject sender, char key) => void KeyPress(TObject sender, int key) void KeyPress(TObject sender, int key) { int base = 10; string name = TEdit(sender).Name; i...
by Rickard Johansson
26 Mar 2014 09:49
Forum: Scripts
Topic: Numeric base translator
Replies: 5
Views: 17465

Re: Numeric base translator

Made some minor changes. It still doesn't work properly yet. The editor component (TEdit) use ANSI while the script engine use Unicode. I need to replace all the components for events like entDecimal.OnKeyPress = &KeyPress; to work. I had to comment out some events for the script to work below. ...
by Rickard Johansson
23 Feb 2014 14:50
Forum: Scripts
Topic: Convert between HTML entities and special characters
Replies: 3
Views: 15466

Re: Convert between HTML entities and special characters

It's been fixed in the next release. Thanks!
by Rickard Johansson
12 Feb 2014 13:23
Forum: Syntax files
Topic: Highlight Object-Methods possible ?
Replies: 24
Views: 47432

Re: Highlight Object-Methods possible ?

I've replaced the old regex library and you can use something like this in the next version (v8.90):

[Keywords]
#Own functions=\$\w+\.\K\w+
by Rickard Johansson
01 Feb 2014 15:16
Forum: Syntax files
Topic: Highlight Object-Methods possible ?
Replies: 24
Views: 47432

Re: Highlight Object-Methods possible ?

I can't make changes to the regex dll file. I'll try to use a newer library but it will take some time to make it work.
by Rickard Johansson
24 Dec 2013 00:19
Forum: News
Topic: Merry Christmas
Replies: 1
Views: 12594

Merry Christmas

Merry Christmas everyone and happy holidays!


Image
by Rickard Johansson
23 Nov 2013 16:59
Forum: News
Topic: Next version ...
Replies: 1
Views: 11879

Next version ...

Right now I'm really busy and don't have much time to work on the program. I am still working on it though and a new version is coming ...
by Rickard Johansson
30 Sep 2013 17:18
Forum: News
Topic: Polish dictionary
Replies: 1
Views: 11624

Polish dictionary

I think there was something wrong with the Polish dictionary. I updated the files on the server.

To download - open the Addons dialog window and download it from the "Addons online" tab.
by Rickard Johansson
22 Sep 2013 18:14
Forum: Extensions
Topic: About extensions
Replies: 3
Views: 27513

Re: About extensions

I've updated the "AddSidebarPage" demo extension and added a caption. The new page should read "Test", if captions are displayed.
by Rickard Johansson
10 Sep 2013 16:38
Forum: Extensions
Topic: About extensions
Replies: 3
Views: 27513

About extensions

Extensions are just script files that are run at startup. Then they wait for an event to occur. The event can be a selected menu item, or a button clicked on, added by the extension. Create all extensions using the Quickbar => User Scripts tools. For more information on how to create an extension - ...