You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i tryed making a script for efukt using motherless script as a base and changed
what i think needed to be changed and i added to site list on ms and gotube
loads up fine but the site is not listed in top bar when going through
available sites
script below if any1 can have a look and tell me where i gone wrong plz
var efukt = new Object();
efukt.rev = 1;
efukt.SearchDesc =
efukt.Name = "Motherless";
efukt.Search = function (keyword, page){
var result = new Object();
result.bypage = 20;//static
result.start = (page-1)*result.bypage+1;
c=GetContents('http://efukt.com/search/videos?page='+page+'&search='+escape(keyword));
result.total = -1;
result.VideoInfo = new Array();
while(p=c.indexOf("thumbnail-img-wrap",p)+1){
video = new Object();
video.attr = 3;
video.id = ext('<a href="');
video.Title = ext('title="');
video.ThumbnailURL = ext('url(');
video.ViewCount = ext('right ellipsis">',' ')*1;
video.URL = 'p=0;GetContents("'+video.id+'").ext("flashvars\',\'file=","&")';
result.VideoInfo.push(video);
}
result.end = result.start-1+result.VideoInfo.length;
return result;
}
SiteList.push(efukt);
Original issue reported on code.google.com by mark.web...@gtempaccount.com on 7 Mar 2011 at 12:12
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
mark.web...@gtempaccount.com
on 7 Mar 2011 at 12:12The text was updated successfully, but these errors were encountered: