2013-10-09, 01:48
Whats up Pi'ers. I'm having trouble installing an addon called Chinese keyboard addon module. I've downloaded the zip file from the original source but clicking on the zip file using the Pi doesnt do anything. I've looked into more details about this module and there is a guy that says I should do this:
1. Add required import in your addon.xml
Code:
<requires>
. . .
<import addon="script.module.keyboard.chinese" version="1.0.0"/>
</requires>
2. Normal Use ChineseKeyboard
Code:
import ChineseKeyboard
default=''
heading='中文输入法'
keyboard = ChineseKeyboard.Keyboard(default,heading)
keyboard.doModal()
if (keyboard.isConfirmed()):
input_string = keyboard.getText()
So, my question is. Do I have to do this? If so would i need to SSH into the PI to access the files? Please bare with me as this is my first Pi project.
1. Add required import in your addon.xml
Code:
<requires>
. . .
<import addon="script.module.keyboard.chinese" version="1.0.0"/>
</requires>
2. Normal Use ChineseKeyboard
Code:
import ChineseKeyboard
default=''
heading='中文输入法'
keyboard = ChineseKeyboard.Keyboard(default,heading)
keyboard.doModal()
if (keyboard.isConfirmed()):
input_string = keyboard.getText()
So, my question is. Do I have to do this? If so would i need to SSH into the PI to access the files? Please bare with me as this is my first Pi project.