| View previous topic :: View next topic |
| Author |
Message |
viciouskinid
Joined: 23 Jun 2007 Posts: 136
|
|
| Back to top |
|
 |
tank
Joined: 21 Dec 2007 Posts: 807
|
|
| Back to top |
|
 |
viciouskinid
Joined: 23 Jun 2007 Posts: 136
|
Posted: Sat Jun 07, 2008 12:56 am Post subject: |
|
|
| do you know of one with buttons forward and back buttons etc included like the pic in the above link. just so i dont have to code them. |
|
| Back to top |
|
 |
tank
Joined: 21 Dec 2007 Posts: 807
|
Posted: Sat Jun 07, 2008 2:44 am Post subject: |
|
|
dont know why you would bother but lucky for you i dloaded it some time ago and never delete antyhing but its on my work pc
ill upload and post it tomorrow _________________ Read this
Com
Automate IE7 with Tabs |
|
| Back to top |
|
 |
tank
Joined: 21 Dec 2007 Posts: 807
|
Posted: Sat Jun 07, 2008 2:47 am Post subject: |
|
|
In addition there were things that never got completed working
it would be better to just start over _________________ Read this
Com
Automate IE7 with Tabs |
|
| Back to top |
|
 |
viciouskinid
Joined: 23 Jun 2007 Posts: 136
|
Posted: Sat Jun 07, 2008 3:01 am Post subject: |
|
|
| ok thanks. prob beyond me. |
|
| Back to top |
|
 |
tank
Joined: 21 Dec 2007 Posts: 807
|
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 1084 Location: switzerland
|
Posted: Sat Jun 07, 2008 5:28 pm Post subject: |
|
|
I try to embed something in ahk, like
see/listen >> television/radio/map/video
http://www.autohotkey.com/forum/topic27264.html
found this in forum (example with tabs)
| Code: | ;--------- saved at Samstag, 26. Januar 2008 19:54:55 --------------
#Include IEControl.ahk ; + CoHelper.ahk!
OnExit, WebTerminate
SetTitleMatchMode, 2
W := A_ScreenWidth-100
H := A_ScreenHeight-100
WinTitle = TabTest
GUI:
Gui +0x2000000 +Lastfound
Gui Margin, 0, 0
Gui, Add, Tab, h25 w%W% gMyTab vSelTab, IE1|IE2
Gui, Show, h%H% w%W%, %WinTitle%
GoSub, WebInit
Return
WebInit:
GoSub, GuiStart
pwb1 := IE_Add(WinExist(), 0, 25, w, h - 25)
pwb2 := IE_Add(WinExist(), 0, 25, w, h - 25)
OldhWnd := IE1 := GetHostWindow(pwb1)
IE2 := GetHostWindow(pwb2)
IE_LoadURL(pwb1, "http://www.google.com")
IE_LoadURL(pwb2, "http://www.yahoo.com")
WinHide, ahk_id %IE2%
GuiStart:
AtlAxWinInit()
CoInitialize()
Return
Return
MyTab:
Gui, Submit, NoHide
WinHide, % "ahk_id " . OldhWnd
WinShow, % "ahk_id " . %SelTab%
OldhWnd := %SelTab%
return
GuiClose:
WebTerminate:
Gui, Destroy
Release(pwb)
CoUninitialize()
AtlAxWinTerm()
ExitApp
|
|
|
| Back to top |
|
 |
tank
Joined: 21 Dec 2007 Posts: 807
|
Posted: Sat Jun 07, 2008 5:33 pm Post subject: |
|
|
ok very or almost entirely off topic were you asking something? _________________ Read this
Com
Automate IE7 with Tabs |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 1084 Location: switzerland
|
Posted: Sat Jun 07, 2008 5:43 pm Post subject: |
|
|
sorry, was thinking it's something similar
I was lost in the scripts...
I've downloaded IE4AHK.zip now , must read it , thank you tank |
|
| Back to top |
|
 |
daonlyfreez
Joined: 16 Mar 2005 Posts: 745 Location: Berlin
|
Posted: Sat Jun 07, 2008 6:12 pm Post subject: |
|
|
Thanks tank. I uploaded a copy to autohotkey.net, and adjusted the link in the original posting. I currently have no access to the original file(s) myself, so thanks again.
But still, use COM instead now.  _________________ (sorry, homesite offline atm) |
|
| Back to top |
|
 |
.Net guy Guest
|
|
| Back to top |
|
 |
tank
Joined: 21 Dec 2007 Posts: 807
|
Posted: Sat Jun 07, 2008 7:30 pm Post subject: |
|
|
| daonlyfreez wrote: | Thanks tank. I uploaded a copy to autohotkey.net, and adjusted the link in the original posting. I currently have no access to the original file(s) myself, so thanks again.
But still, use COM instead now.  |
i so agree its pointless "not" to use com any more
but there is still the academic point of your browser script
demostrated using images as buttons dynamically updating a gui window
using dll
and using some com functions _________________ Read this
Com
Automate IE7 with Tabs |
|
| Back to top |
|
 |
|