Nick Retallack
Nick Retallack

Reputation: 19561

Wacom web browser plugin?

I found this web page which describes in detail a browser plugin that exposes Wacom tablet features such as pressure sensitivity in JavaScript. Unfortunately, the download link is dead. Does this product exist?

Upvotes: 3

Views: 9452

Answers (5)

thenickdude
thenickdude

Reputation: 1660

Pressure sensitivity is now exposed by the browser's Pointer Events API for all supported tablets (not just Wacom). Pointer events such as onpointermove will contain a "pressure" field that ranges between 0.0 and 1.0.

Pointer Events are supported by Chrome, Firefox, Internet Explorer (10+), Microsoft Edge and Safari (13+) on macOS and Windows 8+ (Windows 7 doesn't provide pressure information). See:

https://caniuse.com/#feat=pointer

Upvotes: 4

thenickdude
thenickdude

Reputation: 1660

Unfortunately the plugin uses NPAPI, and browsers are progressively dropping support for that (Chrome, Firefox), so it seems like the driver is no longer useful right now.

Upvotes: 2

KIKO Software
KIKO Software

Reputation: 16688

Visit the new site here:

http://us.wacom.com/developerrelations

It's true that the plugin itself is contained in the driver.

Upvotes: 0

Denilson Sá Maia
Denilson Sá Maia

Reputation: 49337

Also, someone has written a Linux plugin using NPAPI: https://github.com/ZaneA/WacomWebPlugin

Upvotes: 3

Wataru
Wataru

Reputation: 381

plugin file is included in Driver Installer.

If you extract Wacom Pentablet driver installer for Windows (this is executable zip archive), you can find TabletPlugins\fbWTPInstall_x86.exe (and fbWTPInstall_x64.exe).

This file is "Wacom Tablet Plugin installer for Netscape Browsers". So, execute it, then available Web browser plugin demos.

Upvotes: 2

Related Questions