EQ2Interface.com
Search Downloads


Go Back   EQ2Interface > Featured Projects > Fetish

Reply
Thread Tools Search this Thread Display Modes
  #1  
Unread 04-27-2007, 11:10 AM
therealmosha therealmosha is offline
A Dervish Cutthroat
 
Join Date: Aug 2005
Server: Antonia Bayle
Posts: 37
Default clickbrowse not browsing?

i just noticed that, when you click on any clickbrowse icon, the game will open up its browser but thats about it, it wont open any eq2i/alla-whatever/google page, just stays blank.

surfing manually with it works, although its IE-based which obviously sucks

i thought that this could possibly be based on the fact, that im running a localized version of eq2 maybe passing quest name strings that the clickbrowse cant handle?

---

i just figured out some other thing:

if i press the button twice it works, the first press bringing up the browser and the second opening the url in the browser

but, unfortunately it then passes the localized quest name as the search string which does not work for obvious reasons. is there any way to get the original quest name out of some questID (if theres one) to pass to search= ?

Last edited by therealmosha : 04-27-2007 at 11:27 AM. Reason: added info
Reply With Quote
  #2  
Unread 04-27-2007, 01:10 PM
Zonx's Avatar
Zonx Zonx is offline
A Green Troll
This person is a EQ2Map developer.
Featured
 
Join Date: Dec 2004
Server: Blackburrow
Posts: 2,221
Default

Yep, gotta hit the button twice if the browser isn't open to begin with. Technicall limitation I can't do much about.

I'll look into the localized quest name issue. I undertand the problem but don't know yet how to retrieve the english title from a non-english client.
Reply With Quote
  #3  
Unread 04-30-2007, 03:26 PM
Othesus's Avatar
Othesus Othesus is offline
A Griffon
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Mar 2005
Server: Lucan DLere
Posts: 847
Default

I don't if it's possible to get around the localized name problem but I figured out how to get around the click to browse issue. It's caused by a delay when you give the /browser command. There's a delay and then the Browser object loads the home page.

In my mods I concatenate the URI string first and then use the command /browser URI like:
OnPress="OthURIString='http://eq2i.com/articles/Special:Search?search=' ## Parent.Parent.JournalsQuestDetail.QuestName.Text
browser OthURIString"
Reply With Quote
  #4  
Unread 05-01-2007, 01:24 PM
Eshaac's Avatar
Eshaac Eshaac is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Apr 2005
Server: Test
Posts: 160
Default

I can not get the click links to work at all no matter how many times I press them after the browser is opened. I have the browser set to a home page and that is where it keeps going to. I click a link and it looks like it is going to go to it, but it is right back to the home page...
Reply With Quote
  #5  
Unread 05-02-2007, 07:06 PM
FloridaFringe FloridaFringe is offline
A Griffon
 
Join Date: Sep 2005
Server: Lucan DLere
Posts: 459
Default

Quote:
Originally Posted by Turzen View Post
I can not get the click links to work at all no matter how many times I press them after the browser is opened. I have the browser set to a home page and that is where it keeps going to. I click a link and it looks like it is going to go to it, but it is right back to the home page...
Same here. Every ClickBrowse button opens to my home page or to a blank windo if there's no home page set. This is for the Quest Journal and the Examine window.

EDIT: Just to clairify...When I click a button the browser will open and go straight to my homepage. When I click a button again the address will appear in the browser correctly but then quickly change back to my homepage and reload that instead. This is the same for the Quest Journal, Quest Helper and the Examine window.

A couple of other general observations:

1. Could it be possible to move the buttons for the Quest Helper to the top portion of the window that includes the other extra features?

2. The search buttons in the Quest Journal overlap information about the quest itself. Would you consider relocating them if at all possible?

3. The Quest Journal divider bar doesn't remember where it was positioned between logins and always reverts back to it's original split. Between zoning and death it remembers where I really want it but just not between logins. Any chance of having this looked into.

Thanks for everything Zonk. I love this puppy.

Last edited by FloridaFringe : 05-02-2007 at 07:59 PM.
Reply With Quote
  #6  
Unread 05-02-2007, 10:20 PM
FloridaFringe FloridaFringe is offline
A Griffon
 
Join Date: Sep 2005
Server: Lucan DLere
Posts: 459
Default

EDIT: I was able to use the info above and have corrected the issue for the Active Quest Helper, Examine & Inspect Player windows. These changes will open the browser, load the appropriate page and search accordingly. No more homepage issues and no more having to double click.

I didn't touch the Quest Journal since multiple tab windows always give me trouble. I don't know how to mod them correctly as the tabs always end up missing after any changes that I make.

FYI: not sure if it matters but Allakhazam's is missing the "h" in the BrowseAla / Tooltip section for each of the 4 windows.

Hopefully you can use this info to help with some quick updates to each of the windows that utilize this great feature. Thanks again for everything.


ACTIVE QUEST HELPER

OthURIString='http://eq2.allakhazam.com/search.html?q=' ## parent.QuestName.text
browser OthURIString

OthURIString='http://eq2i.com/articles/Special:Search?search=' ## parent.QuestName.text
browser OthURIString

OthURIString='http://www.google.com/search?q=eq2+' ## parent.QuestName.text
browser OthURIString


EXAMINE

OthURIString='http://eq2.allakhazam.com/search.html?q=' ## parent.LorePage.Name.text
browser OthURIString

OthURIString='http://eq2i.com/articles/Special:Search?search=' ## parent.LorePage.Name.text
browser OthURIString

OthURIString='http://www.google.com/search?q=eq2+' ## parent.LorePage.Name.text
browser OthURIString


INSPECT PLAYER

OthURIString='http://eq2players.station.sony.com/characters/quickSearch.action?name=' ## parent.PlayerName.text ## '&searchType=character'
browser OthURIString

Last edited by FloridaFringe : 05-02-2007 at 11:26 PM.
Reply With Quote
  #7  
Unread 05-03-2007, 08:49 AM
Eshaac's Avatar
Eshaac Eshaac is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Apr 2005
Server: Test
Posts: 160
Default

Quote:
Originally Posted by FloridaFringe View Post
EDIT: I was able to use the info above and have corrected the issue for the Active Quest Helper, Examine & Inspect Player windows. These changes will open the browser, load the appropriate page and search accordingly. No more homepage issues and no more having to double click.

I didn't touch the Quest Journal since multiple tab windows always give me trouble. I don't know how to mod them correctly as the tabs always end up missing after any changes that I make.

FYI: not sure if it matters but Allakhazam's is missing the "h" in the BrowseAla / Tooltip section for each of the 4 windows.

Hopefully you can use this info to help with some quick updates to each of the windows that utilize this great feature. Thanks again for everything.


ACTIVE QUEST HELPER

OthURIString='http://eq2.allakhazam.com/search.html?q=' ## parent.QuestName.text
browser OthURIString

OthURIString='http://eq2i.com/articles/Special:Search?search=' ## parent.QuestName.text
browser OthURIString

OthURIString='http://www.google.com/search?q=eq2+' ## parent.QuestName.text
browser OthURIString


EXAMINE

OthURIString='http://eq2.allakhazam.com/search.html?q=' ## parent.LorePage.Name.text
browser OthURIString

OthURIString='http://eq2i.com/articles/Special:Search?search=' ## parent.LorePage.Name.text
browser OthURIString

OthURIString='http://www.google.com/search?q=eq2+' ## parent.LorePage.Name.text
browser OthURIString


INSPECT PLAYER

OthURIString='http://eq2players.station.sony.com/characters/quickSearch.action?name=' ## parent.PlayerName.text ## '&searchType=character'
browser OthURIString

hhmm, well I guess that is ok for the Othesus browser, but what about the fetish browser, which is the one I'm using.
Reply With Quote
  #8  
Unread 05-03-2007, 01:29 PM
FloridaFringe FloridaFringe is offline
A Griffon
 
Join Date: Sep 2005
Server: Lucan DLere
Posts: 459
Default

The above changes will work with any browser. The OthURIString is not browser specific. I've tested it with the FN v8.7, Othesus and Marts browsers.
Reply With Quote
  #9  
Unread 05-11-2007, 05:33 PM
Thayer's Avatar
Thayer Thayer is offline
A Coastal Crab
 
Join Date: Mar 2007
Server: Antonia Bayle
Posts: 1
Default

Quote:
Originally Posted by FloridaFringe View Post
EDIT: I was able to use the info above and have corrected the issue for the Active Quest Helper, Examine & Inspect Player windows. These changes will open the browser, load the appropriate page and search accordingly. No more homepage issues and no more having to double click.

I didn't touch the Quest Journal since multiple tab windows always give me trouble. I don't know how to mod them correctly as the tabs always end up missing after any changes that I make.

FYI: not sure if it matters but Allakhazam's is missing the "h" in the BrowseAla / Tooltip section for each of the 4 windows.

Hopefully you can use this info to help with some quick updates to each of the windows that utilize this great feature. Thanks again for everything.


ACTIVE QUEST HELPER

OthURIString='http://eq2.allakhazam.com/search.html?q=' ## parent.QuestName.text
browser OthURIString

...etc...
I am having this same problem in Fetish 8.7 where I click once to bring up the browser window and click again and it shows the correct URL (of goggle or Allakazam or whatever) but it does not navigate to that page - it stays on the home page I set.

I see by the above there is a fix for this but I'm confused how to apply this fix. What file(s) do I edit so I can add the above strings to fix this problem?
Reply With Quote
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 10:38 AM.


Our Network
EQInterface | EQ2Interface | WoWInterface | LoTROInterface | ESOUI | MMOUI