Advanced Forum Search Results
-
I use libs from 0.4.0 sdk
http://sdlsdk.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=17839
As I understood It's final Microsift release of Managed JScript.
-
It's work with SL3 correctly.
-
I can not create typed array in JScript. I execute JScript in Silverlight/C# application like shown there. In MSDN written that typed Array can be created like var i1 : int[] = new int[5];
but JScript compiller raise exception: Syntax error: Expected ';' on Line 1 Column 11
Untyped Array created succesfuly.var a2 = new Array(10);I ...
-
Thanks! It's work.
-
Hello!
I try to make scriptable application using Silverleght DLR. When I try execute JScript code witch cotains two or more lines of code, execution only first line. For example:
I had Compiled SL application written on С#. Main page contains Label named "lblMessage" and Button with Click event handler.
private void ...