Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2023
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. :X:ASDr::
  2. str := "
  3. (
  4. ## Social communication and social interaction
  5. * social approach:
  6. * back-and-forth conversation:
  7. * sharing of interest and emotion: interest (-), emotion (-), affect (-)
  8. * initiate or respond to social interactions or group play:
  9. * integrated verbal and nonverbal communication:
  10. * eye contact:
  11. * body language and gestures: instrumental gestures(-), descriptive gestures(-)
  12. * facial expression:
  13. * adjusting behaviors to suit various social contexts:
  14. * imaginative play:
  15. * making friends:
  16. * interest in peers:
  17. * sharing or showing behaviors:
  18. * spontaneous imitation of actions:
  19. * offering comfort:
  20.  
  21. ## Restricted, repetitive behaviors and interests
  22. * motor stereotypies:
  23. * lining up toys or flipping objects:
  24. * spinning around:
  25. * hand and finger mannerisms:
  26. * echolalia:
  27. * idiosyncratic phrases:
  28. * pronominal reversal:
  29. * inflexible adherence to routines:
  30. * rituals:
  31. * distress in small changes:
  32. * rigid thinking:
  33. * restricted interests:
  34. * unusual attachment to objects:
  35. * hyperreactive to sensory input:
  36. * hyporeactive to sensory input:
  37. * toe walking:
  38. )"
  39. SendString(str)
  40. return
  41.  
  42. :X:ADHDr::
  43. str := "
  44. (
  45. [Attention]
  46. #無法注意細節或容易粗心犯錯()
  47. #工作或遊戲難以持續注意力()
  48. #無法遵循指示完成功課/家事()
  49. #對話時好像沒在聽()#組織和活動上有困難()
  50. #逃避、討厭需要持久心力工作()
  51. #經常遺失工作活動所需物品()
  52. #容易分心()#日常生活中忘東忘西()
  53. [Hyperactivity/Impulsivity]
  54. #手腳不停動/蠕動()#維持安坐時離席()
  55. #在不宜場所跑或爬()
  56. #無法安靜地玩休閒活動()#經常活躍好像馬達()
  57. #太多話()#衝口說出答案()#難以等待()#打斷別人()
  58. )"
  59. SendString(str)
  60. return
  61.  
  62. SendString(String) {
  63. bak := ClipboardAll
  64. Clipboard := ""
  65. Clipboard := String
  66. ClipWait 1
  67. if (ErrorLevel) {
  68. MsgBox 0x10, Error, Couldn't set Clipboard text.
  69. } else {
  70. Send ^v
  71. Sleep 1000
  72. }
  73. Clipboard := bak
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement