scriptable

What can it mean if an object is scriptable?

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

Pointer to Silverlight Scriptable Object is Null when Silverlight Object is Hidden

When referencing a silverlight scriptable object using javascript via, var uploadControl = document.getElementById("FileUpload1"); uploadControl.Content.FileUploader.UploadFile(); I get a null pointer (FileUploader ref) when the silverlight object has an added attribute of style="display:none" or visibility set to hidden. This only ha...

is it possible to script a .XML file

Hi, 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 than serve it as a file. when the .XML file is called it will excute a series of calls example make a DB trip and then return the re...

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) item.DoSomething(); /// Having syntax highlighting + code completion would be awesome but I could live without it. I would not want to require use...

Rhino: How to get all properties from ScriptableObject?

Hi guys. 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 (NativeObject) is returned to me in Java function. E.g. public Static void jsStaticFunction_test(NativeObject obj) { //work with o...

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 like multithreading, template wizardry and multiple inheritance. As the scripting language, Python is preferred, but Lua might be accepted ...