Javascript VirtualKeyboard 3.4.4 (Maintenance branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Javascript VirtualKeyboard 3.4.4 (Maintenance branch)
# 1  
Old 10-05-2008
Javascript VirtualKeyboard 3.4.4 (Maintenance branch)

Image Javascript VirtualKeyboard allows you to use any existing keyboard layouts without having them installed on your local PC. This tool is useful for embedding into a WYSIWYG HTML editor, a Web mail system, chat, forum, or any other application requiring user input. About 70 languages/130 keyboard layouts are supported. It has an easy and powerful design, allowing it to implement complex layouts like Korean, Japanese, Chinese, and so on. It has full support for keyboard and mouse input. It features a completely CSS-driven UI that is easy skinnable. License: GNU Lesser General Public License (LGPL) Changes:
Text input in the WYSIWYG editors was fixed. An image-free skin was added. Some minor problems in skins were fixed. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
V8JS.__CONSTRUCT(3)							 1						       V8JS.__CONSTRUCT(3)

V8Js::__construct - Construct a newV8Jsobject

SYNOPSIS
public V8Js::__construct TRUE ([string $object_name = "PHP"], [array $variables = array()], [array $extensions = array()], [bool $report_uncaught_exceptions]) DESCRIPTION
Constructs a new V8Js object. PARAMETERS
o $object_name - The name of the object passed to Javascript. o $variables - Map of PHP variables that will be available in Javascript. Must be an associative array in format array("name-for-js" => "name- of-php-variable"). Defaults to empty array. o $extensions - List of extensions registered using V8Js.registerExtension(3) which should be available in the Javascript context of the created V8Js object. Note Extensions registered to be enabled automatically do not need to be listed in this array. Also if an extension has dependen- cies, those dependencies can be omitted as well. Defaults to empty array. o $report_uncaught_exceptions - Controls whether uncaught Javascript exceptions are reported immediately or not. Defaults to TRUE. If set to FALSE the uncaught exception can be accessed using V8Js.getPendingException(3). RETURN VALUES
Returns a new V8Js context object. PHP Documentation Group V8JS.__CONSTRUCT(3)