Lines Matching refs:script
129 static void executeScript(const PluginObject* obj, const char* script);
253 char* script = argv[i];
254 if (script == strstr(script, "mouse::")) {
256 obj->evaluateScriptOnMouseDownOrKeyDown = strdup(script + sizeof("mouse::") - 1);
257 } else if (script == strstr(script, "key::")) {
258 obj->evaluateScriptOnMouseDownOrKeyDown = strdup(script + sizeof("key::") - 1);
260 // When testing evaluate script on mouse-down or key-down, allow event logging to handle events.
374 static void executeScript(const PluginObject* obj, const char* script)
380 npScript.UTF8Characters = script;
381 npScript.UTF8Length = strlen(script);