View Single Post
  #15  
Unread 08-04-2015, 09:35 PM
Drumstix42's Avatar
Drumstix42 Drumstix42 is offline
A Griffon
Featured
 
Join Date: Oct 2004
Server: Antonia Bayle
Posts: 3,287
Send a message via AIM to Drumstix42 Send a message via MSN to Drumstix42 Send a message via Yahoo to Drumstix42
Default

It should be as simple as replacing the "browser" call with "shell_open" in the corresponding files

For clarity, look for lines 79-85 in eq2ui_examle.xml in your custom UI folder and replace with this:
Code:
        <Page Location="262,27" Name="Buttons" PackLocation="right,top" ScrollExtent="30,75" Size="30,75" Visible="false">
            <Button Name="EQ2Wire" OnPress="URL=&apos;http://u.eq2wire.com/i/&apos; ## Parent.Parent.LorePage.Name.Text
shell_open URL" ScrollExtent="15,15" Size="15,15" Style="/ButtonStyles.tabscroll_left" Tooltip="Search u.eq2wire.com" />
            <Button Location="0,15" Name="EQ2i" OnPress="URL=&apos;http://eq2.wikia.com/wiki/Special:Search?search=&apos; ## Parent.Parent.LorePage.Name.Text
shell_open URL" ScrollExtent="15,15" Size="15,15" Style="/ButtonStyles.tabscroll_left" Tooltip="Search EQ2i" />
            <Button Location="15,0" Name="ZAM" OnPress="URL=&apos;http://eq2.allakhazam.com/search.html?q=&apos; ## Parent.Parent.LorePage.Name.Text
shell_open URL" ScrollExtent="15,15" Size="15,15" Style="/ButtonStyles.tabscroll_left" Tooltip="Search ZAM" />
            <Button Location="15,15" Name="LootDB" OnPress="URL=&apos;http://www.lootdb.com/?t=item&amp;q=&quot;&apos; ## Parent.Parent.LorePage.Name.Text ## &apos;&quot;&apos;
shell_open URL" ScrollExtent="15,15" Size="15,15" Style="/ButtonStyles.tabscroll_left" Tooltip="Search LootDB" />
            <Button Location="15,30" Name="EQ2LL" OnPress="URL=&apos;http://www.eq2llinks.com/search.php?searchtype=item&amp;searchlimit=50&amp;searchfield=&apos; ## Parent.Parent.LorePage.Name.Text
shell_open URL" ScrollExtent="15,15" Size="15,15" Style="/ButtonStyles.tabscroll_left" Tooltip="Search EQ2 Logger Links" />
        </Page>
Lines 30-31 in eq2ui_journals_active.xml replace with this:
Code:
        <Button Location="181,3" Name="EQ2i" OnHideEffector="FadeOutEffector" OnPress="URL=&apos;http://eq2.wikia.com/wiki/Special:Search?search=&apos; ## Parent.Contents.QuestName.localtext
shell_open URL" OnShowEffector="FadeInEffector" Opacity="0.000" PackLocation="right,top" ScrollExtent="15,15" Size="15,15" Style="/ButtonStyles.tabscroll_left" Tooltip="Search EQ2i" Visible="false" />
        <Button Location="197,3" Name="ZAM" OnHideEffector="FadeOutEffector" OnPress="URL=&apos;http://eq2.allakhazam.com/search.html?q=&apos; ## Parent.Contents.QuestName.localtext
shell_open URL" OnShowEffector="FadeInEffector" Opacity="0.000" PackLocation="right,top" ScrollExtent="15,15" Size="15,15" Style="/ButtonStyles.tabscroll_left" Tooltip="Search ZAM" Visible="false" />
And eq2ui_journals_quest.xml has about 10 total different lines split into sections of the window. I suggest just doing Find & Replace with Notepad.
__________________
"I'm afraid you're guilty of thought-crime. Don't bother getting the door, we'll let ourselves in..."
<Donate to DrumsUI> < [DrumsUI] Updater > < [DrumsUI] Full Interface> < Drumstix42 on Twitch.tv
>

Last edited by Drumstix42 : 08-04-2015 at 09:38 PM.
Reply With Quote