Xojoscript and new framework

Can you use Text, Xojo.Core.Dictionary and Xojo.Core.Date in Xojoscript?

Nope. Not directly. They are objects. But you can use a context.

So if I pass a Xojo.Core.Dictionary in a context, can I access its values like normal?

No. as Michel said, you can’t pass an object down to a script (or back up for that matter). What you would need to do is create a class in xojoscript that shadows the interface of a dictionary and link them together using basic types. It’s not trivial, but it can be done. Lemme see if I can find an example of how to do this…