JScript is a scripting language based on the ECMAScript standard, created by Microsoft and implemented in a range of environments. You would expect this tag to accompany questions regarding these environments, such as Windows Script Host (WSH), Active Server Pages (ASP) and HTML Applications (HTA).

learn more… | top users | synonyms (1)

0
votes
1answer
29 views

Can a function's return value be an lvalue in JavaScript?

Microsoft allows to set environment variables in JScript with the following syntax: var sh = WScript.CreateObject("Wscript.Shell"); var env = sh.Environment("PROCESS"); env("TEST") = "testvalue"; I ...
0
votes
0answers
4 views

javafx jscript runtime error

When running the sample java fx applications or making my own fx application in netbeans I get a message before the software runs that is titled Microsoft JScript runtime error. The message says ...
0
votes
1answer
14 views

Jscript image tag creation gives an error

function pushImage () { var img = new Image(); img.src = '/waroot/chart/chart.png'; document.getElementById("test1").innerHTML = "<img src='/waroot/chart/chart.png'>"; ...
0
votes
0answers
20 views

XMLDOM.save(Response) do nothing instead of throwing exception

Instead of fail with "buffer limit exceeded" error this code works, but do absolutely nothing. Repsonse is empty and there's nothing indicating that something gone wrong. reponseXML = ...
-1
votes
0answers
23 views

crm 2011 calling silverlight function from jscript

I get the following error when trying to access a silverlight function from a silverlight web resource i've added to a form via a field's onchange event. Are there any other security settings in IE ...
1
vote
1answer
31 views

Get Audio File Duration Via a Microsoft DLL or Utility

Is there a Windows dll or utility that can be used to see the duration (HH:MM:SS) of an audio file (WMA, MP3, or WAV) that can be accessed from a script (specifically JScript)? I know there is one, ...
-4
votes
0answers
20 views

jscript convert to vb 2010? [closed]

<job> script language="jscript"> var add=[12,2,17,5,16,31,28,10,16,20,22,1]; var subst={58:122,59:121,60:120,61:119,62:118,63:117,64:116,91:115,92:114,93:113,94:112,45:111,96:110}; ...
1
vote
1answer
69 views

Best way to post and get back html elements in classic asp for validation without session vars

I am currently working on some pages that require a post to an asp validation script, then repopulating the data (that hasn't been saved to the DB yet) back into their respective elements on the form. ...
1
vote
1answer
52 views

Can't debug JScript anymore because of an attached debugger (which is not attached!)

Context: Windows Server 2008 R2 SP1, 64bit processor, VS2010 Using the //X technique for script debugging, and debugging JScript, I'm getting Unable to attach to the crashing process. A debugger ...
1
vote
0answers
28 views

creating a Microsoft.JScript file

Hi everybody, I just heard about Microsoft.Jscript and I saw its structure and I'm fascinated whit it. I'm working with Visual Studio 2012 and ASP .NET MVC 4 and there's no way to find out how do ...
0
votes
1answer
56 views

json2.js JSON.stringify() generates stack overflow when handling a little bigger value

JSON.stringify(value) can not handle just a little bigger value. It makes "stack overflow" error. Is there a workaround? json2.js is from https://github.com/douglascrockford/JSON-js I am running my ...
1
vote
0answers
43 views

RSS FEED read from local rss file

I am trying to read rss feed from bbc.com. I successfully read ess from bbc.com. But when I read rss from my local computer.. RSS not found... My Codes are here... <?xml version="1.0" ...
0
votes
1answer
113 views

invoke .vbs from batch script

In continuation to the script provided by rojo at escape double quotes in param file to batch script, after I have parsed the initial data file, I need to invoke a .vbs script from the batch. The ...
0
votes
0answers
27 views

Is there any difference between executing a bare-word stored procedure and using EXEC (in ADODB)?

Context: JScript, ADODB.Connection, Windows Server 2003, SQL Server 2000 Given the following code var dsn = "DRIVER={SQL ...
0
votes
1answer
27 views

Disable/enable an input field

Using this sample code, I am trying to enable/disable the field "arrdatfrom". However, once this text field has been DISABLED, i cannot get it to be re-ENABLED. The function below gets executed ...
0
votes
1answer
41 views

Delele shortcut linking to non-existing file

Here's my problem: I need to write a script deleting shortcuts that are linking to non-existing files and shows which shortcuts were deleted. Script on JScript or VBScript (Windows Script Host) How ...
1
vote
0answers
39 views

How to start a new thread in JScript.NET

I am starting a new thread in my Jscript.Net file like this : function clearinternalfaults( param : String) { ThreadPool.QueueUserWorkItem(MyWorkItem); } public function MyWorkItem(state : ...
0
votes
0answers
39 views

Strange behavior of eval() in global context and in function context. IE9 & IE10

I have call eval() function in global context with such code: eval( (new ActiveXObject("Scripting.FileSystemObject")).OpenTextFile("/BaseScripts/sft.js", 1).ReadAll(), ); After that all local ...
0
votes
0answers
15 views

Defining an event handler in Jscript.net

I have a JScript.net file which uses some methods from a c# dll file. I can call all the methods and properties inside it, but when I try to define a handler and associate it with some event from the ...
1
vote
1answer
54 views

Why this element is “undefined” — it clearly exists

I am getting what seems to be a very odd error in a web page. This is happening in both VS2008 and VS2012. In the following: <div class="content_header" onclick="tierMenu(menu2,img2)"> ...
1
vote
1answer
22 views

How can I retrieve the restiction base value from an XSDsimpleType through EA scripting tool?

I'm making a script to export an XSD from its modelization in enterprise architect to an excel file. So far it's okay though when examining an element stereotyped "XSDSimpleType", I cannot gets its ...
1
vote
0answers
15 views

How do I set the output file's version in JScript.NET using JSC?

I'm using jsc.exe (I don't have Visual Studio) to compile a JScript.Net script into a DLL, and I want to be able to set the version info. Is there any way to do this?
1
vote
2answers
64 views

Primitive values of WMI classes

This is a complicated idea, and I hope you'll bear with me as its articulation is difficult. It seems that some WMI classes have a primitive value that can be queried, while others do not. This has ...
0
votes
0answers
70 views

Passing C# object to JScript

I have this working: Microsoft.JScript.Vsa.VsaEngine engine = Microsoft.JScript.Vsa.VsaEngine.CreateEngine(); string js = "15+10"; var result = Microsoft.JScript.Eval.JScriptEvaluate(js, engine); ...
1
vote
1answer
37 views

Sys.ParameterCountException on extend of simple textbox control using microsoft js

Here s my code trying to extend a textbox with microsoft ajax libary On Page code is as follows : Code in the .js file The error on debug is as follows what wrong am i doing in my code ?
0
votes
3answers
40 views

How to modify JavaScript object name?

In JavaScript I have following code: var rights = { 'One': [ 1, 1, 0], 'Two': [ 1, 0, 0], 'Three': [ 0, 1, 1 ] }; And printing: for (item in rights) Response.Write(item + ' = ' + ...
1
vote
1answer
41 views

Communication between MS Word and other process

I have a Word document open on my desktop. I want to be able to get information about the status of the Word document, say the doc url or content. What are the means to achieve it? Currently, I'm ...
2
votes
1answer
156 views

How to install script language documentation locally for Visual Studio 2012

I can only find documentation of VBScript, JScript and the Windows API scripting support (WScript etc.) online. No matter what I install locally, apparently it's not the documentation set that ...
1
vote
1answer
40 views

How do I implement CloudPort side logic? JScript or VBScript produce an ActiveX control fault (even when left dummy, with empty-body functions)

The team I am working with has bought a CloudPort license (from CrossCheck Networks) and we are currently facing the problem of not being able to implement any sort of logic in the service Mocks (to ...
0
votes
1answer
36 views

Query a user's “Now Playing” in iTunes?

I am trying to create an application similar to the last.fm scrobbler. but geared specifically to a certain artist. I'd like to be able to call the album the user is currently playing in tunes and ...
0
votes
1answer
53 views

Autostart option plupload 1.5.6

This question was already answered here and here. But with version 1.5.6 placing init() before FilesAdded(...) makes it totally unresponsive. As well autostart uploading does not start at all either ...
0
votes
1answer
113 views

Retrieving Email from pop3 in WSH ?

Is there a way to retrieve emails from a pop3 server in WSH ? My goal is to get attachement from email having specific sender / subject, and parse the file ... I'm using microsoft CDO to send mail, ...
2
votes
2answers
60 views

How can I list all method of a class/object?

How can I list all available method of a class or object in jscript.net? Is it even possible?
0
votes
0answers
160 views

Photography Portfolio website with CMS [closed]

I have been approached to design a photography portfolio website. I am leaning towards using something similar to http://www.csstemplateheaven.com/2012/02/pro-photography-theme/. Which I would ...
0
votes
3answers
82 views

Jscript: is it possible to set the variable dynamically?

In config.txt, I have the following strings: Dispatcher=argo Address=10.5.23.14 User=joe In my script.js, I have the variables: var Dispatcher, Address, User; In script.js, I read config.txt, ...
3
votes
1answer
135 views

How to play list of songs in server side and send only the lyrics of the current song to the client side in php?

This is an small package for an office staffs. I am trying to develop a php application that should run mp3 song on server and send the lyrics of the current song(only) to the client side. I need to ...
0
votes
2answers
50 views

JScript url replacement

Ok here it goes, I'm making a JScirpt for a page so you can press a keyboardbutton to move to the next page. The page URL looks like this; http://example.org/12345 , so what i want my script to do is ...
1
vote
1answer
127 views

ERROR: Duplicate Record Button

I am Building a test solution, to test I aim to create a duplicate template of an Account on click of button, plugin then fires to include the copy of all the contacts related. I am currently doing ...
1
vote
2answers
52 views

Re-sizing with a relative position div

I've been playing around with this a bit and can't quite figure it out so... I have what is essentially a sliding sidebar. The initial state looks like this. #sidebar { position: fixed, ...
1
vote
1answer
93 views

How to download a webpage with incorrect character encoding using Windows scripting?

I'm trying to download this test page http://173.192.48.92/test.php using JScript under WSH. I'm using the WinHttp component like this: WinHTTP = WScript.CreateObject('WinHttp.WinHttpRequest.5.1') ; ...
1
vote
2answers
289 views

looking to use javascript to save a webpage as a text file

it's a sports site with lots of text, i will be sorting through the text for interests later. the only code that i have come across is: <html> <body> <script language="JScript"> ...
0
votes
1answer
22 views

Unable to call function

When using this below code, i need to call the Transmit_SOAP() function. But it fails to call. Is there any problem? function sample() { var xmlSoapTemplate; xmlSoapTemplate = new ...
0
votes
1answer
70 views

Newline in text file created in jscript via activeXObject

Okay from the top: Using the following code I can create a text file using jscript in an htm file from Internet Explorer via an ActiveX object. Yay! However, opening the text file in Notepad I noticed ...
0
votes
1answer
79 views

How to ignore utf-8 encoding errors when using WinHttp under WSH?

I'm using the following script to get the content of a URL: WinHTTP = WScript.CreateObject('WinHttp.WinHttpRequest.5.1') ; WinHTTP.Open( 'GET', theUrl ) ; WinHTTP.Send() ; var content = ...
3
votes
2answers
270 views

CRM 2011 JScript retrieveMultiple throwing Bad Request Error

I am trying to retrieve multiple records using oData on Contact form but it's throwing Bad Request error. Can anyone suggest me why it's happening. Thanks in advance JScript // Retrieving multiple ...
-2
votes
1answer
115 views

Can't find variable: $

var scriptFile = $(tempNode).attr("customJScriptSrc"); When passing this i get “Reference Error: Can’t find variable: $” Kindly suggest me any alternative methods.
0
votes
1answer
702 views

xslt parse XML string into variable and use Xpath

My (simplified) input XML file contains the following: <?xml version="1.0" encoding="UTF-8"?> <main> <DATA_RECORD> <MESSAGE>&#60;pd&#62;&#10; ...
0
votes
1answer
26 views

Passing `null` parameter from jscript to COM interface?

Consider the following interface definitions: [ //... dual, //... ] interface IFoo : IDispatch{ } [ //... dual, //... ] interface IBar : IDispatch{ [propput, id(1)] HRESULT ...
2
votes
1answer
496 views

Parsing a JSON object array in Excel VBA

I know a similar question has been asked and answered before a few times: Parsing JSON in Excel VBA, Excel VBA: Parsed JSON Object Loop However, the above solution doesn't work if I am trying to ...
1
vote
1answer
118 views

How to use jScript 9 features in a VB6 host

I want to use the new JScript features in IE9 (native json, ...) from a VB6 Host. From what I've read (see ...

1 2 3 4 5 6