Jump to content

phuongthuylinhnga

Members
  • Posts

    8
  • Joined

  • Last visited

phuongthuylinhnga's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I think Send() like "type by keyboard". I dont say controlsend or another send. My problem is type to input/edit by keyboard, it don't show vietnamese language.
  2. I'm not mixing things up. I just want type Vietnamese language in input/edit of my gui . And @Nine said: "it is interfering..." so I just check what he said. By open notepad by autoit and StartMenu so it's different between 2 ways, I've just test that after he said and I wrote what I've tested. I think autoit affect to window "notepad" or window "gui" so I can't type vietnemse language. I used controlsend and send each character (insert each sleep(1000) between them), it can't type vietnamese too. If you want test or check what I say, you can download run unikey to test or check. It's safe, whole vietnamese people use this: https://www.unikey.org/assets/release/unikey43RC5-200929-win64.zip. You can run it and choose like this image, change tray icon unikey from "E" to "V" to type vietnamese language, example: type : "as" it's show "á", "vieejt nam" it's show "việt nam". It's take your time so much, maybe you don't test or check. But i'm just telling you to understand what is my problem: "I just want type Vietnamese language in input/edit of my gui"
  3. I'm newbie I can't edit this post. I create new. When I open notepad in start menu and use: Send(" as as") it show " á á" . when I open notepad by Autoit and use : Run('notepad.exe') $hwnd=WinWait('Untitled') Send(" as as") It show " as as" I think problem maybe is Autoit... So, I still dont know how to type vietnamese language to edit/input. Thanks for all replies
  4. When I open notepad in start menu and use: Send(" as as") it show " á á" . when I open notepad by Autoit and use : Run('notepad.exe') $hwnd=WinWait('Untitled') Send(' as as')
  5. yes, maybe Unikey and Autoit are incompatible with each other
  6. I dont use hotkeyset in script. I say wrong a little, I choosed UTF-8 with Bom but I can't type Vietnamese language in Scite Script Editor too. I just can type Vietnamese language to notepad and cut it to Scite Script Editor, and it's show Vietnamese corectly. I use like GUICtrlSetData($edit,"Tiếng Việt") and press F5 it show vietnamese corectly too. But I can't type Vietnamese language append that text.
  7. Thanks for replies. Yes, these words are unicode. I do follow your tip, I use GUISetFont,GUICtrlSetFont,GUICtrlSetStyle but it can't too.
  8. I'm Vietnamese. I have "Unikey" - a software to type Vietnamese language to anywhere I can type in window 10. Example: I type: aa it's show â, type as it's show á,... aas --> ấ, eex --> ễ. dd --> đ..... I can type Vietnamese language like this to notepad, word, excel, window, folder name, web browser, ... But I can't type like this to Input or Edit in autoit Gui. How I can type Vietnamese language like this to Input or Edit in autoit Gui. I choosed UTF-8 with Bom but I just can type Vietnamese language in Scite Script Editor, I can't type Vietnamese language to Input or Edit in autoit Gui. Please help... #include <GUIConstantsEx.au3> $gui=GUICreate('new',420,260,430,200) $input=GUICtrlCreateInput('',10,10,400,20) $edit=GUICtrlCreateEdit('',10,40,400,200) GUISetState() Do Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch Until False
×
×
  • Create New...