|
Comments and Discussions
|
|
 |
 |
please help me VirtualKeyboard development using jquery source code .([email protected])
|
|
|
|
 |
How is it possible above keyboard code use in one page at multiple time.
I want customize virtual keyboard and put language selection keyboard outside of the keyboard desk.how is it done please send me reply fast.
|
|
|
|
 |
I have used it and replaced textarea with textfield. But upon entering the characters in textbox its value is not set. I want to get whatever is entered in textfield. Is there any help??
|
|
|
|
 |
Please add an example here.
For sure, VK changes a value of a text field.
|
|
|
|
 |
Hello
I want to movable this keyboard can we do this
anujchauhan
|
|
|
|
 |
I have successfully integrate VKB with php coding(php chat). Now I would like to integrate it with flash coding if possible? If yes, how would I go about doing it?
|
|
|
|
 |
Hi!
I have no idea, how to integrate keyboard with Flash, but i suppose that it is possible.
-Ilya
|
|
|
|
 |
I dont know why but setup layoutsa not working using both the techniques.....
If it worked for any one..anyone out there please make a layout for mee too...
i need JP(japanese), IS(Indian Script hindi) and US(english)...
please please help....
Layout Code Layout Name Copyright Saved
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
/> getCode()?> getName()?> getCopyright()?>
it shows something like this when i click on index.php
and an empty page using html...
please please help....
|
|
|
|
 |
Hi,
I'm trying to make an authentication page using the
Virtual Keyboard but I saw that when I use the
Virtual Keyboard the "readonly" attribute of my
input textbox changes to normal mode then I'm able
to user the fisical keyboard. I won't the user
to able to use the fisical keyboard.
It is a "by design" behavior or it is a known bug???
Thanks in advance.
César.
|
|
|
|
 |
Hello César,
Do you mean that when you press a key on the physical keyboard, the 'virtual' symbol is printed in the text field?
If yes, then this is the by-design behavior of VK. This highly improves keyboard usability, because the mouse input is terribly slow.
Whether keyboard does reset the 'readonly' flag from the text field and user is able to input text when keyboard is closed, then please file a bug.
Best regards,
Ilya
|
|
|
|
 |
The virtual keyboard is a very good product. However, some organizations in the US will not use it because its a non US product. This includes the government. So I encourage US based programmers to take on the task of creating a virtual keyboard.
|
|
|
|
 |
Hi,
Probably there are any other options exists, beside designing a new keyboard from scratch?
--Ilya
|
|
|
|
 |
I downloaded the full version.
Where/How do i change layout to pop-up? Right now it's plain text or iframe i think.
|
|
|
|
 |
If you'd like to have the popup VK, please check the demo_popup.html example.
--Ilya
|
|
|
|
 |
I know this is VirtualKeyboard but is there anyway we can add to Windows keyboard layout. OS before Vista does not have 3rd world country listed. There's also 3rd party keyboard layout, but I like the layout provided by this. Hope I'm making sense.
|
|
|
|
 |
Hi,
Could you please explain this a bit?
--Ilya
|
|
|
|
 |
well you know how windows has multi language you can setup(the language bar)where you can switch language/kblayout with ' ~ ' on Vista and some XP modified for other country. For my XP i could either use Ctrl or Alt plus Shift Key. Does that make sense? Only wish I could show picture of what i'm talking bout.
|
|
|
|
 |
I'm trying to embed this VK to phpfreechat but I dont know where the text file is located to input.
"VirtualKeyboard.toggle('target_input_field_id','keyboard_holder_id');"
The first part:
<script src="vk_loader.js?vk_layout=AM%20Armenian%20Eastern&vk_skin=soberTouch">
type="text/javascript"</script>
was added between the body as mentioned.
|
|
|
|
 |
Hello,
I either don't know api and internals of phpfreechat.
I suggest you to ask developers on their forum, probably they will tell you where to add a button for showing the VK.
I'll take a look on this application, when i get a free time.
--Ilya
|
|
|
|
 |
Ok. I finally got my button(keyboard icon)added on, but dont know how to make it link to the keyboard.
<div class="pfc_btn">
<img src="<?php echo $c->getFileUrlFromTheme('images/button_set.gif'); ?>"
alt="virtual keyboard" id=""
onclick="I know I need to put something here" />
</div>
I'd also added as insstructed.
<html>
<head>
<SCRIPT src="vk_loader.js" type="text/javascript"></SCRIPT> <-------added
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Chat Room</title>
<link rel="stylesheet" title="classic" type="text/css" href="style/generic.css" />
<link rel="stylesheet" title="classic" type="text/css" href="style/header.css" />
<link rel="stylesheet" title="classic" type="text/css" href="style/footer.css" />
<link rel="stylesheet" title="classic" type="text/css" href="style/menu.css" />
<link rel="stylesheet" title="classic" type="text/css" href="style/content.css" />
</head>
And this also as instructed.
<td class="pfc_td2">
<input type="text"
id="pfc_words"
title="<?php echo _pfc("Enter your message here"); ?>"
maxlength="<?php echo $max_text_len; ?>"/>
VirtualKeyboard.toggle('target_input_field_id','keyboard_holder_id'); <----added
</td>
|
|
|
|
 |
Hi,
Ok, i got the problem. I'll try to make more comprehensive embedding instruction.
You have to alter the top code block as follows:
<div class="pfc_btn">
<img src="<?php echo $c->getFileUrlFromTheme('images/button_set.gif'); ?>"
alt="virtual keyboard" id=""
onclick="VirtualKeyboard.toggle('pfc_words','kbd_holder');" />
</div>
and bottom
<td class="pfc_td2">
<input type="text" id="pfc_words"
title="<?php echo _pfc("Enter your message here"); ?>"
maxlength="<?php echo $max_text_len; ?>" />
<div id="kbd_holder"></div>
</td>
This should work. =)
With the best regards,
Ilya
|
|
|
|
 |
As instructed I added and did not work. I'd noticed tho that the button is above the text box on IE but left of the text box on FF. How does it knows where my virtual key board is installed? It's install root(html)/vk.
<td class="pfc_td2">
<input type="text" id="pfc_words"
title="<?php echo _pfc("Enter your message here"); ?>"
maxlength="<?php echo $max_text_len; ?>" />
<div id="kbd_holder"></div>
</td>
<td class="pfc_td3">
<input type="button"
id="pfc_send"
value="<?php echo _pfc("Send"); ?>"
title="<?php echo _pfc("Click here to send your message"); ?>"
onclick="pfc.doSendMessage()"/>
</td>
</tr>
</tbody>
</table>
<div id="pfc_cmd_container">
<?php if ($display_pfc_logo) { ?>
|
|
|
|
 |
Hi,
You've to provide the proper URL in the included <script> tag.
As soon as you put VK into the /vk/ folder in the site root, you've to include VK script as follows:
<script type="text/javascript" src="/vk/vk_loader.js"></script>
If VK has been put under the phpfreechat's root (it might be different from the site root), you've to use (note, there's no leading slash in the "src" attribute).
<script type="text/javascript" src="vk/vk_loader.js"></script>
Regarding the container layout, you've to alter CSS rules for it. For example, use the following container definition
<div id="kbd_holder" style="clear: both;" ></div>
Wbr,
Ilya
|
|
|
|
 |
OK, i guess the first info was correct. Just add those two lines. I just didn't direct it to the right folder that's why it didn't work the first time.
Thanks you for you help and patients.
|
|
|
|
 |
Hello,
Congratulatuions! =)
I saw your chat, it looks really smooth =)
May i ask you publish complete changes you made to integrate VK with phpfreechat?
I'll be glad to publish this info on VK project site for reference.
Wbr,
Ilya
|
|
|
|
|
 |
|
General News Suggestion Question Bug Answer Joke Rant Admin
Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.
|
|