Advertisement
Guest User

Joy to the Key

a guest
Jun 9th, 2015
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.82 KB | None | 0 0
  1. Q.onRelease=function(){
  2.  
  3. textbox.text= textbox.text + "Q";
  4. }
  5. W.onRelease=function(){
  6.  
  7. textbox.text= textbox.text + "W";
  8. }
  9. E.onRelease=function(){
  10.  
  11. textbox.text= textbox.text + "E";
  12. }
  13. R.onRelease=function(){
  14.  
  15. textbox.text= textbox.text + "R";
  16. }
  17. T.onRelease=function(){
  18.  
  19. textbox.text= textbox.text + "T";
  20. }
  21. Y.onRelease=function(){
  22.  
  23. textbox.text= textbox.text + "Y";
  24. }
  25. U.onRelease=function(){
  26.  
  27. textbox.text= textbox.text + "U";
  28. }
  29. I.onRelease=function(){
  30.  
  31. textbox.text= textbox.text + "I";
  32. }
  33. O.onRelease=function(){
  34.  
  35. textbox.text= textbox.text + "O";
  36. }
  37. P.onRelease=function(){
  38.  
  39. textbox.text= textbox.text + "P";
  40. }
  41. A.onRelease=function(){
  42.  
  43. textbox.text= textbox.text + "A";
  44. }
  45. S.onRelease=function(){
  46.  
  47. textbox.text= textbox.text + "S";
  48. }
  49. D.onRelease=function(){
  50.  
  51. textbox.text= textbox.text + "D";
  52. }
  53. F.onRelease=function(){
  54.  
  55. textbox.text= textbox.text + "F";
  56. }
  57. G.onRelease=function(){
  58.  
  59. textbox.text= textbox.text + "G";
  60. }
  61. H.onRelease=function(){
  62.  
  63. textbox.text= textbox.text + "H";
  64. }
  65. J.onRelease=function(){
  66.  
  67. textbox.text= textbox.text + "J";
  68. }
  69. K.onRelease=function(){
  70.  
  71. textbox.text= textbox.text + "K";
  72. }
  73. L.onRelease=function(){
  74.  
  75. textbox.text= textbox.text + "L";
  76. }
  77. Z.onRelease=function(){
  78.  
  79. textbox.text= textbox.text + "Z";
  80. }
  81. X.onRelease=function(){
  82.  
  83. textbox.text= textbox.text + "X";
  84. }
  85. C.onRelease=function(){
  86.  
  87. textbox.text= textbox.text + "C";
  88. }
  89. V.onRelease=function(){
  90.  
  91. textbox.text= textbox.text + "V";
  92. }
  93. B.onRelease=function(){
  94.  
  95. textbox.text= textbox.text + "B";
  96. }
  97. N.onRelease=function(){
  98.  
  99. textbox.text= textbox.text + "N";
  100. }
  101. M.onRelease=function(){
  102.  
  103. textbox.text= textbox.text + "M";
  104. }
  105. Space.onRelease=function(){
  106.  
  107. textbox.text= textbox.text + " ";
  108. }
  109. a1.onRelease=function(){
  110.  
  111. textbox.text= textbox.text + "1";
  112. }
  113. a2.onRelease=function(){
  114.  
  115. textbox.text= textbox.text + "2";
  116. }
  117. a3.onRelease=function(){
  118.  
  119. textbox.text= textbox.text + "3";
  120. }
  121. a4.onRelease=function(){
  122.  
  123. textbox.text= textbox.text + "4";
  124. }
  125. a5.onRelease=function(){
  126.  
  127. textbox.text= textbox.text + "5";
  128. }
  129. a6.onRelease=function(){
  130.  
  131. textbox.text= textbox.text + "6";
  132. }
  133. a7.onRelease=function(){
  134.  
  135. textbox.text= textbox.text + "7";
  136. }
  137. a8.onRelease=function(){
  138.  
  139. textbox.text= textbox.text + "8";
  140. }
  141. a9.onRelease=function(){
  142.  
  143. textbox.text= textbox.text + "9";
  144. }
  145. a0.onRelease=function(){
  146.  
  147. textbox.text= textbox.text + "0";
  148. }
  149. comma.onRelease=function(){
  150.  
  151. textbox.text= textbox.text + ",";
  152. }
  153. period.onRelease=function(){
  154.  
  155. textbox.text= textbox.text + ".";
  156. }
  157. slash.onRelease=function(){
  158.  
  159. textbox.text= textbox.text + "/";
  160. }
  161. semi.onRelease=function(){
  162.  
  163. textbox.text= textbox.text + ";";
  164. }
  165. apo.onRelease=function(){
  166.  
  167. textbox.text= textbox.text + "'";
  168. }
  169. lbra.onRelease=function(){
  170.  
  171. textbox.text= textbox.text + "[";
  172. }
  173. rbra.onRelease=function(){
  174.  
  175. textbox.text= textbox.text + "]";
  176. }
  177. minus.onRelease=function(){
  178.  
  179. textbox.text= textbox.text + "-";
  180. }
  181. rslash.onRelease=function(){
  182.  
  183. textbox.text= textbox.text + "/";
  184. }
  185. equal.onRelease=function(){
  186.  
  187. textbox.text= textbox.text + "=";
  188. }
  189. lcarr.onRelease=function(){
  190.  
  191. textbox.text= textbox.text + "<";
  192. }
  193. rcarr.onRelease=function(){
  194.  
  195. textbox.text= textbox.text + ">";
  196. }
  197. quest.onRelease=function(){
  198.  
  199. textbox.text= textbox.text + "?";
  200. }
  201. colon.onRelease=function(){
  202.  
  203. textbox.text= textbox.text + ":";
  204. }
  205. quote.onRelease=function(){
  206.  
  207. textbox.text= textbox.text + "";
  208. }
  209. lbrac.onRelease=function(){
  210.  
  211. textbox.text= textbox.text + "{";
  212. }
  213. rbrac.onRelease=function(){
  214.  
  215. textbox.text= textbox.text + "}";
  216. }
  217. line.onRelease=function(){
  218.  
  219. textbox.text= textbox.text + "|";
  220. }
  221. under.onRelease=function(){
  222.  
  223. textbox.text= textbox.text + "_";
  224. }
  225. plus.onRelease=function(){
  226.  
  227. textbox.text= textbox.text + "+";
  228. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement