Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
621 views

How do I make a nasty C++ program scriptable with Python and/or Lua?

I'm confronted with the task of making a C++ app scriptable by users. The app has been in development for several years with no one wasting a thought on this before. It contains all sorts of niceties ...
8
votes
6answers
308 views

How can I make my application scriptable in C#

I have a desktop application written in C# i'd like to make scriptable on C#/VB. Ideally, the user would open a side pane and write things like /// foreach (var item in myApplication.Items) ...
3
votes
1answer
805 views

Rhino: How to get all properties from ScriptableObject?

I am using a Javascript object as an object with configuration properties. E.g. I have this object in javascript: var myProps = {prop1: 'prop1', prop2: 'prop2', 'prop3': 'prop3'}; This object ...
0
votes
1answer
55 views

Scriptable Plugin, Javascript returns undefined

Im trying to write a scritable plugin and I am using mozilla's example below as my guide, as well as looking at firebreath to see how it wraps the code. I am getting stuck on the return value to ...
0
votes
4answers
375 views

Python 'int' object is not subscriptable

Im trying to read a file and make sure that each value is in order. I dont think im converting the string into the integer correctly. Here is some of my code. I am also trying to use flags. fileName ...
0
votes
1answer
96 views

silverlight databinding not working from scriptable member

We have exposed a silverlight page as a scriptable object. It has one scriptable member. The page's datacontext is a viewmodel object, of typ TestViewModel with one property string Description. The ...
0
votes
3answers
80 views

is it possible to script a .XML file

is it possible to script a .XML file? what we are after is there will be a .XML file on a webserver (IIS) for e.g. www.myserver.com/update.xml which when called should execute it as a script rather ...
0
votes
2answers
210 views

What can it mean if an object is scriptable?

Exactly what the title says. Note, this is not about "subscriptable" objects.