Have search results from awesome appear in a new tab

Firefox 4 - using the awesome for search. I'd like the search results to show up in a new tab. They currently over-write the existing tab. I found in about:config a browser.search.opennewtab (or something close to that) and changed it to true, but that only works for the search box I guess, I don't have the search box on my toolbar. I'd also like any URL I enter to open in a new tab, too, for what it's worth. Thanks.

Well, since posting I have found that if I use alt-enter, the resulting search or URL opens in a new tab. Still like the new tab to be the default when just using the enter key, but this will do - when I remember to use it...

Similar Messages

  • I have just updated to 7.0.1 and suddenly my search results won't open in a new tab

    I have just updated to 7.0.1 and suddenly my search results won't open in a new tab (let alone a new window - something I much preferred in the past) although this option is checked.
    I even installed Tab Utilities Light Options - all of it's options work, but not for Search Bar.
    When I choose one of the search results and want to view several items on that site (let's say a page with some 50 photo's), there seems to be no longer a way to return to the original search result. I have to start from scratch.
    I hope this can be 'mended' because this is utterly annoying.
    Greetings

    Although 6 other people seem to have encountered this problem, nobody has offered a solution yet. Perhaps the following will put some Firefox gurus on the right trail.
    When I said "my search results", I meant the results obtained with Google (standard when installing Firefox). Now I have tried another search engine (Dogpile) and there The tabs do work. Very strange, isn't it ?

  • I click a link and it opens on the current page and a new tab, how do i keep the first tab on the current page and only have the link clicked on appear in the new tab?

    I go to click a link for any site and it opens the link in the current page and a new tab. I only want it to open the link in the new tab. I want to keep the original tab what it was.

    you can try to write some web driver to do this particular job for you, one such driver is Selenium. know more about it at https://code.google.com/p/selenium/downloads/list.
    But this thing will need a good programming skill. Otherwise you have Adblock plus addon (https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/), you can try this. you can also contact its developer to include this particular facility also in this add on

  • ADFS SSO and SharePoint 2013 on-premise Hybrid outbound search results from SharePoint Online - does it work?

    Hi, 
    I want to setup an outpund hybrid search for SharePoint 2013 on-premise to SharePoint Online.
    But I'm not shure if this works with ADFS SSO.
    Has somebody experience with this setup?
    Here's my guide which I'm going to use for this installation:
    Introduction
    In this post I'll show you how to get search results from your SharePoint Online in your SharePoint 2013 on-premise search center.
    Requirements
    User synchronisation ActiveDirectory to Office 365 with DirSync
    DirSync password sync or ADFS SSO
    SharePoint Online
    SharePoint 2013 on-premise
    Enterprise Search service
    SharePoint Online Management Shell
    Instructions
    All configuration will be done either in the Search Administration of the Central Administration or in the PowerShell console of your on-premise SharePoint 2013 server.
    Set up Sever to Server Trust
    Export certificates
    To create a server to server trust we need two certificates.
    [certificate name].pfx: In order to replace the STS certificate, the certificate is needed in Personal Information Exchange (PFX) format including the private key.
    [certificate name].cer: In order to set up a trust with Office 365 and Windows Azure ACS, the certificate is needed in CER Base64 format.
    First launch the Internet Information Services (IIS) Manager
    Select your SharePoint web server and double-click Server Certificates
    In the Actions pane, click Create Self-Signed Certificate
    Enter a name for the certificate and save it with OK
    To export the new certificate in the Pfx format select it and click Export in the Actions pane
    Fill the fields and click OK Export to: C:\[certificate
    name].pfx Password: [password]
    Also we need to export the certificate in the CER Base64 format. For that purpose make a right-click on the certificate select it and click on View...
    Click the Details tab and then click Copy to File
    On the Welcome to the Certificate Export Wizard page, click Next
    On the Export Private Key page, click Next
    On the Export File Format page, click Base-64 encoded X.509 (.CER), and then click Next.
    As file name enter C:\[certificate
    name].cer and then click Next
    Finish the export
    Import the new STS (SharePoint Token Service) certificate
    Let's update the certificate on the STS. Configure and run the PowerShell script below on your SharePoint server.
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    $X64CertPath = "c:\[certificate name].cer"
    # get the encrypted pfx certificate object
    $PfxCert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # import it
    Set-SPSecurityTokenServiceConfig -ImportSigningCertificate $PfxCert
    Type Yes when prompted with the following message.
    You are about to change the signing certificate for the Security Token Service. Changing the certificate to an invalid, inaccessible or non-existent certificate will cause your SharePoint installation to stop functioning. Refer
    to the following article for instructions on how to change this certificate: http://go.microsoft.com/fwlink/?LinkID=178475. Are you
    sure, you want to continue?
    Restart IIS so STS picks up the new certificate.
    & iisreset
    & net stop SPTimerV4
    & net start SPTimerV4
    Now validate the certificate replacement by running several PowerShell commands and compare their outputs.
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    # get the encrypted pfx certificate object
    New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # compare the output above with this output
    (Get-SPSecurityTokenServiceConfig).LocalLoginProvider.SigningCertificate
    [/code]
    ## Establish the server to server trust
    [code lang="ps"]
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    Import-Module MSOnline
    Import-Module MSOnlineExtended
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    $X64CertPath = "c:\[certificate name].cer"
    # set the onpremise domain that you added to Office 365
    $SPCN = "sharepoint.domain.com"
    # your onpremise SharePoint site url
    $SPSite="http://sharepoint"
    # don't change this value
    $SPOAppID="00000003-0000-0ff1-ce00-000000000000"
    # get the encrypted pfx certificate object
    $PfxCert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # get the raw data
    $PfxCertBin = $PfxCert.GetRawCertData()
    # create a new certificate object
    $X64Cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
    # import the base 64 encoded certificate
    $X64Cert.Import($X64CertPath)
    # get the raw data
    $X64CertBin = $X64Cert.GetRawCertData()
    # save base 64 string in variable
    $CredValue = [System.Convert]::ToBase64String($X64CertBin)
    # connect to office 3656
    Connect-MsolService
    # register the on-premise STS as service principal in Office 365
    # add a new service principal
    New-MsolServicePrincipalCredential -AppPrincipalId $SPOAppID -Type asymmetric -Usage Verify -Value $CredValue
    $MsolServicePrincipal = Get-MsolServicePrincipal -AppPrincipalId $SPOAppID
    $SPServicePrincipalNames = $MsolServicePrincipal.ServicePrincipalNames
    $SPServicePrincipalNames.Add("$SPOAppID/$SPCN")
    Set-MsolServicePrincipal -AppPrincipalId $SPOAppID -ServicePrincipalNames $SPServicePrincipalNames
    # get the online name identifier
    $MsolCompanyInformationID = (Get-MsolCompanyInformation).ObjectID
    $MsolServicePrincipalID = (Get-MsolServicePrincipal -ServicePrincipalName $SPOAppID).ObjectID
    $MsolNameIdentifier = "$MsolServicePrincipalID@$MsolCompanyInformationID"
    # establish the trust from on-premise with ACS (Azure Control Service)
    # add a new authenticatio realm
    $SPSite = Get-SPSite $SPSite
    $SPAppPrincipal = Register-SPAppPrincipal -site $SPSite.rootweb -nameIdentifier $MsolNameIdentifier -displayName "SharePoint Online"
    Set-SPAuthenticationRealm -realm $MsolServicePrincipalID
    # register the ACS application proxy and token issuer
    New-SPAzureAccessControlServiceApplicationProxy -Name "ACS" -MetadataServiceEndpointUri "https://accounts.accesscontrol.windows.net/metadata/json/1/" -DefaultProxyGroup
    New-SPTrustedSecurityTokenIssuer -MetadataEndpoint "https://accounts.accesscontrol.windows.net/metadata/json/1/" -IsTrustBroker -Name "ACS"
    Add a new result source
    To get search results from SharePoint Online we have to add a new result source. Run the following script in a PowerShell ISE session on your SharePoint 2013 on-premise server. Don't forget to update the settings region
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    # region settings
    $RemoteSharePointUrl = "http://[example].sharepoint.com"
    $ResultSourceName = "SharePoint Online"
    $QueryTransform = "{searchTerms}"
    $Provier = "SharePoint-Remoteanbieter"
    # region settings end
    $SPEnterpriseSearchServiceApplication = Get-SPEnterpriseSearchServiceApplication
    $FederationManager = New-Object Microsoft.Office.Server.Search.Administration.Query.FederationManager($SPEnterpriseSearchServiceApplication)
    $SPEnterpriseSearchOwner = Get-SPEnterpriseSearchOwner -Level Ssa
    $ResultSource = $FederationManager.GetSourceByName($ResultSourceName, $SPEnterpriseSearchOwner)
    if(!$ResultSource){
    Write-Host "Result source does not exist. Creating..."
    $ResultSource = $FederationManager.CreateSource($SPEnterpriseSearchOwner)
    $ResultSource.Name = $ResultSourceName
    $ResultSource.ProviderId = $FederationManager.ListProviders()[$Provier].Id
    $ResultSource.ConnectionUrlTemplate = $RemoteSharePointUrl
    $ResultSource.CreateQueryTransform($QueryTransform)
    $ResultSource.Commit()
    Add a new query rule
    In the Search Administration click on Query Rules
    Select Local SharePoint as Result Source
    Click New Query Rule
    Enter a Rule name f.g. Search results from SharePoint Online
    Expand the Context section
    Under Query is performed on these sources click on Add Source
    Select your SharePoint Online result source
    In the Query Conditions section click on Remove Condition
    In the Actions section click on Add Result Block
    As title enter Results for "{subjectTerms}" from SharePoint Online
    In the Search this Source dropdown select your SharePoint Online result source
    Select 3 in the Items dropdown
    Expand the Settings section and select "More" link goes to the following URL
    In the box below enter this Url https://[example].sharepoint.com/search/pages/results.aspx?k={subjectTerms}
    Select This block is always shown above core results and click the OK button
    Save the new query rule

    Hi  Janik,
    According to your description, my understanding is that you want to display hybrid search results in SharePoint Server 2013.
    For achieving your demand, please have a look at the article:
    http://technet.microsoft.com/en-us/library/dn197173(v=office.15).aspx
    If you are using single sign-on (SSO) authentication, it is important to test hybrid Search functionality by using federated user accounts. Native Office 365 user accounts and Active Directory Domain Services
    (AD DS) accounts that are not federated are not recognized by both directory services. Therefore, they cannot authenticate using SSO, and cannot be granted permissions to resources in both deployments. For more information, see Accounts
    needed for hybrid configuration and testing.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Clear search results from Content Services Windows Crawl 6.1

    We have ALI Content Services Windows Files 6.1 with a crawl job on a network location. It works fine. Now we have changed the location - directory structure. The job, modified with the new location works fine, however, we still see search results from the old location also. Since those documents no longer exist, clicking on the link causes an error. How do we clear the search results?
    Thanks.

    Have you tried running Search Repair. I believe this should clear out the orphaned search records.

  • Clicking a search result from search bar goole seaech, always opening google home page but only can open search in new tab by middle click,really frustrating.

    Whenever i am clicking search result from Google search bar, it always opens the Google home page. I can only open search result in new tab by double clicking. It started when i installed Firefox 12.

    @mstm, please ensure that you write some thing in search bar before you click search icon. without entering anything will redirect to google.com. And make sure that you are clicking on search icon not home icon.

  • First i open google search page.after seeing the results if i click in any site the site appears in a new tab.how can i stop this?

    these days i face this problem.whenever i click on a site it appears in a new tab.how can i stop it?

    The Google Search setting has an option '''Where results open'''. If it is selected, you can try deselecting that. If it doesn't solve the problem, please check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]. Safe mode disables the installed '''Extensions''', and themes ('''Appearance''') in '''Tools''' ('''Alt''' + '''T''') > '''Add-ons'''. Hardware acceleration is also temporarily disabled - the manual setting is '''Tools''' > '''Options''' > '''Advanced''' > '''General''' > [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Advanced%20panel?as=u '''Use hardware acceleration when available''']. All these settings/options/add-ons can also be individually or collectively disabled/enabled/changed in Firefox normal mode to check if an extension, theme, option or hardware acceleration is causing issues. Disabling/enabling hardware acceleration, and some types of add-ons in normal mode may require a Firefox restart.
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.org/en-US/kb/Options%20window Options]

  • Is it possible to have the result from webservices with oracle8i

    hi,
    i call webservices MS .net with package utl_http under oracle 8i.
    exemple:
    DECLARE
    x utl_http.html_pieces;
    msg varchar2(12);
    BEGIN
    x := utl_http.request_pieces('http://localhost/ServiceNotification/Notification.asmx/NotifT?messagetmp=' || msg);
    END;
    I don't know how to have a result from a webservices!
    thanks for helping me.

    While the following paper is Oracle9i DB specific, conceptually, what is done should work with Oracle8i.
    Bear in mind that the use of XMLType is specific to Oracle9i DB R2 so if you were to follow the example, you would have to use varchars and probably acept the result into the PL/SQL XML Parser. See:
    http://otn.oracle.com/tech/webservices/htdocs/samples/dbwebservice/DBWebServices.html
    Mike.

  • When, on my home page, I click on the link "popup transparent" in the query, "Did you mean: popup transparent", NO RESULTS appear in that new tab; how fix?

    I've been having trouble due, apparently, to a file named popuptransparent[dot]xul, of which I have 3 instances on my computer (running Win XP/Firefox latest v.). Using my AVG home-page window, I search for "popuptransparent" (to try to fix it) and the results appear OK. But then when I click, for a new tab, on the link "popup transparent" in the query, "Did you mean: popup transparent", NO RESULTS appear in that new tab. Further, when I then reload the AVG panel that searched for "popuptransparent" in the first place, it, too, now shows no results. Nor does a Google panel now show any results. They show the quantity of results but just white screens for the results themselves.
    The links https://support.mozilla.org/en-US/questions/948804?esab=a&as=aaq and https://support.mozilla.org/en-US/questions/952141?esab=a&as=aaq don't help me. I have re-installed Firefox v. 20.0.1 to no avail. How to fix it?
    Should I delete from my computer all 3 of those [dot]xul instances?

    Thanks to jscher! With some help from AVG my AVG & Google browser panels now work OK. But I've taken the advice & disabled several extensions including the Disconnect. The browsers are still OK after re-launching them so I keep fingers crossed.
    My original problem was that I had suddenly found a small popup window appearing, over the browser window, that I couldn't get rid of. It contained an advisory to the effect that Windows couldn't find the file popuptransparent[dot]xul. I tried searching for that to see what it was and in the course of doing that I seem to have executed it. Then was when the trouble started.
    I have 3 instances of that file in my computer and would dearly like to get rid of them if they are of no use to me. Any advice there?

  • When I use the search box I would like results to show up in a "NEW" tab but I can't find this setting anywhere... Any solution???

    When I use the search box I would like results to show up in a "NEW" tab but I can't find this setting anywhere... Any solution???

    '''browser.search.openintab''' userset boolean True
    Also in Google search, upper-right-corner settings
    You can always force opening a link into a tab with Ctrl+click or Ctrl+Shift+click
    If you want the same from a bookmark make sure to set
    : '''browser.tabs.loadBookmarksInBackground''' to same value as you have for
    : '''browser.tabs.loadInBackground'''
    The last setting is controlled by Tools > Options > Tabs >
    :: When I click on a link, switch to it immediately,
    which control the difference between Ctrl+click and Ctrl+Shift+click
    Items in boldface''' can be set in about:config
    * '''More information on configuration variables''' available in [http://kb.mozillazine.org/About:config_entries about:config entries] and for users not familiar with the process there is [http://kb.mozillazine.org/About:config about:config] (How to change).
    Reading:
    * http://dmcritchie.mvps.org/firefox/keyboard.htm
    * http://dmcritchie.mvps.org/firefox/tabs_config.htm

  • I have inherited equipment from my predecessor at my new job. I cannot locate the Premiere Pro CS6 install CDs. Could this have been something that was downloaded?

    I have inherited equipment from my predecessor at my new job. I cannot locate the Premiere Pro CS6 install CDs. Could this have been something that was downloaded?

    Could have been... do you have a supervisor who keeps track of what is ordered and how it is purchased?
    Do you have access to the Adobe ID that was used to install the software so you may check the account?
    Lost information
    https://www.adobe.com/account.html for serial numbers or subscriptions on your Adobe page... or
    Lost serial # http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • How can i click on an email attachment and have it appear in a new tab?

    I used to be able to see any attached pic by simply clicking on the image in the bottom of an email, then the image would appear in a new tab. For some unknown reason, that is now not happening and I can't figure out how to get it back?

    Finder -> Preferences -> General -> uncheck "Open folders in tabs instead of new windows"

  • Opening web pages from address/url bar in new tabs

    The primary reason I use Firefox instead of Safari is that I can enter a url in the address bar and the corresponding page will open in a new, foregrounded tab. I seem not to be able to do this in Safari, and neither the Saft nor the Safari Extender plug-ins appear to address this problem.
    I know that I can press apple + T to create a new blank tab and then type in the address I want to go to. But is there anyway to have the website whose address I type into the address bar automatically appear in a new tab that is foregrounded and to the right of the tabbed window I was looking at?
    I'm perplexed that this very basic feature is so difficult to locate and use in Safari.

    You're welcome. Glad I could help.
    There are a lot of hidden tricks in OS X. It certainly is an OS of discovery. Books like Dave Pogues OS X Tiger - The Hidden Manual help us all to think out of the box when using the OS.
    I do remember something Scott Kelby said in one of his books: "the Apple (command) key unlocks many secrets".
    Please consider marking this post "solved" to the far right of my name. Helpful for others looking for a solved solution to a similar question, also helpful for me.
    Aloha from Big Island.

  • Downloads appear as a new tab but are blank???

    We've used Firefox for a while now and we didn't have issues with downloads but now the will appear in the download folder which pops up but when we click to open them a new tab opens with nothing on it. I've tried closing Firefox and my connection to the net and then opening the downloads from the folder in My Documents but this to does exactly the same thing. How can I fix this so we can read downloads again.
    Thank you for your help

    Why is Safari forcing popups to appear as a new tab?
    It's not. Some ads are designed to open in front of or behind an open window, while others are deliberately designed to open in a new window or tab. It's not something you can control.

  • Is there a setting to get searches performed in the search bar to open up in a new tab...like it does with Google toolbar?

    See question

    You can change a hidden preference to make search results from the Search Bar (upper right corner) open in a new tab:
    #type '''''about:config''''' in the Location/URL bar and press the Enter key
    #on the warning, promise to be careful
    #Filter = '''browser.search.openintab'''
    #in the lower panel, double-click on that preference to toggle the Value column to '''''true''''' or '''''false''''' (see below)
    #*value='''''true '''''will open search results in a new tab
    #*value='''''false '''''(default) will open search results in the current tab
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]

Maybe you are looking for

  • Error while appending a Node to another as child

    HI, I am new to XML and trying to add a Node n2 as a child to Node n1 and getting error "Node does not belong to current XML document" .Iwas getting these Node objects through APIs written by somebody.I am doing like this. Node n1 = SomeAPI.methode()

  • Partial Payment Clearing in F-32

    Dear Gurus, it is with refernce to partial payment clearing process. i have made user setting in FB00 and selected  "include invoice reference" but as i am clearing Debit and credit entry in F-32, system is not assigning payment to Invoice. surprisin

  • JCo RFC Provider Service

    Hello This topic may be not relevant to this forum but has anyone used JCo RFC Provider service for maintaining RFC Destinations? What I am trying to do is to store the RFC Destinations over here and have a lookup on JCo RFC Provider service (or on i

  • Enhanced Receiver Determination with RFC Lookup

    Hi All, I am building an interface with Enhanced Receiver Determination. Scenario would be that the Receiver Systems would be stored in a Z table in SAP ECC, and in PI Receiver Determination I am doing an RFC look up to find the systems, and using th

  • R/3 Plug-In for NW04s

    Hi, Currently, we are on PI_BASIS Level 8 (SAPKIPYI58)in our R/3 system and our R/3 was just recently unicoded as well.  What level should we be at for NW04s?  Also, we are getting a short dump in R/3 when doing a simple plant text extraction (0PLANT