컴퓨터프로그래밍/autoHotKey(매크로)

GUI 컴포넌트(picture,Button,Checkbox,Radio)

zelkova 2017. 2. 17. 13:13

<목차로 돌아가기>


 Add컴포넌트 2

이번에는 (picture, Button, Checkbox, Radio) 사용법을 다뤄보겠습니다.



Picture


Gui, Add, Picture, 옵션, 경로


  1. ^+t::
  2. Gui, Add, Picture, w100 h-1, D:\heart.gif
  3. gui, Show, x55 y66 w300 h200, test매크로
  4. return




Button


Gui, Add, Button, [옵션], 적을말


  1. ^+t::
  2. Gui, Add, Picture, w100 h-1, D:\heart.gif
  3. Gui, Add, Button, Default, OK바리
  4. gui, Show, x55 y66 w300 h200, test매크로
  5. return



CheckBox


Gui, Add, Checkbox, [옵션], 적을 말


  1. ^+t::
  2. Gui, Add, Checkbox, vShipToBillingAddress, 이해하셨음?
  3. gui, Show, x55 y66 w300 h200, test매크로
  4. return




Radio


Gui, Add, Radio, [옵션], 적을 말


  1. ^+t::
  2. Gui, Add, Radio, vMyRadioGroup1, 요로코롬1
  3. Gui, Add, Radio, vMyRadioGroup1, 요로코롬2
  4. Gui, Add, Radio, vMyRadioGroup1, 요로코롬3
  5. gui, Show, x55 y66 w300 h200, test매크로
  6. return










반응형

'컴퓨터프로그래밍 > autoHotKey(매크로)' 카테고리의 다른 글

AutoHotKey- GUI컴포넌트  (0) 2017.02.08
AutoHotKey - GUI  (0) 2017.02.08
AutoHotKey - 함수의 사용  (0) 2016.11.30
AutoHotKey 배열의 사용  (0) 2016.11.03
AutoHotKey - 조건문의 사용  (0) 2016.10.02