Questions tagged [scratchpad]
38 questions
0
votes
2 answers
Value of variable changes when page reloads
While coding for simple function declaration, there is a strange behavior by Firefox Scratchpad.
console.log(x);
var x = 0;
var func = function() {
console.log(y);
var y = 1;
};
func();
When I executed above code first time with Run,…

Tiny Jaguar
- 433
- 3
- 12
- 30
0
votes
1 answer
MWS : does not have access to the given marketplace
I am struggling with products API of Amazon MWS. I am using Amazon scratchpad, so implementation should be fine. I am just not sure about my API usage.
If I use reports API to get inventory report, I get list of products that I offer on co.uk…

Zdeněk Pečinka
- 19
- 6
0
votes
1 answer
How to register TSF with Windows Desktop speech engine
Here is my code to initialize and register with TSF:
::OleInitialize(NULL);
HRESULT hr=CoCreateInstance(CLSID_TF_ThreadMgr,NULL,CLSCTX_INPROC_SERVER,IID_ITfThreadMgr,(void **)&pThreadMgr);
if (FAILED(hr) || pThreadMgr==null)…

user2373071
- 310
- 5
- 10
0
votes
1 answer
How to incorporate speech dictation into a C# Windows Form Control based program
I am trying to incorporate speech dictation into a C# Windows Form Control which is a custom text editor. Here is my simple code to instantiate SpeechRecoginizer. My text editor control is accepting the speech dictation and displaying the dictated…

user2373071
- 310
- 5
- 10
0
votes
1 answer
Firefox scratchpad and security
I'm developing an HTML5 game using javascript and canvas, and I wonder how to protect it from the firefox scratchpad or any other script injection tools like it.
If any user can run its own code in mine, I really don't see how to prevent him from…

Stnaire
- 1,100
- 1
- 18
- 30
0
votes
1 answer
Inspecting Firefox Components.interfaces.nsIDOMWindowUtils.screenPixelsPerCSSPixel value in Javascript Scratchpad
I am using Firefox Scratchpad to understand the scaling behavior that
results when the user types the CTRL-PLUS and CTRL-MINUS keys.
In Javascript Scratchpad, I'm evaluating a snippet of Javascript code that accesses…

bgoodr
- 2,744
- 1
- 30
- 51
-1
votes
1 answer
how to fix "Error saving the scratchpad changes to the database"?
In correcting the envelope in docusign, a notification "Error saving the scratchpad changes to the database" appear.

user14042813
- 11
- 1
- 1
-1
votes
1 answer
Amazon MWS Error 25 - Do You See An Error With My XML?
I'm trying to automate the shipping confirmation of our Amazon orders, but the submit feed says, "We are unable to process the XML feed because one or more items are invalid. Please re-submit the feed.".
I've checked it against the documentation…

billabrian6
- 431
- 3
- 10
- 24