trickytroy Posted April 27, 2005 Posted April 27, 2005 (edited) hello this is my broswer troyzilla. please read the readme file after unziping. oh and i cant figure out how to make the proggress bar work so a little help might be nice. enjoy! leave feedback plzTroyzilla.zip Edited April 27, 2005 by trickytroy [quote]Randy:This is for what?! Arresting me for what?! I'm not allowed to stand up for myself?! I thought this was America! Huh? Isn't this America?! I'm sorry! I thought this was America![/quote]
MarkMarkMark Posted April 27, 2005 Posted April 27, 2005 lol nice... but if you type your URL and press enter.. nothing happens For the rest: very very nice
busysignal Posted April 27, 2005 Posted April 27, 2005 Very nice work. I was able to type in a URL and press the GO button which loaded a new site. It seems it does not detect the Enter Key when in the address field. I did noticed that the window sizing does not work. Cheers...
TuMbLeWeEd Posted April 27, 2005 Posted April 27, 2005 hello this is my broswer troyzilla. please read the readme file after unziping.oh and i cant figure out how to make the proggress bar work so a little help might be nice. enjoy! leave feedback plz<{POST_SNAPBACK}>Just set the Go button with $BS_DEFPUSHBUTTON, this wil do the thing My AutoIt stuffChatBichProjectSelectorWindow control grabberUsefull LinksPort forwarding with routers
Wb-FreeKill Posted April 27, 2005 Posted April 27, 2005 When clickking "back" the combobox should refresh with the correct URL Fix the Enter button, so when pressing Enter, execute website
chelseafc Posted May 7, 2005 Posted May 7, 2005 Just set the Go button with $BS_DEFPUSHBUTTON, this wil do the thing <{POST_SNAPBACK}>where? can you edit the script and post it here?
busysignal Posted May 10, 2005 Posted May 10, 2005 Just set the Go button with $BS_DEFPUSHBUTTON, this wil do the thing <{POST_SNAPBACK}>Thanks... Great
Mr.Llama Posted May 10, 2005 Posted May 10, 2005 This is really awesome! But I think it would be better if when you type in the url (in the edit line) you could press enter instead of pressing Go. How did you make the cwebpage.dll I wasn't sure how you made it because I didn't know if you made it with AutoItX or something else. I think it's really cool otherwise!
trickytroy Posted May 10, 2005 Author Posted May 10, 2005 Well if youe search the net for cwebpage.dll you can download it. So thats what i did. Note:expect a new version soon, with a favorites list!!! [quote]Randy:This is for what?! Arresting me for what?! I'm not allowed to stand up for myself?! I thought this was America! Huh? Isn't this America?! I'm sorry! I thought this was America![/quote]
trickytroy Posted May 10, 2005 Author Posted May 10, 2005 I've come across a problem. when i set the $BS_DEFPUSHBUTTON on the go button, it wroks and everything but if im typing in.. say.. google search or any search engine when i press enter to search for the webpage it just presses the go button on the main gui! and doesnt hit search in the webpage. does any body know how to fix this?? [quote]Randy:This is for what?! Arresting me for what?! I'm not allowed to stand up for myself?! I thought this was America! Huh? Isn't this America?! I'm sorry! I thought this was America![/quote]
Insolence Posted May 10, 2005 Posted May 10, 2005 Maybe you can get the state of the input box, whenever the mouse is inside it you set the HotKeySet the enter key? "I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar.
busysignal Posted May 11, 2005 Posted May 11, 2005 This is really awesome! But I think it would be better if when you type in the url (in the edit line) you could press enter instead of pressing Go. How did you make the cwebpage.dll I wasn't sure how you made it because I didn't know if you made it with AutoItX or something else. I think it's really cool otherwise!<{POST_SNAPBACK}>Check out this site for cwebpage.dllhttp://www.codeguru.com/Cpp/I-N/ieprogram/article.php/c4379Cheers...
busysignal Posted May 11, 2005 Posted May 11, 2005 Here is another post regarding cwebpage.dll. This is the guy who made it, Jeff Glatt.http://www.borg.com/~jglatt/cwebpage.zip - Download
snaileater Posted October 9, 2005 Posted October 9, 2005 i hope my question is not too dumb ... :is there any way to intitiate a data exchange between the autoit application and the embedded browser ?for example i would like to close the whole autoit application by clicking a button located in the webpage ... is it possible ?thanks in advance ...
themax90 Posted October 9, 2005 Posted October 9, 2005 I do have to say good job, but when you change pages using a link, the address bar does not change. THIS WILL be good when you wanna search a possible virus site I don't think popups are possible using this web browser
theguy0000 Posted October 9, 2005 Posted October 9, 2005 Hi! This is a really cool script! Do you mind if I add a few things and send you the results? - Matt The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN
Valuater Posted October 9, 2005 Posted October 9, 2005 Tricky troy..... where are you** Last activetrickytroy 15th September 2005 - 12:46 PM** Last Posttrickytroy Posted on: Jul 5 2005, 03:16 PM ** last post for Troyzillatrickytroy May 9 2005, 10:21 PM *** I thinki this is a cool script....Stay on it????8)
Adam1213 Posted November 21, 2005 Posted November 21, 2005 Adding ctrl+enter to insert http://www. and .com at end (this really needs improving so that it only works when the cursor is in the URL box)Add to the start of it;HotKeySet ("{enter}" ,"ongo" ) HotKeySet ("^{enter}" ,"ongo2" )func ongo2()GUICtrlSetData ($combo_5, "http://www."& GUICtrlRead($Combo_5) &".com" )call ("ongo")endfuncfunc ongo() DllCall($dll, "long", "DisplayHTMLPage", "hwnd", $internetgui, "str", GUICtrlRead($Combo_5)) ; tells the dll to go to the web page thats in the comboboxendfuncAlso adding some settings would be good IRC Client - 75 pages 3728 lines. Blob crumbler (game)Backup (drag to backup + cmd line)RS232
busysignal Posted November 21, 2005 Posted November 21, 2005 Adding ctrl+enter to insert http://www. and .com at end (this really needs improving so that it only works when the cursor is in the URL box)Add to the start of it;HotKeySet ("{enter}" ,"ongo" ) HotKeySet ("^{enter}" ,"ongo2" )func ongo2()GUICtrlSetData ($combo_5, "http://www."& GUICtrlRead($Combo_5) &".com" )call ("ongo")endfuncfunc ongo() DllCall($dll, "long", "DisplayHTMLPage", "hwnd", $internetgui, "str", GUICtrlRead($Combo_5)) ; tells the dll to go to the web page thats in the comboboxendfuncAlso adding some settings would be good@Adam1213, Nice add!Cheers..
Adam1213 Posted November 22, 2005 Posted November 22, 2005 (edited) @Adam1213, Nice add!Cheers.. Thanks... but what I added is not all that good I will improve itBy the way how can I contact the person that is in control of autoit wiki?I am going to add1. use GUIGetMsg to see if it should send it (only if http://www. and .com are not already there insert missing)2. have enter work for it... I was thinking that I could make the url a box and if there are 2 lines get rid of the last line and load the page.Javascript works but when I tried it I could not use the keyboard to control a game. Edited November 22, 2005 by Adam1213 IRC Client - 75 pages 3728 lines. Blob crumbler (game)Backup (drag to backup + cmd line)RS232
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now