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

link|improve this question

There wasn't any question about what scriptable objects are. – tzot Oct 19 '08 at 23:06
feedback

2 Answers

up vote 1 down vote accepted

A scriptable object is an object that records the operations done to it and it can store them as a "script" which can be replayed.

For example, see: Application Scripting Framework

link|improve this answer
Community-wiki owned because I don't give a space-faring frak about reputation. – tzot Oct 19 '08 at 23:04
Is this a term that's specific to the framework in question? – mipadi Oct 19 '08 at 23:06
Ranking on google and reputation on SO are better than gold, my friend :) – Federico Ramponi Oct 19 '08 at 23:08
@mipadi: no, it isn't. The framework is just a framework facilitating the creation of scriptable objects. – tzot Oct 19 '08 at 23:18
@Federico Ramponi: I am not sure if "you are with us or with them" ;), but your comment is oh-so-very-true. – tzot Oct 19 '08 at 23:20
feedback

It means nothing in Python as scriptable objects are provided by Enthought's Traits module.

From Application Scripting Framework, which mentions that:

A scriptable type is a sub-type of HasTraits that has scriptable methods and scriptable traits.

And goes on to define:

A scriptable object is an instance of a scriptable type.

Traits is not part of the standard library but it is distributed as part of the Enthought Python Distribution.

Please don't confuse the two.

link|improve this answer
Well, seems the question was too language-specific. Anyway, I don't know why you deem necessary to explicitly say that traits is not part of the standard library. – tzot Oct 20 '08 at 7:06
Because the question would be better worded as "What does it mean IN TRAITS if an object is scriptable?" As it, you seem to imply that "scriptable objects" are a part of Python, when this just isn't the case. – Matthew Trevor Oct 21 '08 at 2:02
feedback

Your Answer

 
or
required, but never shown

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