up vote 17 down vote favorite
6
share [g+] share [fb]

I'm looking to add scripting capabilities to one of my program.

Do you know a good scripting library for Delphi?

link|improve this question

78% accept rate
feedback

12 Answers

up vote 19 down vote accepted

I'd strongly recommend PascalScript from RemObjects.

link|improve this answer
Coming from a TeamB member, I think it's the accepted answer! ;-) – vIceBerg Oct 22 '08 at 18:38
Former TeamB, now the Delphi product manager. – Jim McKeeth Oct 22 '08 at 19:45
Nick's link to PascalScript doesn't work. It should be: remobjects.com/ps.aspx – lkessler Jan 5 '09 at 5:58
I agree PascalScript is great. Though if speed is important, then I've found FastScript from FastReports outperforms RemObject's PascalScript, which is why I choose to use FastScript. Featurewise, they are very similar. – Ben Daniel Jan 23 '09 at 0:48
+1 for PascalScript, but if you need even more speed and features you should try PaxCompiler. – ErvinS May 25 '09 at 7:43
feedback

When I was still working on a project in Delphi and beginning to look at Python, I used the Python for Delphi components.

link|improve this answer
feedback

I cannot speak for any other library, but I have used Dream Scripter for quite a while (I even patched it up to Delphi 2007). My strong advice is NOT to use it, because it is the most horrible code I have ever seen. I will definitely not upgrade it for Delphi 2009. So whatever your experiences are, please share them.

link|improve this answer
feedback

There is also "Delphi Web Script", which despite the name is not really something for the web but a multi purpose Delphi like scripting language implemented in Delphi. It's open source and available from sourceforge (project dws2). I have successfully used it in a project about 3 years ago but it looks as if it is no longer actively developed.

link|improve this answer
1  
Got resurrected, now at code.google.com/p/dwscript – Eric Grange Oct 16 '10 at 12:46
feedback

PHP4Delphi allows you to call php scripts from within a delphi application, and while not strictly a scripting solution for a Delphi app, with a little bit of tweaking could easily be used as such.

link|improve this answer
feedback

I am thinking about adding TMSScripterStudioPro to my application. It comes with what looks like a decent IDE, it's priced reasonably and TMS support has always been among the best I have found anywhere.

link|improve this answer
I've used it to good effect - recommended. – mj2008 Oct 22 '08 at 16:23
feedback

There are plenty of options available. The first question is what language is your intended audience going to be familiar with, and your vendor support requirements. For a commercial solution, I would suggest FastScript as it supports Pascal, JScript, C++Script and BasicScript as language targets.

For the "freeware" self-support solution, I have used awScript sucessfully since Delphi 5ish. It wraps the Microsoft ActiveX libraries so you can write scripts directly in javascript or vbscript. Exposing existing Delphi classes to the scripting engine is trivial. I recently "upgraded" the library to Delphi 2009 by renaming the package and making a few minor changes (like adding version defines, and fixing small string references), and have yet to run into any difficulties thus far.

link|improve this answer
feedback

Pascal Script is supposed to be very good. Never used it in my projects, though.

link|improve this answer
Grrr, there's no way to make that link appear as a hyperlink! Must be the Jeff's HTML sanitizer :( Anyway, that's the same Pascal Script that Nick recommended few minutes later... – gabr Oct 22 '08 at 16:24
Reported as a bug: stackoverflow.uservoice.com/pages/general/suggestions/39072. You can vote for it if it bothers it too. – gabr Oct 22 '08 at 16:33
Jim, please don't change the url into snipurl form - it may not last long. – gabr Oct 22 '08 at 18:14
Got solution on uservoice! – gabr Oct 22 '08 at 18:18
feedback

I found link text this searching the net ;) recommended by Peter Below of TeamB ;)

After reading your comments, I found this looks better too.

link|improve this answer
Thanks Che. But the lastest version is for D5, so it seems not really up-to-date and still maintained. – vIceBerg Oct 22 '08 at 15:32
feedback

FastScript seems very nice.

link|improve this answer
feedback

LMD ScriptPack This package enables Delphi/CBuilder applications to support active scripting languages installed in Windows Scripting Host (such as VB Script, JScript, etc). Included integrated debugger for handling the supported script languages. Since Release 5.1 a native PascalScript implementation is available.

link|improve this answer
feedback

If you need speed, features and crossplatform (FreePascal) I would strongly suggest PaxCompiler.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.