install flash player automatically with javascript [closed] - javascript

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
i need install flash player on IE when it's not installed.
Is a way to install plugins on IE withe pure JAVASCRIPT?
I think there is a solution in ACTIVEX but i couldn't find it ,

You can't. There is no way that JavaScript can get out of the browser context to do this (not without exploiting some kind of loophole, which would be patched soon, hopefully!)

Related

How to build Tauri app with open JS code? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 11 days ago.
Improve this question
Is it possible to build a tauri project in such a way that the javascript code remains open and editable so that I don't have to recompile the whole project?
I searched for a similar question on the Internet and did not find an answer.
That's tauri dev's default behavior
However javascript doesn't have HMR you can use vite instead: https://tauri.app/v1/guides/getting-started/setup/vite

How can get the browser version users use on mobile? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
During mobile web frontend development, how can get the browser version users use on mobile?
I want to get information about the 'samsung internet browser' and 'naver app' versions and do something different depending on the version they have installed.
window.navigator can get them.
Ref : https://www.w3schools.com/jsref/obj_navigator.asp

Creating a WebGL Earth with three.js [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I got a code from web, but this code do not run, I need some HTML code to make it RUN in my browser, someone can help ?
The original code I take from this website (github repository)
http://blog.thematicmapping.org/2013/09/creating-webgl-earth-with-threejs.html
Github code repository
https://github.com/turban/webgl-earth
To use WebGL you should run a web server. It will take you about 30 seconds.
Here's 4-5 options
Never disable security in your browser

How can I hide the source code of a nodeJS solution built with Electron (asar files)? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I look for the best way to hide the code of a solution built with Electron.
Any ideas?
To build the solution with Electron having asar files is not enough. I really need to hide the code so it should not be easy to retrieve.
There are some possibilities. Take a look at https://developers.google.com/closure/library/docs/closurebuilder. It produces a Java' compiled output content (.jar). Then, you can use a jar module for Node.JS in order to access the internal content (like https://www.npmjs.com/package/jarfile).

How should I go about writing a JavaScript plugin API in Ruby? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm doing a project in Ruby, and I want to be able to write plugins for it in JavaScript, so I'm working on a JavaScript API for it. How should I go about doing this?
I would recommend using an existing javascript interpreter, like therubyracer. You can eval the plugin code and interact with it through that.

Categories

Resources