3.2.0

Forum Search

Hi,

When I search the forum, I seem to get more results the more search terms I put in? Is it just me or is it an OR?

How can I search the forum Google-style, i.e. with AND semantics?

I'm looking for an example of the http request, when I search for "http request example" I get more results than for "http request".

Anyone?

Cheers
Daniel
March 2,
You can actually use Google to search this site. When you are in Google, enter all of your search terms then add "site:Activewidgets.com" after the terms. The results will only be from this website. Granted, the search may not yeild posts in the last few days or even the last week, but it is a great way to search the archives for hidden gems.
Jim Hunter (www.FriendsOfAW.com)
March 2,
Yeah I tried that, but the only results I found seemed to be in reference to 1.0. (I'm guessing Active.HTTP.Request is 1.0?)

Cheers
Daniel
March 2,
Ok so after checking the docs again and a bit of experimenting I came up with this:

var req = new AW.HTTP.Request;
req.setURL('<url>');
req.response = function(text) {
    alert(text);
};
req.request();


It would be nice if it was clear in the docs that "response" is a callback method and what parameters it will be passed. :-)

Cheers
Daniel
March 2,
Ok, so I realized the documentation is a wiki so I've added this to it.

Cheers
Daniel
March 2,

This topic is archived.

See also:


Back to support forum