| View previous topic :: View next topic |
| Author |
Message |
archmage0929 Grandmaster Cheater Supreme
Reputation: 0
Joined: 15 Oct 2008 Posts: 1182 Location: Malaysia , im a chinese , GMT+8
|
Posted: Tue Feb 24, 2009 6:37 pm Post subject: [DELPHI] my little project |
|
|
help me..
i need help .
i want the Twebbrowser to automatically navigates to a specific location whenever a specific page is loaded..
EX :
forums post reply..
when ever "http://forum.cheatengine.org/posting.php" this appears , i want it to navigate into "http://forum.cheatengine.org/posting.php?mode=reply&t=367472' this..
_________________
|
|
| Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Wed Feb 25, 2009 5:27 am Post subject: |
|
|
| You could make a loop that checks it.
|
|
| Back to top |
|
 |
Spawnfestis GO Moderator
Reputation: 0
Joined: 02 Nov 2007 Posts: 1746 Location: Pakistan
|
Posted: Wed Feb 25, 2009 6:23 am Post subject: |
|
|
So just run through whatever holds the URL and check if it's that one?
I don't really get what you're saying though, and also - what's "Twebbrowser"?
_________________
CLICK TO HAX MAPLESTORAY ^ !!!! |
|
| Back to top |
|
 |
NothingToShow Grandmaster Cheater Supreme
Reputation: 0
Joined: 11 Jul 2007 Posts: 1579
|
Posted: Wed Feb 25, 2009 9:36 am Post subject: |
|
|
| Spawnfestis wrote: | So just run through whatever holds the URL and check if it's that one?
I don't really get what you're saying though, and also - what's "Twebbrowser"? |
The webbrowser component for Delphi.
|
|
| Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Wed Feb 25, 2009 11:40 am Post subject: |
|
|
or instead of a loop (great idea) use the TitleChange event.
Edit: Talking about Delphi's components events, i'd create a callback function FFS!
|
|
| Back to top |
|
 |
rapion124 Grandmaster Cheater Supreme
Reputation: 0
Joined: 25 Mar 2007 Posts: 1095
|
Posted: Wed Feb 25, 2009 1:36 pm Post subject: |
|
|
| Rot1 wrote: | or instead of a loop (great idea) use the TitleChange event.
Edit: Talking about Delphi's components events, i'd create a callback function FFS! |
No no no! What if two web pages with different URLs have the same title?
|
|
| Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Wed Feb 25, 2009 1:45 pm Post subject: |
|
|
| rapion124 wrote: | | Rot1 wrote: | or instead of a loop (great idea) use the TitleChange event.
Edit: Talking about Delphi's components events, i'd create a callback function FFS! |
No no no! What if two web pages with different URLs have the same title? |
Then use a different event. (there's no one for AddressChage so i was aware of this issue but it's the best for this kind of task)
|
|
| Back to top |
|
 |
HolyBlah Master Cheater
Reputation: 2
Joined: 24 Aug 2007 Posts: 446
|
Posted: Wed Feb 25, 2009 1:58 pm Post subject: |
|
|
| Use NavigateComplete2 event or BeforeNavigate2.
|
|
| Back to top |
|
 |
|