firstly, i don't know how to use COM
but i found this neat module(?) which makes everyone can put IE in gui
it shows well. but i'm having some weird problem.
what i am trying to do is putting chat room in gui using gabbly.com
1) embed IE into gui
2) embed gabbly.com chat wizet into embeded IE in gui
3) it works!
4) but the {Enter} key doesn't working in embeded IE
i can't even send a word, i can't communicate :<
i've tested with all kind of these web based chat module
and nothing works in embeded IE
hope someone could solve it
below are my simple codes
Code:
<body leftmargin='0' topmargin='0'>
<iframe src='http://cw.gabbly.com/gabbly/cw.jsp?e=1&t=blank&pw=0&priv=on' scrolling='no' style='width:100%; height:100%' frameborder='0'></iframe>
gabbly.html in local
Code:
#Include IE.ahk
OnExit, WebTerminate
SetTitleMatchMode, 2
GUI:
Gui +0x2000000 +Lastfound
Gui Margin, 0, 0
Gui, Show, Center w640 h480, Gabbly Test
GoSub, WebInit
Return
WebInit:
Gosub, GuiStart
pwb1 := IE_Add(WinExist(), 0, 0, 640, 480 - 25)
IE_LoadURL(pwb1, "gabbly.html")
GuiStart:
IE_Init()
Return
Return
GuiClose:
WebTerminate:
Gui, Destroy
COM_Release(pwb)
IE_Term()
ExitApp
pulling gabbly.html from local then it shows gabbly chat room
but the {Enter} key doesn't works....