AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

AHK web browser

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
viciouskinid



Joined: 23 Jun 2007
Posts: 136

PostPosted: Fri Jun 06, 2008 4:26 pm    Post subject: AHK web browser Reply with quote

I am looking for an ahk web browser. I have found this

http://www.autohotkey.com/forum/viewtopic.php?t=15885&highlight=iecontrol+ahk

but the like to the code is dead. I followed the link listed on the top of the page but cant find a completed script (with buttons and everything).

Does anyone know of one?
Back to top
View user's profile Send private message
tank



Joined: 21 Dec 2007
Posts: 807

PostPosted: Fri Jun 06, 2008 6:18 pm    Post subject: Reply with quote

try this
http://www.autohotkey.com/forum/viewtopic.php?t=32298&highlight=
_________________
Read this
Com
Automate IE7 with Tabs
Back to top
View user's profile Send private message
viciouskinid



Joined: 23 Jun 2007
Posts: 136

PostPosted: Sat Jun 07, 2008 12:56 am    Post subject: Reply with quote

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
View user's profile Send private message
tank



Joined: 21 Dec 2007
Posts: 807

PostPosted: Sat Jun 07, 2008 2:44 am    Post subject: Reply with quote

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
View user's profile Send private message
tank



Joined: 21 Dec 2007
Posts: 807

PostPosted: Sat Jun 07, 2008 2:47 am    Post subject: Reply with quote

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
View user's profile Send private message
viciouskinid



Joined: 23 Jun 2007
Posts: 136

PostPosted: Sat Jun 07, 2008 3:01 am    Post subject: Reply with quote

ok thanks. prob beyond me.
Back to top
View user's profile Send private message
tank



Joined: 21 Dec 2007
Posts: 807

PostPosted: Sat Jun 07, 2008 5:11 pm    Post subject: Reply with quote

http://www.autohotkey.net/~tank/IE4AHK.zip
its just as it was when i downloaded it
still even tho im not back peddling it might good accedemic work for you to go thru the code and really look at it for learing
_________________
Read this
Com
Automate IE7 with Tabs
Back to top
View user's profile Send private message
garry



Joined: 19 Apr 2005
Posts: 1084
Location: switzerland

PostPosted: Sat Jun 07, 2008 5:28 pm    Post subject: Reply with quote

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
View user's profile Send private message
tank



Joined: 21 Dec 2007
Posts: 807

PostPosted: Sat Jun 07, 2008 5:33 pm    Post subject: Reply with quote

ok very or almost entirely off topic were you asking something?
_________________
Read this
Com
Automate IE7 with Tabs
Back to top
View user's profile Send private message
garry



Joined: 19 Apr 2005
Posts: 1084
Location: switzerland

PostPosted: Sat Jun 07, 2008 5:43 pm    Post subject: Reply with quote

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
View user's profile Send private message
daonlyfreez



Joined: 16 Mar 2005
Posts: 745
Location: Berlin

PostPosted: Sat Jun 07, 2008 6:12 pm    Post subject: Reply with quote

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.

Cool

But still, use COM instead now. Wink
_________________
(sorry, homesite offline atm)
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
.Net guy
Guest





PostPosted: Sat Jun 07, 2008 6:43 pm    Post subject: Reply with quote

Well, you can always use the free versions of iMacros, that is almost like an AHK web browser:

http://www.iopus.com/imacros/firefox/

Tim
Back to top
tank



Joined: 21 Dec 2007
Posts: 807

PostPosted: Sat Jun 07, 2008 7:30 pm    Post subject: Reply with quote

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.

Cool

But still, use COM instead now. Wink

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
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group