English > Scripts and Templates

Use BING as default search result

<< < (2/6) > >>

pra15:
Here a script where you can search in different Site.
The constante SiteSearch is the first site where Bing search.
After you can add other site in variable TabSite (ex: TabSite:=[ 'www.a.com', 'www.b.com'])
After the first search you'll have links for other search in the result prList.

I found only this method to use many sites.
But if someone have an idea?

Now to improve this, we must find infos about a link in the Bing page to show them in the prlist.

[attachment deleted by admin]

Ivek23:

--- Quote from: pra15 on January 26, 2012, 04:14:11 pm ---Here a script where you can search in different Site.
The constante SiteSearch is the first site where Bing search.
After you can add other site in variable TabSite (ex: TabSite:=[ 'www.a.com', 'www.b.com'])
After the first search you'll have links for other search in the result prList.

I found only this method to use many sites.
But if someone have an idea?

Now to improve this, we must find infos about a link in the Bing page to show them in the prlist.

--- End quote ---

Thank you, pra15.

Ivek23:
Here is script for multi web search for the people.

[attachment deleted by admin]

Ivek23:
Here is script for multi web search for the people.

Default SiteSearch

--- Code: ---SiteSearch = 'www.imdb.com';  // Change the site as your choice
--- End code ---

TabSite

--- Code: ---//---------- Procedure SearchResults ----------//
// Create list of movies found during the search
procedure SearchResults (HTML : String);
Var
CurPos, PosStart, EndPos : integer;
URLposStart, URLPosEnd : integer;
StartURL, URL : String;

Begin
  //List of other site where search page :
  TabSite := ['www.imdb.com', 'www.allmusic.com', 'www.allrovi.com'
  , 'www.filmweb.pl/film', 'www.filmweb.pl/person'];
 
  //Search Result in actual page :
--- End code ---

[attachment deleted by admin]

Ivek23:

--- Quote from: Ivek23 on February 09, 2012, 07:08:38 am ---Here is script for multi web search for the people.

Default SiteSearch

--- Code: ---SiteSearch = 'www.imdb.com';  // Change the site as your choice
--- End code ---

TabSite

--- Code: ---//---------- Procedure SearchResults ----------//
// Create list of movies found during the search
procedure SearchResults (HTML : String);
Var
CurPos, PosStart, EndPos : integer;
URLposStart, URLPosEnd : integer;
StartURL, URL : String;

Begin
  //List of other site where search page :
  TabSite := ['www.imdb.com', 'www.allmusic.com', 'www.allrovi.com'
  , 'www.filmweb.pl/film', 'www.filmweb.pl/person'];
 
  //Search Result in actual page :
--- End code ---

--- End quote ---

version 0.0.0.3
Change:

--- Code: ---Begin
  //List of other site where search page :
  TabSite := ['www.imdb.com/name', 'www.allmusic.com', 'www.allrovi.com/name'
  , 'www.allmovie.com/artist', 'www.filmweb.pl/person', 'www.kinopoisk.ru/level/4'];
 
  //Search Result in actual page :
--- End code ---
Now the search is only for people.


[attachment deleted by admin]

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version