What I would do is set up a search control with four different  
searchers in it, like so.

var gs=google.search;
var searchControl=new gs.SearchControl();

var editions={
  'us':'US',
  'uk':'UK',
  'au':'Australia',
  'ca':'Canada'
};

for(var i in editions){
  var searcher=new gs.NewsSearch();
  searcher.setRestriction(gs.Search.RESTRICT_EXTENDED_ARGS,{"ned":i});
  searcher.setUserDefinedLabel(editions[i]);
  searchControl.addSearcher(searcher);
}

searchControl.draw(document.getElementById('content'));



I ran that through the API Playground, and it looks good.

Jeremy R. Geerdes
Effective website design & development
Des Moines, IA

For more information or a project quote:
http://jgeerdes.home.mchsi.com
http://jgeerdes.blogspot.com
http://jgeerdes.wordpress.com
[email protected]

Unless otherwise noted, any price quotes contained within this  
communication are given in US dollars.

If you're in the Des Moines, IA, area, check out Debra Heights  
Wesleyan Church!

And check out my blog, Adventures in Web Development, at 
http://jgeerdes.blogspot.com 
  !


On Mar 12, 2009, at 6:58 AM, Thomas wrote:

>
> Hi,
>
> I'd just like to ask how I can select multiple news editions either in
> the NewsShow Wizard or in the code itself. For example I'd like to
> have articles from both the US, UK, Australian, and Canadian news feed
> editions.
>
> Thanks for helping!
>
> >


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-AJAX-Search-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to