New Post: Instantiating V8Runtime with V8RuntimeConstraints crashes
Hi slyngel, It looks like V8 now expects those constraints to be expressed in mebibytes, so try setting those properties to 24 instead of 24x1024x1024. In general we no longer recommend that you use...
View ArticleNew Post: Instantiating V8Runtime with V8RuntimeConstraints crashes
Thanks for the info! Awesome answer. Keep up the great work!
View ArticleNew Post: Is ClearScript supported for store apps?
Thanks for quick response. It is helpful.
View ArticleNew Post: Building clearscript with VS2012
Hi, I have been using 5.3 and want to upgrade to latest version. I am not able to build the latest source code with VS2012. My dev environment is not yet updated to VS2013 and I still use VS2012. Is...
View ArticleNew Post: Building clearscript with VS2012
Hi Satyendra, Unfortunately the V8 team has dropped support for Visual Studio 2012. You should be able to generate ClearScript binaries externally with a free version of Visual Studio 2013 and import...
View ArticleNew Post: Provide Pre-Built Download?
You can obtain necessary binaries from here: https://github.com/Taritsyn/JavaScriptEngineSwitcher more specifically, here:...
View ArticleNew Post: Azure Mobile Services Cannot Load V8 Interface Assembly
Got same problem on IIS 8.5. It is working on local IIS 7.5 (Windows 7)Before I put AssemblyResolve code I got an Exception from "at Microsoft.ClearScript.V8.V8Proxy.LoadAssembly()" and for...
View ArticleNew Post: Azure Mobile Services Cannot Load V8 Interface Assembly
Found what was the problem, ClearScript needed C++ redistributable 2012, while I've installed 2013 one.
View ArticleEdited Issue: Check for DispId attribute when looking for default property [74]
We are using ClearScript in our application as a replacement for the MS Script Control (to enable users to run custom scripts interfacing with an application-provided object), and we've encountered an...
View ArticleCommented Issue: Check for DispId attribute when looking for default property...
We are using ClearScript in our application as a replacement for the MS Script Control (to enable users to run custom scripts interfacing with an application-provided object), and we've encountered an...
View ArticleNew Post: class not defined error
hi, So I have this VB script:productOverride = New ProductValueOverride productOverride.NewValue = 2 productOverride.ProductId = 24 And I am getting a 'Class not defined: ProductValueOverride'. But I...
View ArticleNew Post: Generic types
In the front page of the project it say: Full support for generic types and methods, including C#-like type inference and explicit type arguments I am using VBScript... What would be the proper syntax...
View ArticleNew Post: class not defined error
Hello! Unfortunately VBScript's New operator works only on VBScript classes. To instantiate a CLR class, you have to use HostFunctions.newObj: engine.AddHostObject("host", new HostFunctions());...
View ArticleNew Post: Generic types
Hi, Suppose you want to use .NET's Dictionary generic type. The first step is to expose the generic type itself: engine.AddHostType("Dictionary", typeof(Dictionary<,>));Next, expose any...
View ArticleNew Post: Generic types
The HostFunctions class is part of the ClearScript library. Take a look at the ClearScript Library Reference, available here.
View ArticleNew Post: using VB as the scripting lang. How can I invoke the installed...
using VB as the scripting lang. How can I invoke the installed debugger from the script?
View ArticleNew Post: using VB as the scripting lang. How can I invoke the installed...
You can use VBScript's Stop statement.
View Article