Jump to content

Troyzilla


trickytroy
 Share

Recommended Posts

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

Troyzilla.zip

Edited 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]

Link to comment
Share on other sites

  • Replies 41
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

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! :D

leave feedback plz

<{POST_SNAPBACK}>

Just set the Go button with $BS_DEFPUSHBUTTON, this wil do the thing :)
Link to comment
Share on other sites

  • 2 weeks later...

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!

Link to comment
Share on other sites

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]

Link to comment
Share on other sites

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]

Link to comment
Share on other sites

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.
Link to comment
Share on other sites

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.dll

http://www.codeguru.com/Cpp/I-N/ieprogram/article.php/c4379

Cheers... :(

Link to comment
Share on other sites

  • 4 months later...

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 ...

Link to comment
Share on other sites

  • 1 month later...

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")

endfunc

func ongo()

DllCall($dll, "long", "DisplayHTMLPage", "hwnd", $internetgui, "str", GUICtrlRead($Combo_5)) ; tells the dll to go to the web page thats in the combobox

endfunc

Also adding some settings would be good

Link to comment
Share on other sites

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")

endfunc

func ongo()

DllCall($dll, "long", "DisplayHTMLPage", "hwnd", $internetgui, "str", GUICtrlRead($Combo_5)) ; tells the dll to go to the web page thats in the combobox

endfunc

Also adding some settings would be good

@Adam1213, Nice add!

Cheers.. B)

Link to comment
Share on other sites

@Adam1213, Nice add!

Cheers.. B)

Thanks... but what I added is not all that good I will improve it

By the way how can I contact the person that is in control of autoit wiki?

I am going to add

1. 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 by Adam1213
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...